/* Custom Styles for Adwait Swarup Param Hans Prem Ashram Website */

:root {
    --saffron-primary: #FF9933; /* A vibrant, primary saffron */
    --saffron-deep: #E68A2E;      /* A deeper shade for hover effects and accents */
    --saffron-light: #FFDDBB;     /* A very light saffron for backgrounds */
    --white-bg: #FFFFFF;
    --off-white-bg: #FDFBF8;    /* A slightly warm off-white */
    --dark-text: #3c3c3c;
    --light-text: #FFFFFF;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    background-color: var(--white-bg);
    color: var(--dark-text);
}

/* Navbar */
.navbar {
    background-color: var(--white-bg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: bold;
    color: var(--saffron-primary);
}

.navbar-brand:hover {
    color: var(--saffron-deep);
}

.nav-link {
    font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
    color: var(--saffron-primary);
}

.btn-primary {
    background-color: var(--saffron-primary);
    border-color: var(--saffron-primary);
}

.btn-primary:hover {
    background-color: var(--saffron-deep);
    border-color: var(--saffron-deep);
}

/* Standardized Particle Hero Section */
.particle-hero {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(45deg, var(--saffron-primary), var(--saffron-deep));
    overflow: hidden;
    color: var(--light-text);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-weight: bold;
    color: var(--saffron-deep);
}

/* Cards */
.card {
    border: 1px solid #eee;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background-color: var(--off-white-bg);
    color: var(--dark-text);
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.footer a {
    color: var(--saffron-primary);
    text-decoration: none;
}

.footer a:hover {
    color: var(--saffron-deep);
    text-decoration: underline;
}

/* Scroll-to-top button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--saffron-primary);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
}

#scrollTopBtn:hover {
    background-color: var(--saffron-deep);
}

/* Hero / Carousel Section (Re-added for index.html) */
.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
}

.carousel-item {
    height: 70vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}