/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #FFFFFF, #FFF8DC); /* Whole page: White with subtle saffron gradient hint */
    min-height: 100vh;
}
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: #FF8C00; /* Saffron orange */
}
a {
    text-decoration: none;
    color: #FF8C00;
}
a:hover {
    color: #DC143C; /* Red highlight */
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Navigation */
nav {
    background: linear-gradient(to right, #FFFFFF, #FFF8DC); /* White with saffron gradient hint */
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease; /* Smooth conversion on scroll */
}
nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 10px rgba(255,140,0,0.2); /* Stronger saffron shadow on scroll */
    background: linear-gradient(to right, #FFFFFF, #FFF8DC, rgba(255,140,0,0.1)); /* Enhanced gradient */
}
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #FF8C00;
    font-weight: bold;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem; /* One-line spacing on right */
    align-items: center;
    text-transform: uppercase; /* All caps as requested */
}
.nav-links a {
    font-weight: bold;
    transition: color 0.3s;
    font-size: 1rem;
    letter-spacing: 1px; /* Spiritual, clean look */
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #FF8C00;
    margin: 3px 0;
    transition: 0.3s;
}
/* Buttons */
.btn {
    background: #FF8C00;
    color: #FFFFFF;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    display: inline-block;
    text-transform: uppercase; /* Uppercase for hero button */
    letter-spacing: 1px;
}
.btn-red {
    background: #DC143C; /* Red rectangular button */
    padding: 1rem 2rem; /* Prominent size */
    font-size: 1.1rem;
}
.btn-red:hover {
    background: #FF8C00;
}
.btn:hover {
    background: #DC143C;
}
/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: #FFFFFF;
    padding: 10rem 0 6rem; /* Taller for immersive image */
    min-height: 80vh; /* Full-screen feel on desktop */
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Darker overlay for warm, serene readability */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.hero h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.spiritual-guide-label {
    text-align: center;
    padding: 2rem 0;
    font-size: 1.5rem;
    color: #FF8C00;
    font-family: 'Cinzel', serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Sections (Other Bars) */
section {
    padding: 4rem 0;
    min-height: 50vh;
}
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.gallery-preview img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-preview img:hover {
    transform: scale(1.05);
}
/* About Page Specific */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}
/* Footer */
footer {
    background: #FF8C00;
    color: #FFFFFF;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}
footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
footer .logo {
    color: #FFFFFF;
}
/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #FFFFFF, #FFF8DC);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        gap: 1rem;
        text-transform: uppercase;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
 .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    footer .container {
        flex-direction: column;
        gap: 1rem;
    }
    .container {
        padding: 0 10px;
    }
    .hero {
        padding: 6rem 0 4rem;
        min-height: 60vh;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
.hero h3 {
        font-size: 1.2rem;
    }
    .btn-red {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .spiritual-guide-label {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
}