@font-face {
    font-family: 'Felix Titling';
    src: url('felix-titling.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-cream: #fbf7d2;
    --rust-red: #923028;
    --burnt-orange: #ba5527;
    --forest-green: #1a3419;
    --deep-brown: #693a32;
    --navy-blue: #323a5f;
    --text-main: #2C2420;
    --white: #ffffff;

    --font-primary: 'Felix Titling', 'Marcellus', serif;
    --font-secondary: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h4 {
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--deep-brown);
}

.section-title.small {
    font-size: 1.5rem;
}

.section-intro {
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--burnt-orange);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Sections */
section {
    padding: 60px 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--white);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

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

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.nav-cta {
    background-color: var(--burnt-orange);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background-color: var(--rust-red);
    opacity: 1 !important;
    transform: translateY(-2px);
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
}

.hero-subheading {
    display: block;
    font-family: var(--font-secondary);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    letter-spacing: 4px;
    margin-bottom: 15px;
    opacity: 0.8;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-headline {
    font-size: clamp(3rem, 10vw, 7rem);
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    letter-spacing: 2px;
    margin-bottom: 50px;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-notice {
    display: inline-block;
    background: rgba(186, 85, 39, 0.2);
    border: 1px solid var(--burnt-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

/* Event Banner */
.event-banner {
    background-color: var(--text-main);
    color: var(--bg-cream);
    padding: 20px 0;
    border-bottom: 1px solid rgba(251, 247, 210, 0.1);
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.banner-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.banner-label {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.6;
}

.banner-value {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background-color: var(--rust-red);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.early-bird-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--burnt-orange);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(186, 85, 39, 0.3);
    border: 2px solid transparent;
}

.early-bird-btn:hover {
    background-color: transparent;
    color: var(--burnt-orange);
    border-color: var(--burnt-orange);
    transform: translateY(-3px);
}

.cta-button:hover {
    background-color: var(--burnt-orange);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-sub {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* Section 1: Premium Experience Grid */
.premium-experience-section {
    background-color: #f4f1ea;
    /* Soft Warm Sand */
    padding: 60px 0;
}

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

.premium-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.premium-signature-highlight {
    margin-top: 30px;
}

.highlight-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px dashed rgba(186, 85, 39, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.highlight-text h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    color: var(--deep-brown);
    margin-bottom: 15px;
}

.highlight-text p {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.highlight-text strong {
    color: var(--burnt-orange);
}

.premium-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 20px;
}

.premium-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--deep-brown);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.premium-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-main);
    opacity: 0.8;
}

/* Section 2: Horizontal Journey Line */
.journey-section {
    background-color: var(--bg-cream);
    padding: 60px 0;
    text-align: center;
}

.journey-container {
    max-width: 1100px;
    margin: 40px auto 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.journey-container::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15%;
    right: 15%;
    height: 1px;
    background-color: rgba(186, 85, 39, 0.2);
    z-index: 1;
}

.journey-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.journey-marker {
    color: var(--burnt-orange);
    font-size: 1.4rem;
    background: var(--bg-cream);
    padding: 0 15px;
    margin-bottom: 20px;
}

.journey-content h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--deep-brown);
    margin-bottom: 12px;
}

.journey-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.5;
    opacity: 0.8;
}

.micro-note {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--burnt-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

@media (max-width: 1150px) {
    .premium-grid-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-grid-top {
        grid-template-columns: 1fr;
    }

    .highlight-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 20px;
    }

    .journey-container {
        flex-direction: column;
        gap: 40px;
    }

    .journey-container::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .offerings-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Who Section */
.who-section {
    background-color: var(--white);
    position: relative;
}

.section-divider {
    width: 60px;
    height: 1px;
    background-color: var(--burnt-orange);
    margin: 0 auto;
    opacity: 0.3;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.who-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.who-item:hover {
    border-color: var(--burnt-orange);
    background-color: #fffaf5;
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.who-item h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--deep-brown);
}

.who-item p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* Why Section */
.why-section {
    background-color: var(--forest-green);
    color: var(--white);
}

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

.why-section .section-title {
    color: var(--white);
    margin-bottom: 40px;
}

.why-body p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.why-highlight {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.why-highlight p {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--bg-cream);
}


/* Social Proof */
.social-proof {
    background-color: var(--white);
    text-align: center;
}

/* Social Proof - Instagram Style */
.social-proof {
    background-color: var(--white);
    padding: 60px 0;
}

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

.insta-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.insta-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

.insta-user {
    display: flex;
    flex-direction: column;
}

.user-handle {
    font-size: 0.85rem;
    font-weight: 700;
    color: #262626;
}

.insta-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.insta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-content {
    padding: 15px;
}

.insta-content p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #262626;
    line-height: 1.4;
    font-style: normal;
}

.insta-footer {
    display: none;
}

@media (max-width: 900px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Pricing Section */
.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.toggle-label {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--burnt-orange);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: var(--burnt-orange);
    color: white;
    padding: 2px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    margin-left: 10px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 20px 0 40px;
}

.price-card {
    background: var(--white);
    padding: 40px 30px;
    width: 360px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.price-card.special {
    border: 2px solid var(--rust-red);
    position: relative;
    transform: scale(1.05);
    z-index: 10;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rust-red);
    color: white;
    padding: 6px 25px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.price-header {
    margin-bottom: 30px;
    text-align: center;
}

.plan-name {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--burnt-orange);
    display: block;
    margin-bottom: 10px;
}

.price {
    font-size: 4.5rem;
    font-family: var(--font-primary);
    color: var(--deep-brown);
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.price .original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.4;
    position: absolute;
    right: -40px;
    top: 10px;
}

.plan-summary {
    font-size: 0.95rem;
    color: var(--text-main);
    opacity: 0.8;
    margin-top: 10px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1.1rem;
}

.plan-features li::before {
    content: "•";
    color: var(--burnt-orange);
    margin-right: 10px;
}

.price-cta {
    display: block;
    padding: 18px;
    border: 2px solid var(--rust-red);
    color: var(--rust-red);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.special .price-cta {
    background: var(--rust-red);
    color: var(--white);
}

.price-cta:hover {
    background: var(--rust-red);
    color: var(--white);
    transform: translateY(-2px);
}

.special .price-cta:hover {
    background: var(--burnt-orange);
    border-color: var(--burnt-orange);
}

.pricing-footer {
    text-align: center;
    font-family: var(--font-secondary);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* After Section */
.after-section {
    background-color: var(--bg-cream);
    text-align: center;
}

.after-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.after-text-block p {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--deep-brown);
    line-height: 1.3;
}

.after-divider {
    display: none;
}

/* Final CTA */
.final-cta {
    padding: 60px 0;
    background: linear-gradient(rgba(44, 36, 32, 0.8), rgba(44, 36, 32, 0.9)),
        url('https://images.unsplash.com/photo-1447933681516-e5ebbd5f6a55?auto=format&fit=crop&q=80&w=2048');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-cream);
    text-align: center;
}

.final-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 50px;
    line-height: 1.1;
}

/* Footer */
.footer {
    padding: 80px 0;
    background-color: #fffef5;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--rust-red);
    margin-bottom: 10px;
}

.footer-brand p:not(.footer-logo) {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-links {
    font-family: var(--font-secondary);
    font-weight: 600;
}

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--rust-red);
}

/* Responsive */
@media (max-width: 768px) {

    /* Mobile Menu Styles */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

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

    .nav-menu a {
        font-size: 1.5rem;
        color: var(--text-main);
    }

    body.menu-open {
        overflow: hidden;
    }

    section {
        padding: 80px 0;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 40px;
    }

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

    .who-grid,
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .price-card.special {
        transform: scale(1);
    }

    .price-card {
        width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 500px) {

    .who-grid,
    .methods-grid {
        grid-template-columns: 1fr;
    }
}