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

:root {
    --primary-color: #0F0F0F;
    --secondary-color: #1E1E1E;
    --accent-color: #FFD700; /* Gold color */
    --text-color: #FFFFFF;
    --text-secondary: #CCCCCC;
    --font-primary: 'Montserrat', sans-serif;
    --container-width: 1200px;
    --section-spacing: 80px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

section {
    padding: var(--section-spacing) 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #E5C100;
    transform: translateY(-3px);
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 15px 40px;
}

.btn-cta:hover {
    background-color: #E5C100;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-support {
    background-color: #25D366; /* WhatsApp green */
    color: white;
}

.btn-support:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

/* Header / Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2020&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.limited-spots {
    font-style: italic;
    color: var(--accent-color);
}

/* Intro Section */
.intro {
    background-color: var(--secondary-color);
    text-align: center;
}

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

.intro p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* About Event Section */
.about-event {
    background-color: var(--primary-color);
}

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

.event-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* About Speaker Section */
.about-speaker {
    background-color: var(--secondary-color);
}

.speaker-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.speaker-image {
    width: 100%;
    height: 400px;
    background-color: #333;
    border-radius: 10px;
    overflow: hidden;
}

.speaker-bio p {
    margin-bottom: 20px;
}

/* Podcasts Section */
.podcasts {
    background-color: var(--primary-color);
    text-align: center;
}

.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Speakers Section */
.speakers {
    background-color: var(--secondary-color);
    text-align: center;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.speaker-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
}

.speaker-card .speaker-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #333;
}

.speaker-card h3 {
    margin-bottom: 10px;
}

.social-link {
    display: inline-block;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.social-link:hover {
    text-decoration: underline;
}

.cta-center {
    margin-top: 60px;
}

/* Schedule Section */
.schedule {
    background-color: var(--primary-color);
}

.schedule-day {
    margin-bottom: 40px;
}

.schedule-day h3 {
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.time {
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 10px;
    min-width: 70px;
}

.schedule-note {
    font-style: italic;
    text-align: center;
    margin-top: 30px;
}

/* Accommodation Section */
.accommodation {
    background-color: var(--secondary-color);
    text-align: center;
}

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

.alert {
    color: #FF6B6B;
    font-size: 1.2rem;
    margin: 20px 0;
}

/* Venue Section */
.venue {
    background-color: var(--primary-color);
    text-align: center;
}

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

/* Target Audience Section */
.target-audience {
    background-color: var(--secondary-color);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-card {
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-10px);
}

.audience-card h3 {
    color: var(--accent-color);
}

/* Pricing Section */
.pricing {
    background-color: var(--primary-color);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    padding: 0 0 30px;
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 20px;
    position: relative;
}

.lot {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 5px 15px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 30px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.pricing-price {
    margin-bottom: 30px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 10px 0;
}

.sold-out .pricing-header {
    background-color: #888;
}

.sold-out .btn {
    background-color: #888;
    cursor: not-allowed;
}

.pricing-note {
    max-width: 800px;
    margin: 50px auto 0;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--primary-color);
    text-align: center;
}

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

/* FAQ Section */
.faq {
    background-color: var(--secondary-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-support {
    margin-bottom: 50px;
}

.footer-support h3 {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-credit {
    display: inline-block;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .speaker-content {
        grid-template-columns: 1fr;
    }
    
    .speaker-image {
        height: 300px;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-grid,
    .speakers-grid,
    .audience-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    :root {
        --section-spacing: 40px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .btn-cta {
        padding: 12px 30px;
    }
}