/* Base styles to make things look clean */
body {
    font-family: 'Montserrat', Arial, sans-serif; /* Upgraded Font */
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    color: #333;

    /* The new fade-in trigger! */
    animation: fadeIn 0.8s ease-in-out;
}

/* Upgraded Header Font */
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #1a1a1a;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active {
    color: #cca43b; /* A nice gold accent color */
}

/* Social Media Icons in Navbar */
.social-icons {
    display: flex;
    gap: 15px; /* Spaces the icons out nicely */
    align-items: center;
}

.social-icons a {
    color: white;
    font-size: 1.2rem; /* Controls the size of the icons */
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #cca43b; /* Gold accent color when hovered */
}

/* Sections */
section {
    padding: 60px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

/* The Upgraded Hero Banner */
.hero {
    /* Background settings (keep your image link here!) */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('homepage-banner.jpg'); 
    background-size: cover;
    background-position: center;
    color: white;
    
    /* OVERRIDES to force full width */
    max-width: none; 
    margin: 0; 
    
    /* Give the banner a specific height (60vh means 60% of the screen height) */
    min-height: 80vh; 
    padding: 40px 60px; /* Gives some breathing room near the edges */
    
    /* Flexbox Layout: This is how you control the position! */
    display: flex;
    justify-content: center; /* Moves the box LEFT or RIGHT */
    align-items: flex-end;     /* Moves the box UP or DOWN */
}

/* Controls the text inside the invisible box */
.hero-content {
    text-align: center; /* Aligns the text itself (left, right, or center) */
}

.hero h1 {
    font-size: 4rem; 
    margin-bottom: 10px;
    margin-top: 0;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #eaeaea;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #666;
}
/* Upcoming Shows Styling */
.show-list {
    list-style: none; /* Removes the bullet points */
    padding: 0;
}

.show-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea; /* Adds a clean line between shows */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.show-item:hover {
    background-color: #f9f9f9;
}

.show-date {
    font-weight: bold;
    color: #cca43b; /* Gold accent */
    font-size: 1.2rem;
    flex: 1;
}

.show-details {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.show-venue {
    font-weight: 600;
    font-size: 1.1rem;
}

.show-location {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}

.btn-tickets {
    padding: 10px 24px;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-tickets:hover {
    background-color: #cca43b;
    color: #1a1a1a;
}
/* Music Page Video Grid */
.video-grid {
    display: grid;
    /* This automatically puts videos side-by-side on desktop, and stacked on mobile */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* This forces a perfect 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px; /* Slightly rounded corners for a premium feel */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1); /* Subtle shadow beneath the video */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* About Page Styling */
.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Images Page Gallery Grid */
.photo-gallery {
    display: grid;
    /* This creates a fluid grid that adapts to screen size */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px 20px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the square without stretching */
    border-radius: 6px;
    transition: transform 0.3s ease; /* Prepares a hover effect */
}

/* Optional: Slight zoom effect when you hover over an image */
.gallery-item img:hover {
    transform: scale(1.03);
}

/* Mobile Responsiveness for the About Page */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
}
/* Contact Page Styling */
.contact-section {
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 40px auto 0 auto;
    text-align: start;
}

.contact-form label {
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit; /* Matches the site's font */
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

/* Adds a gold highlight when you click into a text box */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #cca43b;
}

.btn-submit {
    margin-top: 30px;
    padding: 15px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #cca43b;
    color: #1a1a1a;
}

/* Page Fade-In Animation Blueprint */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Photo Credit Styling */
.photo-credit {
    font-size: 0.75rem; /* Makes the text small */
    color: #888; /* A subtle gray so it doesn't distract from the photo */
    text-align: end; /* Automatically aligns Right for EN and Left for HE */
    margin-top: 6px; /* Adds a tiny gap between the photo and the text */
    font-style: italic; /* Gives it a classic, professional photo credit look */
    letter-spacing: 0.5px;
}

/* =========================================
   HEBREW SPECIFIC DESIGN RULES
   ========================================= */

/* Hebrew Paragraph/Body Font */
[lang="he"] body {
    font-family: 'Heebo', Arial, sans-serif; /* Replace 'Heebo' with your chosen font */
}

/* Hebrew Header Font */
[lang="he"] h1, 
[lang="he"] h2, 
[lang="he"] h3,
[lang="he"] .nav-links a {
    font-family: 'Rubik', sans-serif; /* Replace 'Rubik' with your chosen header font */
}

/* =========================================
   MOBILE RESPONSIVENESS (SMARTPHONES & TABLETS)
   ========================================= */
@media (max-width: 768px) {
    
    /* 1. Stack the Navigation Bar */
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap; /* Allows links to wrap to a new line if needed */
        justify-content: center;
        padding: 0;
        gap: 15px;
    }

    /* 2. Shrink the Hero Banner Text */
    .hero {
        padding: 60px 20px;
        min-height: 40vh; /* Makes the banner slightly shorter on phones */
    }

    .hero h1 {
        font-size: 2.5rem; /* Shrinks the massive title */
    }

    .hero p {
        font-size: 1rem;
    }

    /* 3. Reduce the empty space on the edges of the screen */
    section {
        padding: 40px 20px;
    }
    
    /* 4. Ensure the Upcoming Shows list looks neat */
    .show-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}