/* Import Courier Prime as fallback for Courier PS */
@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&family=Lustria&display=swap');

/* CSS Variables for colors */
:root {
    --background-color: #f4f1ec;
    --text-color: #272717;
    --cta-button-color: #c96f4a;
    --cta-text-color: #f4f1ec;
    --accent-color: #738fa7;
    --dark-accent: #380c0f;
    --red-accent: #a73520;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier Prime', 'Courier New', monospace;
    background-color: var(--background-color);
    color: #272717;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--background-color);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(39, 39, 23, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #272717;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-top: 60px;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    width: 450px;
    height: auto;
    max-width: 100%;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 400;
    color: #272717;
}

.ticket-line {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticket-text {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #272717;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 8px solid #272717;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* CTA Buttons */
.cta-button {
    background-color: var(--cta-button-color);
    color: var(--cta-text-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 111, 74, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--background-color);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(39, 39, 23, 0.1);
}

.modal-header h2 {
    color: #272717;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 1.4rem;
    font-weight: 400;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #272717;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    opacity: 0.7;
}

/* Form Styles */
.booking-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #272717;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(39, 39, 23, 0.2);
    border-radius: 8px;
    background-color: var(--background-color);
    color: #272717;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cta-button-color);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-cancel,
.btn-continue {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-cancel {
    background-color: transparent;
    color: #272717;
    border: 2px solid rgba(39, 39, 23, 0.2);
}

.btn-cancel:hover {
    background-color: rgba(39, 39, 23, 0.1);
}

.btn-continue {
    background-color: var(--cta-button-color);
    color: var(--cta-text-color);
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 111, 74, 0.3);
}

/* Events Section */
.events {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--background-color);
}

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

.event-title {
    font-family: 'Lustria', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #272717;
}

.event-details {
    font-family: 'Lustria', serif;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #272717;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

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

.about-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    color: #272717;
}

.for-you {
    margin-bottom: 3rem;
}

.for-you-title {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #272717;
}

.for-you-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.for-you-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #272717;
}

.for-you-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--cta-button-color);
    font-weight: bold;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(39, 39, 23, 0.1);
}

.footer-content p {
    font-size: 0.9rem;
    opacity: 0.7;
    color: #272717;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero {
        padding: 1rem;
        margin-top: 80px;
    }
    
    .logo {
        width: 350px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .ticket-line {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .event-title {
        font-size: 1.2rem;
    }
    
    .event-details {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .about, .events {
        padding: 3rem 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .booking-form {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 280px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.8rem;
    }
}

/* Performance optimizations */
.logo {
    will-change: transform;
}

.cta-button {
    will-change: transform;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .cta-button {
        transition: none;
    }
    
    .nav-links a {
        transition: none;
    }
    
    .modal-content {
        animation: none;
    }
}

/* Focus styles for keyboard navigation */
.cta-button:focus,
.nav-links a:focus,
.btn-continue:focus,
.btn-cancel:focus,
.close-btn:focus {
    outline: 2px solid var(--cta-button-color);
    outline-offset: 2px;
} 