/* Base Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #FFFFFF;
    --accent-color: #FFD700;
    --text-color: #FFFFFF;
    --background-color: #000000;
    --section-padding: 4rem 0;
    --container-width: 1200px;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

p {
    margin-bottom: 1.5rem;
}

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

/* Header Styles */
.site-header {
    padding: 1rem 0;
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    max-height: 60px;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.limited-spots {
    font-weight: bold;
    color: var(--accent-color);
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

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

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-large:hover {
    transform: scale(1.05);
}

.cta-buttons {
    margin: 2rem 0;
}

/* About Section */
.about {
    background-color: #111;
    padding: 5rem 0;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* Event Info Section */
.event-info {
    background-color: var(--primary-color);
    padding: 5rem 0;
}

.event-info p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* Speaker Section */
.speaker {
    background-color: #111;
    padding: 5rem 0;
}

.speaker h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.speaker p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--primary-color);
    padding: 5rem 0;
}

.testimonials h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-slider {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-height: 350px;
    width: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

/* Target Audience Section */
.target-audience {
    background-color: #111;
    padding: 5rem 0;
}

.target-audience h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.audience-types {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.audience-type {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.audience-type h3 {
    font-size: 1.5rem;
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
}

.white {
    color: var(--secondary-color);
    font-weight: bold;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    padding: 6rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    background-color: #0a0a0a;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        flex: none;
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .audience-types {
        flex-direction: column;
    }
    
    .audience-type {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .testimonials-slider {
        height: 300px;
    }
    
    .swiper-slide img {
        max-height: 250px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .testimonials-slider {
        height: 250px;
    }
    
    .swiper-slide img {
        max-height: 200px;
    }
}