/* ===================================
   Freedom Shows - Main Stylesheet
   Dark Theme with Gold Accents
   =================================== */

/* CSS Variables */
/* ========================================
   THEME TOGGLE: Uncomment ONE theme below
   ======================================== */

/* LIGHT THEME (White background, black text) */
:root {
    --color-bg-dark: #ffffff;
    --color-bg-section: #f5f5f5;
    --color-bg-card: #ffffff;
    --color-primary: #c9a227;
    --color-primary-light: #dab93f;
    --color-primary-dark: #a88920;
    --color-text: #1a1a1a;
    --color-text-muted: #555555;
    --color-text-dark: #777777;
    --color-border: #e0e0e0;
    
    --font-heading: 'Lato', 'arial', sans-serif;
/*    --font-heading: 'Oswald', sans-serif; */
    --font-body: 'Open Sans', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --max-width: 1200px;
    --header-height: 80px;
}

/* DARK THEME (Black background, white text) - Uncomment to use
:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-section: #111111;
    --color-bg-card: #1a1a1a;
    --color-primary: #c9a227;
    --color-primary-light: #dab93f;
    --color-primary-dark: #a88920;
    --color-text: #ffffff;
    --color-text-muted: #b0b0b0;
    --color-text-dark: #888888;
    --color-border: #333333;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 30px rgba(201, 162, 39, 0.15);
    --max-width: 1200px;
    --header-height: 80px;
}
*/

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* ===================================
   Header & Navigation
   =================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
    border-radius: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: rgba(201, 162, 39, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat,
                url('../images/hero-bg.svg') center center / cover no-repeat;
    background-color: var(--color-bg-dark);
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.hero h1 span {
    color: var(--color-primary);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    border-color: var(--color-primary);
}

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

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

/* ===================================
   Features Section
   =================================== */
.features {
    padding: 80px 0;
    background: var(--color-bg-section);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--color-bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 25px;
}

.feature-content h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.feature-content h4 {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    font-weight: 400;
}

.feature-content p {
    color: var(--color-text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.feature-content .btn {
    margin-top: 10px;
}

/* ===================================
   Show Info Section
   =================================== */
.show-info {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

.show-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 50px;
}

.info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--color-bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.info-image {
    height: 100%;
    min-height: 400px;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-content h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.info-content p {
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.venue-address {
    font-weight: 600;
    color: var(--color-text) !important;
}

.event-details {
    margin-top: 25px;
    padding: 20px;
    background: var(--color-bg-section);
    border-radius: 4px;
    text-align: center;
}

.event-date {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary) !important;
    font-weight: 700;
    margin-bottom: 10px !important;
}

.event-time {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text) !important;
    font-weight: 600;
}

.doors-open {
    font-size: 0.9rem;
    color: var(--color-text-muted) !important;
    margin-top: 10px;
}

/* ===================================
   Sponsors Section
   =================================== */
.sponsors {
    padding: 60px 0;
    background: var(--color-bg-section);
}

.sponsors h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.sponsor-link {
    display: block;
    width: 120px;
    height: 80px;
    background: var(--color-bg-card);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    opacity: 0.7;
}

.sponsor-link:hover {
    opacity: 1;
    transform: scale(1.05);
}

.sponsor-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter var(--transition-normal);
}

.sponsor-link:hover img {
    filter: grayscale(0%) brightness(1);
}

/* ===================================
   Order of Events Section
   =================================== */
.order-of-events {
    padding: 80px 0;
    background: var(--color-bg-dark);
}

.order-of-events h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 50px;
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.events-column {
    background: var(--color-bg-card);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-card);
}

.events-column h4 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    text-align: center;
}

.event-time-header {
    text-align: center;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 20px;
}

.events-column ul {
    list-style: none;
}

.events-column li {
    padding: 8px 0;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
}

.events-column li:last-child {
    border-bottom: none;
}

.events-amateur ul {
    columns: 2;
    column-gap: 30px;
}

.intermission {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--color-primary);
    text-align: center;
}

.intermission p {
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.intermission strong {
    color: var(--color-primary);
}

/* ===================================
   Page Header (for subpages)
   =================================== */
.page-header {
    padding: 150px 0 80px;
    background: var(--color-bg-section);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.page-header p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Content Sections (for subpages)
   =================================== */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--color-bg-section);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.content-text p {
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.content-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Contact Form
   =================================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
    background: var(--color-bg-section);
    border-top: 1px solid var(--color-border);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-contact h4,
.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-contact p {
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.footer-contact .company-name {
    color: var(--color-text);
    font-weight: 600;
}

.footer-contact .phone a {
    color: var(--color-text-muted);
}

.footer-contact .phone a:hover {
    color: var(--color-primary);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-card);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    color: var(--color-text-dark);
    font-size: 0.9rem;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .events-amateur ul {
        columns: 2;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 30px;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--color-border);
    }
    
    /* Mobile Menu Toggle Animation */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Content adjustments */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        grid-template-columns: 1fr;
    }
    
    .info-image {
        min-height: 250px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .events-amateur ul {
        columns: 1;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .feature-content,
    .info-content {
        padding: 20px;
    }
    
    .events-column {
        padding: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--color-primary); }
.text-muted { color: var(--color-text-muted); }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
