/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

:root {
    --black: #000000;
    --dark-teal: #1b333c;
    --gray: #919191;
    --light-aqua: #97d3dd;
    --grayish-green: #b3b4b3;
    --golden-brown: #be9000;
    --muted-coral: #c67168;
    --orange: #ec7c30;
    --bright-gold: #ffc000;
    --pastel-yellow: #ffd966;
    --white: #ffffff;
    --brown: #d97706;
    --second-brown: #dc2626;
    --box-shadow: 4px 4px 10px 2px rgba(0, 0, 0, 0.1);
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}

/* Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2d1810;
    margin-bottom: 1.5rem;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #d97706, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d97706, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--golden-brown);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--golden-brown);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #4b5563;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;

}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 4;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 400;
}

.event-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--white);
}

.detail-item i {
    color: #d97706;
    font-size: 1.2rem;
}

.cta-button {
    background: linear-gradient(135deg, #d97706, #dc2626);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #d97706;
    color: #d97706;
}

.cta-button.secondary:hover {
    background: #d97706;
    color: white;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.giveback-card {
    background: linear-gradient(135deg, var(--brown), var(--second-brown));
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.giveback-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.giveback-title i {
    color: var(--white);
}

.giveback-text {
    color: var(--white);
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.meditation-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Statistics Section */
.statistics {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef3c7, #fce7f3);
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #d97706, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.5;
}

/* Event Details Section */
.event-details-section {
    padding: 5rem 0;
    background: white;
}

.event-header {
    text-align: center;
    margin-bottom: 4rem;
}

.event-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

.event-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.brunch-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.offerings-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d1810;
    margin-bottom: 2rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.offering-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.offering-item i {
    color: #d97706;
    font-size: 1rem;
}

.offering-item span {
    color: #4b5563;
    font-weight: 500;
}

.availability-notice {
    background: linear-gradient(135deg, #fef3c7, #fce7f3);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.availability-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d1810;
    margin-bottom: 1rem;
}

.availability-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Sponsorship Section */
.sponsorship {
    padding: 5rem 0;
    /* background: linear-gradient(135deg, #fef3c7, #fce7f3); */
    background-color: var(--dark-teal);
}

.sponsorship-header {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--bright-gold);
}

.sponsorship-header h2 {

    color: var(--bright-gold);
}

.sponsorship-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tier-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.tier-card.diamond {
    border: 3px solid var(--bright-gold);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brown);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d1810;
    margin-bottom: 1rem;
    text-align: center;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #d97706, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-features {
    list-style: none;
    padding: 0;
}

.tier-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.benefits-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2d1810;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 20px;
    /* border: 2px solid var(--bright-gold); */
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.benefit-item i {
    color: #d97706;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.benefit-content h4 {
    font-weight: 600;
    color: #2d1810;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #4b5563;
    line-height: 1.6;
}

.deadline-notice {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.deadline-notice p {
    color: #4b5563;
    margin-bottom: 0.5rem;
}

/* Organizer Section */
.organizer {
    padding: 5rem 0;
    background: white;
}

.organizer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.organizer-description {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.founder-card {
    background: linear-gradient(135deg, #fef3c7, #fce7f3);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.founder-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d1810;
    margin-bottom: 0.5rem;
}

.founder-role {
    color: #d97706;
    margin-bottom: 1rem;
}

.founder-bio {
    color: #4b5563;
    line-height: 1.7;
}

.networking-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef3c7, #fce7f3);
}

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

.contact-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d1810;
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #d97706;
    font-size: 1.2rem;
}

.contact-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #d97706;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-subtitle {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #9ca3af;
}

.footer-copyright {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #6b7280;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #d97706, #dc2626);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .event-details {
        flex-direction: column;
        gap: 1rem;
    }

    .about-grid,
    .event-content,
    .organizer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
    }

    .tier-card.diamond {
        transform: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .footer-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.my-cta {
    padding: 100px 20px;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: overlay;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.my-cta .container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.my-cta .container h2 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.my-cta .container p {
    line-height: 2;
}

.my-cta-button {
    background: linear-gradient(135deg, #d97706, #dc2626);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    text-decoration: none;
}

.my-cta-button:hover {
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.4);
}