/* Global Styles */
:root {
    --primary-color: #0063FF;
    --secondary-color: #54595F;
    --text-color: #7A7A7A;
    --accent-color: #61CE70;
    --dark-color: #32373c;
    --light-color: #f8f8f8;
    --white-color: #ffffff;
    --black-color: #000000;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Roboto Slab', serif;
    --font-heading: 'Montserrat', sans-serif;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 800;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

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

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

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

a:hover {
    color: var(--accent-color);
}

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

section {
    padding: 5rem 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    margin: 10px 5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 2px solid var(--primary-color);
}

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

.btn-cta {
    background-color: var(--accent-color);
    color: var(--white-color);
    border: 2px solid var(--accent-color);
    font-size: 1.2rem;
    padding: 15px 40px;
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-support {
    background-color: #25D366;
    color: var(--white-color);
    border: 2px solid #25D366;
}

.btn-support:hover {
    background-color: transparent;
    color: #25D366;
}

.decorative-element {
    display: block;
    margin: 2rem auto;
    max-width: 100%;
}

/* Header Styles */
.site-header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/Frame-1321317950.webp');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    padding: 8rem 0;
    text-align: center;
}

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

.hero-section h1, .hero-section h2 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white-color);
}

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

.limited-spots {
    font-style: italic;
    font-weight: bold;
    margin-top: 1rem;
}

/* About Event Section */
.about-event {
    text-align: center;
    background-color: var(--light-color);
}

.about-event p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
}

/* Event Description */
.event-description {
    text-align: center;
}

.event-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
}

.event-images img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* About Speaker */
.about-speaker {
    background-color: var(--light-color);
    text-align: center;
}

.speaker-image {
    width: 300px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
}

.company-logos img {
    height: 60px;
    width: auto;
}

/* Podcasts Section */
.podcasts {
    text-align: center;
}

.speaker-image-large {
    width: 400px;
    height: auto;
    margin-bottom: 2rem;
}

.podcast-videos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 3rem;
}

.video-thumbnail {
    position: relative;
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.7);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1;
}

.play-button:hover {
    background-color: var(--primary-color);
}

/* Event Locations */
.event-locations {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 3rem 0;
}

.event-locations p {
    color: var(--white-color);
    font-size: 1.5rem;
    margin-top: 1rem;
}

.event-logo {
    height: 80px;
    width: auto;
}

/* Speakers Section */
.speakers {
    text-align: center;
}

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

.speaker-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.speaker-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.speaker-card h3 {
    padding: 1rem 1rem 0.5rem;
}

.speaker-card p {
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
}

.social-link {
    display: inline-block;
    margin: 0.5rem 0 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.schedule-day {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-day h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.schedule-day li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.schedule-day li:last-child {
    border-bottom: none;
}

.time {
    font-weight: bold;
    color: var(--primary-color);
}

.note {
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
}

/* Location Section */
.location {
    text-align: center;
}

.location h2, .location h3 {
    margin-top: 2rem;
}

/* Target Audience */
.target-audience {
    background-color: var(--light-color);
    text-align: center;
}

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

.audience-card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.audience-card img {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
    text-align: center;
}

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

.pricing-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.lot-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.benefits {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.benefits li {
    margin-bottom: 0.8rem;
    padding-left: 25px;
    position: relative;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.original-price {
    font-size: 1.1rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.cash-price {
    margin-bottom: 1.5rem;
}

.sold-out .btn-cta {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.sold-out .btn-cta:hover {
    background-color: #ccc;
    color: var(--white-color);
}

/* Testimonials */
.testimonials {
    background-color: var(--light-color);
    text-align: center;
}

.testimonial-image {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* Guarantee Section */
.guarantee {
    text-align: center;
}

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

.faq-item {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 4rem 0;
    text-align: center;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 2rem;
}

.site-footer h3 {
    color: var(--white-color);
}

.site-footer p {
    color: var(--white-color);
}

.footer-links {
    margin: 2rem 0;
}

.footer-links a {
    color: var(--white-color);
    margin: 0 10px;
}

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

.copyright {
    font-size: 0.9rem;
    margin-top: 2rem;
}

.developer-link img {
    height: 30px;
    width: auto;
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .speakers-grid, .audience-cards, .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .schedule-days {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .company-logos {
        flex-direction: column;
        align-items: center;
    }
    
    .podcast-videos {
        flex-direction: column;
        align-items: center;
    }
}