/* General Styles */
:root {
    --primary-bg: #1a1a1a;
    --secondary-bg: #2a2a2a;
    --text-color: #E0E0E0;
    --accent-color: #A7E141; /* A vibrant lime green for accent */
    --dark-text: #333;
    --border-color: #444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
    background-attachment: fixed; /* Keep parallax effect for the whole page */
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--text-color);
    margin-bottom: 1em;
}

h2 {
    font-size: 2.5em;
    text-align: center;
}

h3 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 1.5em;
    color: var(--accent-color);
}

p {
    margin-bottom: 1em;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #C8FF66; /* Brighter lime green on hover */
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-bg);
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #C8FF66;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.section-padding {
    padding: 80px 20px;
    text-align: center;
}

#gallery {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)); /* Semi-transparent overlay */
    padding: 80px 20px;
    text-align: center;
}

#testimonials {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)); /* Semi-transparent dark overlay */
    padding: 80px 20px; /* Ensure padding is retained */
    text-align: center;
}

/* Testimonials Slider */
.testimonials-slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonials-inner .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    box-sizing: border-box;
}

.testimonials-dots {
    text-align: center;
    margin-top: 20px;
}

.t-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 50%;
    z-index: 5;
    transition: background 0.3s;
}

.t-control:hover {
    background: rgba(0, 0, 0, 0.6);
}

.t-control.prev { left: 10px; }
.t-control.next { right: 10px; }

.testimonial-dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

.testimonial-dot.active {
    background-color: var(--accent-color);
}

.testimonial-stars {
    color: #ffcc00;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #ddd;
}

.testimonial-card h4 {
    color: var(--accent-color);
    font-size: 1.1em;
}

/* Header & Navigation */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('Images/header_bg.jpeg') no-repeat center center/cover;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center; /* Center children horizontally */
    align-items: center; /* Center children vertically */
}

nav {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* REMOVED width: 100%; */
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center; /* Align items vertically within nav-links */
    margin: 0;
}

.nav-links li {
    margin-left: 0; /* Reset margin-left for list items */
}

.nav-links a {
    color: var(--text-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px; /* Add padding for better click area and spacing */
    display: block;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Style for the logo when it's inside nav-links */
.nav-links .logo {
    margin: 0 30px; /* Add some spacing around the logo */
    display: flex;
    align-items: center;
}

.nav-links .logo img {
    height: 50px; /* Adjust as needed */
    width: auto;
    vertical-align: middle;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('Images/hero-background.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    text-align: center;
}

.hero-content h2 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Artists Section */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
}

.artist-card {
    background-color: var(--secondary-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.artist-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--accent-color);
}

.artist-card h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.artist-card p {
    font-size: 0.95em;
    margin-bottom: 20px;
    color: #ccc;
}

/* Gallery Section - Carousel */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex: 0 0 33.333%; /* Default to 3 items */
    box-sizing: border-box;
    padding: 10px;
    transition: transform 0.3s ease;
}

.carousel-item.center-active img {
    border: 3px solid var(--accent-color);
    transform: scale(1.02);
}

.carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    cursor: default;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0,0, 0.5);
    color: var(--text-color);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 50%;
    z-index: 10;
}

.carousel-control:hover { background-color: rgba(0, 0, 0, 0.8); }
.carousel-control.prev { left: 10px; }
.carousel-control.next { right: 10px; }

.carousel-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active { background-color: var(--accent-color); }

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox-modal.active { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.close-button {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        height: 92vh;
        top: 80px; /* Adjust based on header height */
        background-color: var(--secondary-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        border-left: 1px solid var(--border-color);
        padding-top: 50px;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        opacity: 0;
        margin: 25px 0;
    }

    .burger {
        display: block;
    }

    .hero {
        height: 60vh; /* Shorter hero section on mobile */
    }

    .hero-content h2 {
        font-size: 2em; /* Smaller hero heading */
    }

    .hero-content p {
        font-size: 0.9em; /* Smaller hero paragraph */
    }

    .section-padding {
        padding: 50px 15px; /* Adjust vertical padding for sections */
    }

    h2 {
        font-size: 1.8em; /* Smaller general H2 */
    }

    h3 {
        font-size: 1.5em; /* Smaller general H3 */
    }

    .contact-form {
        padding: 30px 20px; /* Adjust contact form padding */
        margin: 30px auto; /* Adjust contact form margin */
    }

    .contact-form input, .contact-form select, .contact-form textarea, .contact-form .file-upload-container {
        margin-bottom: 15px; /* Slightly reduce spacing between form elements */
    }

    .contact-form .btn {
        font-size: 1em; /* Smaller button text */
        padding: 10px 20px; /* Smaller button padding */
    }

    .faq-item {
        padding: 20px; /* Adjust FAQ item padding */
        margin-bottom: 15px; /* Adjust FAQ item margin */
    }

    .faq-item h4 {
        font-size: 1.1em; /* Smaller FAQ question heading */
    }

    .faq-item p {
        font-size: 0.85em; /* Smaller FAQ paragraph */
    }

    footer p {
        font-size: 0.8em; /* Smaller footer text */
    }
}

/* Video Grid Styles */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.video-grid-item {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; /* Perfect for Instagram/TikTok style reels */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-grid-item:hover {
    transform: translateY(-5px);
}

.video-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Let clicks pass through to the video */
}

.video-grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
}

footer {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
}

footer p {
    margin: 0;
}

/* Burger Animation */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Keyframes for navLinkFade animation */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}
