/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #2d1b4e;
    --primary-rose: #c9a0a0;
    --accent-gold: #d4af37;
    --bg-cream: #f8f5f2;
    --text-dark: #3a342f;
    --text-gray: #6b6561;
    --spiritual-purple: #6b4d7a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-cream);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 40px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35) 0%, transparent 100%);
    transition: background 0.3s ease;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    transition: color 0.3s ease;
}

.logo {
    height: 40px;
    width: auto;
}

.header.dark {
    background: linear-gradient(to bottom, rgba(107, 77, 122, 0.5) 0%, transparent 100%);
}

.header.dark .brand {
    color: var(--spiritual-purple);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(45, 27, 78, 0.95) 0%,
        rgba(201, 160, 160, 0.90) 100%
    ),
    url('images/herosection.JPG');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
    letter-spacing: 0.05em;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    display: inline-block;
    padding: 18px 50px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 0;
}

.btn-hero:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ESSENCE SECTION */
.essence {
    padding: 80px 40px;
    background: var(--bg-cream);
    text-align: center;
}

.essence-content {
    max-width: 800px;
    margin: 0 auto;
}

.essence-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.essence-text-bold {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    line-height: 1.8;
    color: var(--spiritual-purple);
    font-weight: 600;
    font-style: italic;
}

/* PRACTICES SECTION */
.practices {
    padding: 100px 40px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 70px;
    color: var(--spiritual-purple);
    letter-spacing: 0.02em;
}

.practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.practice-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-5px);
}

.practice-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
    color: var(--spiritual-purple);
    border: 2px solid var(--spiritual-purple);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.practice-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--spiritual-purple);
    letter-spacing: 0.05em;
    background: var(--bg-cream);
    padding: 20px 30px 10px;
    border-radius: 8px 8px 0 0;
}

.practice-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    font-weight: 300;
    background: var(--bg-cream);
    padding: 0 30px 30px;
    border-radius: 0 0 8px 8px;
}

/* WHAT IS TANTRA SECTION */
.what-is-tantra {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(107, 77, 122, 0.85) 0%,
        rgba(201, 160, 160, 0.75) 100%
    ),
    url('images/tantra.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    color: white;
    padding: 80px 40px;
}

.what-is-tantra-content {
    max-width: 800px;
    margin: 0 auto;
}

.what-is-tantra-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    color: white;
}

.what-is-tantra-text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
    opacity: 0.95;
    color: white;
    text-align: justify;
}

/* WHAT YOU LEARN SECTION */
.what-you-learn {
    padding: 100px 40px;
    background: var(--bg-cream);
}

.what-you-learn-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.learn-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.learn-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    align-items: center;
    max-width: 600px;
    width: 100%;
}

.learn-icon {
    width: 64px;
    height: 64px;
    opacity: 0.9;
}

.learn-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
    text-align: left;
}

/* ABOUT ISHVAR SECTION */
.about-ishvar {
    padding: 100px 40px;
    background: var(--bg-cream);
}

.about-ishvar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-ishvar-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-ishvar-content {
    text-align: left;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--spiritual-purple);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: justify;
}

.about-text-highlight {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--spiritual-purple);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: justify;
}

/* GALLERY SECTION */
.gallery {
    padding: 100px 40px;
    background: white;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 80px 40px;
    background: var(--bg-cream);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-rose);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--spiritual-purple);
    text-align: right;
}

.testimonial-card-centered {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

/* CTA SECTION */
.cta {
    padding: 100px 40px;
    background: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--spiritual-purple);
    letter-spacing: 0.02em;
}

.btn-cta {
    display: inline-block;
    padding: 18px 60px;
    background: var(--spiritual-purple);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 77, 122, 0.3);
}

/* FAQ SECTION */
.faq {
    padding: 100px 40px;
    background: var(--bg-cream);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 60px;
}

.faq-item {
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--spiritual-purple);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(107, 77, 122, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--spiritual-purple);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.faq-answer a {
    color: var(--spiritual-purple);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.faq-answer a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.faq-answer strong {
    color: var(--spiritual-purple);
    font-weight: 600;
}

/* SOCIAL SECTION */
.social {
    padding: 100px 40px;
    background: white;
    text-align: center;
}

.social-container {
    max-width: 700px;
    margin: 0 auto;
}

.social-content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.telegram-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.telegram-link:hover {
    transform: scale(1.1);
}

.telegram-icon {
    width: 80px;
    height: 80px;
    fill: #0088cc;
    transition: fill 0.3s ease;
}

.telegram-link:hover .telegram-icon {
    fill: #006ba3;
}

.social-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
    max-width: 600px;
}

.btn-social {
    display: inline-block;
    padding: 18px 50px;
    background: #0088cc;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 500;
}

.btn-social:hover {
    background: #006ba3;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2rem;
    }

    .essence {
        padding: 60px 30px;
    }

    .practices {
        padding: 70px 30px;
    }

    .practices-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .what-is-tantra {
        background-attachment: scroll;
        padding: 60px 30px;
        min-height: 40vh;
    }

    .what-you-learn {
        padding: 70px 30px;
    }

    .cta {
        padding: 70px 30px;
    }

    .about-ishvar {
        padding: 70px 30px;
    }

    .about-ishvar-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-ishvar-content {
        text-align: center;
    }

    .gallery {
        padding: 70px 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials {
        padding: 60px 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-card-centered {
        grid-column: 1;
    }

    .faq {
        padding: 70px 30px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-icon {
        margin-left: 10px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .social {
        padding: 70px 30px;
    }

    .telegram-icon {
        width: 60px;
        height: 60px;
    }

    .social-text {
        font-size: 1rem;
    }
}
