/* Marketing Page Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
}

.event-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.event-subtitle {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.event-host {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.event-location-hero {
    font-size: 2.2em;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Quick Info Cards */
.quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: -60px 20px 40px;
    position: relative;
    z-index: 2;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    font-size: 2.5rem;
}

.info-label {
    font-size: 0.9rem;
    color: #919191;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 50px 0;
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #f26522 0%, #e52d0e 100%);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.4);
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(242, 101, 34, 0.6);
}

.cta-note {
    margin-top: 15px;
    color: #919191;
    font-size: 0.9rem;
}

/* Sections */
.section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    border-left: 5px solid #f26522;
    padding-left: 20px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #27ae60;
    font-weight: bold;
}

.benefit-text {
    flex: 1;
    font-size: 1rem;
    color: #2c3e50;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.detail-box {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-box h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #f26522;
    padding-bottom: 10px;
}

.detail-box p {
    margin-bottom: 10px;
    color: #555;
}

.detail-box .additional-info {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.detail-box .highlight {
    background: #fff3cd;
    padding: 10px;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
    font-weight: 600;
}

/* Pricing */
.price-main {
    font-size: 2.5rem;
    font-weight: bold;
    color: #27ae60;
    margin: 10px 0;
}

.early-bird {
    background: #d4edda;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #27ae60;
}

.early-bird p {
    margin: 5px 0;
    color: #155724;
}

.discount-codes {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.discount-code {
    margin: 8px 0;
    font-size: 1rem;
}

.discount-code strong {
    color: #1976d2;
    font-family: 'Courier New', monospace;
    background: white;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Payment Methods */
.payment-methods {
    list-style: none;
}

.payment-methods li {
    padding: 8px 0;
    border-bottom: 1px solid #dee2e6;
    color: #555;
}

.payment-methods li:last-child {
    border-bottom: none;
}

.payment-methods li:before {
    content: "💳";
    margin-right: 10px;
}

/* Guidance Section */
.guidance-section {
    background: linear-gradient(135deg, #f26522 0%, #e52d0e 100%);
    color: white;
}

.guidance-section .section-title {
    color: white;
    border-left-color: white;
}

.guidance-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.guidance-list {
    list-style: none;
    margin-bottom: 20px;
}

.guidance-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    padding-left: 30px;
    position: relative;
}

.guidance-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
}

.additional-notes {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.additional-notes h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Policy Box */
.policy-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    color: #555;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer p {
    margin: 10px 0;
}

.footer a {
    color: #f26522;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-title {
        font-size: 2.5rem;
    }

    .event-subtitle {
        font-size: 1.3rem;
    }

    .event-location-hero {
        font-size: 1.6em;
    }

    .hero {
        height: 400px;
    }

    .quick-info {
        grid-template-columns: 1fr;
        margin: -40px 20px 30px;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 1.2rem;
    }

    .section {
        padding: 25px 20px;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .event-title {
        font-size: 2rem;
    }

    .event-location-hero {
        font-size: 1.3em;
    }

    .container {
        padding: 20px 10px;
    }

    .info-card {
        padding: 15px;
    }
}
