@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
    /* Color Palette - Based on Reference Image */
    --gold-primary: #C9A227;
    --gold-light: #E5C84B;
    --gold-dark: #9A7B0A;
    --gold-gradient: linear-gradient(90deg, #C9A227 0%, #E5C84B 50%, #C9A227 100%);
    
    --bg-light: #EDE8E0;
    --bg-cream: #F5F2EC;
    --bg-overlay: rgba(237, 232, 224, 0.85);
    
    --text-dark: #1A1A1A;
    --text-muted: #5A5A5A;
    --text-light: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Spacing & Sizing */
    --container-width: 1100px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 100px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 700;
}

h1 { 
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    letter-spacing: -1px;
    text-transform: uppercase;
}

h2 { 
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); 
    letter-spacing: -0.5px;
}

h3 { 
    font-size: clamp(1.1rem, 1.8vw, 1.5rem); 
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

strong { 
    font-weight: 600; 
}

/* Accent Text */
.accent-text {
    color: var(--gold-primary);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

/* Header / Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo img {
    height: 40px; /* Adjust height as needed */
    width: auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--bg-overlay), var(--bg-overlay)),
                url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

/* Decorative Network Lines - Top Left */
.hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -100px;
    width: 500px;
    height: 400px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cdefs%3E%3Cstyle%3E.line%7Bfill:none;stroke:%23fff;stroke-width:0.5;opacity:0.4%7D%3C/style%3E%3C/defs%3E%3Cpath class='line' d='M0,150 Q100,50 200,100 T400,50'/%3E%3Cpath class='line' d='M0,180 Q150,80 250,130 T400,80'/%3E%3Cpath class='line' d='M0,200 Q120,100 220,150 T400,100'/%3E%3Cpath class='line' d='M0,220 Q100,150 200,180 T400,140'/%3E%3Cpath class='line' d='M0,240 Q150,180 250,200 T400,170'/%3E%3Cpath class='line' d='M50,280 Q150,200 250,230 T400,200'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

/* Decorative Network Lines - Top Right */
.hero::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 500px;
    height: 400px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cdefs%3E%3Cstyle%3E.line%7Bfill:none;stroke:%23fff;stroke-width:0.5;opacity:0.4%7D%3C/style%3E%3C/defs%3E%3Cpath class='line' d='M400,150 Q300,50 200,100 T0,50'/%3E%3Cpath class='line' d='M400,180 Q250,80 150,130 T0,80'/%3E%3Cpath class='line' d='M400,200 Q280,100 180,150 T0,100'/%3E%3Cpath class='line' d='M400,220 Q300,150 200,180 T0,140'/%3E%3Cpath class='line' d='M400,240 Q250,180 150,200 T0,170'/%3E%3Cpath class='line' d='M350,280 Q250,200 150,230 T0,200'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
    transform: scaleX(-1);
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: none; /* Hidden in this design */
}

.hero-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-shadow: none;
    font-weight: 900;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-style: italic;
    font-weight: 400;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Gold Divider Line */
.hero-divider {
    width: 300px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 0 auto 2.5rem;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

/* Masterclass Label in Hero */
.hero-masterclass {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-masterclass .label {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.hero-masterclass .subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.hero-details {
    display: none; /* Will show separately */
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Intro Section */
.intro {
    background: var(--bg-cream);
    text-align: center;
    padding: 80px 0;
}

.intro .section-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
}

.intro .section-title::after {
    display: none;
}

.large-text {
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    color: var(--text-muted);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    font-style: italic;
    font-family: var(--font-heading);
}

/* Criteria Section */
.criteria {
    background: var(--bg-light);
    position: relative;
}

.check-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.check-list li {
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    position: relative;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dark);
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.check-list li:hover {
    transform: translateX(5px);
    border-color: var(--gold-primary);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 700;
}

/* Masterclass Card Section */
.masterclass {
    background: var(--text-dark);
}

.masterclass.alt-bg {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
}

.card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-medium);
}

.card h3 {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.card h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.card > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.meta-grid {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 2px;
}

.meta-item .value {
    font-size: 1.3rem;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Takeaways Section */
.takeaways {
    background: var(--bg-cream);
    position: relative;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-item {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-primary);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.grid-item:hover::before {
    transform: scaleY(1);
}

.grid-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.grid-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.bullet-list {
    list-style: none;
    margin: 1rem 0;
}

.bullet-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.bullet-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 600;
}

.highlight-text {
    color: var(--text-dark);
    font-weight: 500;
    font-style: italic;
    font-size: 0.95rem !important;
}

/* Networking Section */
.networking {
    background: var(--text-dark);
    text-align: center;
    position: relative;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.networking h2 {
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.networking p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.pill-cloud {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 2.5rem 0;
}

.pill {
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold-light);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    border: 1px solid rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}

.pill:hover {
    background: rgba(201, 162, 39, 0.25);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.impact-text {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    margin-top: 2rem;
}

/* Difference Section */
.difference {
    background: var(--bg-light);
}

.split-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.split-content {
    padding: 2rem;
}

.split-content h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.split-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold-primary);
}

.split-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.star-list, .check-list-simple {
    list-style: none;
    margin: 0;
}

.star-list li, .check-list-simple li {
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1rem;
    position: relative;
}

.star-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

.check-list-simple li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: 700;
}

.note {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem !important;
    margin-top: 1rem;
}

/* Speakers & Blogs Section */
.speakers-blogs {
    background: var(--bg-cream);
}

.speaker-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.speaker-img {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #D5D0C8 100%);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--gold-primary);
}

.speaker-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.speaker-card .meta-item {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1rem;
}

.speaker-card .meta-item .label {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

.speaker-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.blogs-section {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.blog-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-card a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.blog-card a:hover {
    color: var(--gold-dark);
}

/* Footer */
.footer {
    background: var(--text-dark);
    padding: 80px 0 60px;
}

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

.investment-block,
.details-block,
.cta-block {
    text-align: center;
}

.footer h3 {
    color: var(--gold-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer .small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer .btn-primary {
    margin-top: 1rem;
}

.final-word {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 3rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.final-word p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-style: italic;
}

.final-word strong {
    color: var(--gold-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero::before,
    .hero::after {
        width: 300px;
        height: 250px;
        opacity: 0.5;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-divider {
        width: 200px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .card {
        padding: 2.5rem 1.5rem;
    }
    
    .meta-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
    }
    
    .pill-cloud {
        gap: 10px;
    }
    
    .pill {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle,
.hero-divider,
.hero-masterclass {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title { animation-delay: 0.1s; }
.hero-subtitle { animation-delay: 0.2s; }
.hero-divider { animation-delay: 0.3s; }
.hero-masterclass { animation-delay: 0.4s; }

.blog-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}
