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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo h1 span {
    color: #e63946;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e63946;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e63946 0%, #a8201a 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #e63946;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.secondary-button {
    display: inline-block;
    background-color: #16213e;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.secondary-button:hover {
    background-color: #1a1a2e;
    transform: translateY(-2px);
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background-color: #fff;
}

.info-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #16213e;
}

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

.info-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e63946;
}

/* Ticket Info Section */
.ticket-info {
    padding: 4rem 0;
    background-color: #f4f4f4;
}

.ticket-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #16213e;
}

.ticket-content {
    max-width: 900px;
    margin: 0 auto;
}

.ticket-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #e63946;
}

.ticket-text ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.ticket-text li {
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #16213e;
}

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

.faq-item {
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #e63946;
}

.faq-item h3,
.faq-item h4 {
    color: #16213e;
    margin-bottom: 0.8rem;
}

/* Content Section (for About and Tickets pages) */
.content-section {
    padding: 3rem 0;
    background-color: #fff;
}

.about-content,
.ticket-guide {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2,
.ticket-guide h2 {
    color: #16213e;
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e63946;
}

.about-content h3,
.ticket-guide h3 {
    color: #e63946;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.about-content p,
.ticket-guide p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-content ul,
.ticket-guide ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.about-content li,
.ticket-guide li {
    margin-bottom: 0.8rem;
}

.award-list,
.character-list,
.source-list {
    list-style: none;
    padding-left: 0;
}

.award-list li,
.character-list li,
.source-list li {
    padding-left: 1.5rem;
    position: relative;
}

.award-list li:before,
.character-list li:before,
.source-list li:before {
    content: "→";
    color: #e63946;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Venue Sections */
.venue-section {
    background: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.venue-details h4 {
    color: #16213e;
    margin: 1.5rem 0 1rem;
}

.price-info {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #e63946;
}

.price-info .note {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

.tip-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid #e63946;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tip-card h3 {
    color: #16213e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Warning Box */
.warning-box {
    background: #fff3cd;
    border: 2px solid #e63946;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #e63946;
    margin-bottom: 1rem;
}

.warning-box ul {
    list-style: none;
    padding-left: 0;
}

.warning-box li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.warning-box li:before {
    content: "⚠";
    position: absolute;
    left: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    color: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: #1a1a2e;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #e63946;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e63946;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .info-grid,
    .faq-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .button-group {
        flex-direction: column;
    }
}
