:root {
    --primary-color: #A0522D; /* Sienna - earthy, warm */
    --secondary-color: #D2B48C; /* Tan - complementary, soft */
    --text-dark: #333;
    --text-light: #fff;
    --background-dark: #222;
    --background-light: #f8f8f8;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: var(--text-light);
    background-color: var(--background-dark);
}

.hero-section {
    background: none; /* Remove background from hero-section */
    height: 100vh;
    display: flex;
    justify-content: space-between; /* Space out content and image */
    align-items: center;
    position: relative;
    padding: 0 5%; /* Add some horizontal padding */
    overflow: hidden; /* Hide overflow from diagonal line */
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -10%; /* Adjust to start off-screen */
    bottom: -10%; /* Adjust to end off-screen */
    left: 50%; /* Start roughly in the middle */
    width: 5px; /* Thickness of the line */
    background-color: var(--primary-color); /* Color of the line */
    transform: rotate(10deg); /* Diagonal angle */
    z-index: 1; /* Ensure it's above background but below content */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Add a subtle shadow to the line */
}

.hero-left-content {
    /* Removed background-color, padding, border-radius, box-shadow, border, backdrop-filter */
    max-width: 45%; /* Further adjusted content width to prevent overlap */
    text-align: left; /* Ensure text is left-aligned */
    flex: 1; /* Allow content to take available space */
    margin-right: 60px; /* Further increased space between text and image */
    z-index: 2; /* Ensure content is above the diagonal line */
    padding: 20px; /* Add minimal padding for text */
}

.hero-right-image {
    flex: 1; /* Allow image to take available space */
    display: flex;
    justify-content: flex-end; /* Align image to the right */
    align-items: center;
    height: 100%; /* Take full height of hero section */
    z-index: 2; /* Ensure image is above the diagonal line */
}

.hero-image {
    max-height: 90vh; /* Limit image height */
    width: auto; /* Maintain aspect ratio */
    /* Removed border-radius, box-shadow */
    object-fit: cover; /* Ensure image covers its area */
}

.hero-left-content h1 {
    font-size: 3.5em; /* Further adjusted font size to prevent overlap */
    margin-bottom: 15px; /* Adjusted margin */
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color); /* Use secondary color for heading */
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9); /* Strongest text shadow */
    letter-spacing: 1.8px; /* Adjusted letter spacing for style */
    line-height: 1.1; /* Adjust line height for better readability */
}

.hero-left-content .tagline {
    font-size: 1.3em; /* Further adjusted tagline */
    margin-bottom: 25px; /* Adjusted space below tagline */
    padding: 12px 20px; /* Adjusted padding around the tagline */
    border-top: 3px solid var(--primary-color); /* Thicker top border */
    border-bottom: 3px solid var(--primary-color); /* Thicker bottom border */
    background-color: rgba(160, 82, 45, 0.4); /* Slightly more opaque background for primary color */
    display: inline-block;
    color: var(--text-light);
    font-weight: bold;
    text-transform: uppercase; /* Uppercase for tagline */
    letter-spacing: 1.2px; /* Adjusted letter spacing */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); /* Shadow for the tagline partition */
}

.cta-buttons .button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 18px 35px; /* Adjusted buttons */
    margin: 30px 15px 0 15px; /* Adjusted margin for separation */
    text-decoration: none;
    border-radius: 12px; /* More rounded buttons */
    font-size: 1.2em; /* Adjusted font in buttons */
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Stronger button shadow */
    text-transform: uppercase; /* Uppercase for buttons */
    letter-spacing: 1px;
}

.contact-info {
    font-size: 0.9em; /* Adjusted font size */
    color: var(--text-light);
    z-index: 3; /* Ensure it's above other content */
    padding: 10px 15px;
    border-radius: 8px;
    position: absolute; /* Keep absolute positioning */
    top: 20px; /* Adjust top position */
    left: 20px; /* Position to the left */
    right: auto; /* Remove right positioning */
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.cta-buttons .button:hover {
    background-color: #8B4513; /* Darker Sienna */
    transform: translateY(-7px); /* Even more pronounced lift effect on hover */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5); /* Strongest button shadow on hover */
}


.about-section {
    padding: 80px 20px;
    background-color: var(--background-light);
    color: var(--text-dark);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-content .quote {
    font-style: italic;
    font-size: 1.2em;
    color: var(--text-dark);
    margin-top: 30px;
}

.music-section {
    padding: 80px 20px;
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
}

.music-content {
    max-width: 1000px;
    margin: 0 auto;
}

.music-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.music-embeds {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.music-embeds .video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px; /* Set a maximum width for desktop */
    width: 100%; /* Allow it to take full width up to max-width */
    margin: 0 auto; /* Center the video embed */
    background: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.music-embeds .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.music-embeds .spotify-embed {
    position: relative;
    height: 152px; /* Fixed height for Spotify embed */
    overflow: hidden;
    width: 45%; /* Set a specific width for desktop */
    min-width: 300px; /* Ensure a minimum width */
    background: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.music-embeds .spotify-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 152px; /* Fixed height for Spotify iframe */
    border: 0;
}

.events-section {
    padding: 80px 20px;
    background-color: var(--background-light);
    color: var(--text-dark);
    text-align: center;
}

.events-content {
    max-width: 900px;
    margin: 0 auto;
}

.events-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.event-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.event-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
}

.event-item h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.event-item p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.event-item .button {
    margin-top: 20px;
    background-color: #28a745;
}

.event-item .button:hover {
    background-color: #218838;
}

.event-highlights {
    margin-bottom: 30px;
}

.event-highlights p {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-section {
    padding: 80px 20px;
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    background-color: #444;
    color: var(--text-light);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--secondary-color);
}

.contact-form button.button {
    background-color: var(--primary-color);
    color: var(--text-light); /* Ensure text color is light */
    padding: 18px 35px; /* Larger padding for a bigger button */
    border: none; /* Remove default button border */
    border-radius: 12px; /* More rounded corners */
    font-size: 1.2em; /* Larger font size */
    font-weight: bold;
    text-transform: uppercase; /* Uppercase text */
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Stronger shadow */
    width: 100%; /* Make button full width of its container */
    max-width: 300px; /* Limit max width for better aesthetics */
    margin: 0 auto; /* Center the button */
}

.contact-form button.button:hover {
    background-color: #8B4513; /* Darker Sienna on hover */
    transform: translateY(-3px); /* Slight lift effect on hover */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */
}

.social-links {
    margin-top: 20px;
}

.social-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: 10px 20px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.social-button:hover {
    background-color: #C0A07F; /* Slightly darker tan */
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.contact-buttons .button {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.contact-buttons .button:hover {
    background-color: #8B4513;
}

.whatsapp-button {
    background-color: #25D366 !important;
}

.whatsapp-button:hover {
    background-color: #1DA851 !important;
}

footer {
    background-color: var(--background-dark);
    color: var(--secondary-color);
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

footer .social-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.gallery-section {
    padding: 80px 20px;
    background-color: var(--background-light);
    color: var(--text-dark);
    text-align: center;
}

.gallery-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.photo-grid img {
    width: 100%;
    height: auto; /* Allow height to adjust based on aspect ratio */
    aspect-ratio: 1/1; /* Maintain 1:1 aspect ratio */
    object-fit: cover; /* Cover the area without distortion */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-grid img:hover {
    transform: scale(1.05);
}

.featured-video-section {
    padding: 80px 20px;
    background-color: var(--background-dark);
    color: var(--text-light);
    text-align: center;
}

.featured-video-content {
    max-width: 1000px;
    margin: 0 auto;
}

.featured-video-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 800px; /* Set a maximum width for desktop */
    margin: 0 auto; /* Center the video embed */
    background: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column; /* Stack content and image vertically on mobile */
        justify-content: center;
        text-align: center;
        padding: 20px;
        height: auto; /* Allow height to adjust based on content */
    }

    .hero-section::after {
        display: none; /* Hide diagonal line on mobile */
    }

    .hero-left-content {
        order: 1; /* Ensure it's first */
        margin-right: 0;
        margin-bottom: 30px; /* Space between content and image */
        max-width: 95%; /* Allow content to take full width */
        padding: 20px; /* Adjusted padding for mobile */
    }

    .hero-right-image {
        order: 2; /* Ensure it's second */
        display: flex; /* Ensure image is displayed */
        justify-content: center; /* Center the image */
        margin-top: 20px; /* Space above the image */
        height: auto; /* Allow height to adjust */
    }

    .hero-image {
        max-height: 50vh; /* Limit image height on mobile */
        width: 90%; /* Adjust width for mobile */
        object-fit: contain; /* Ensure image is fully visible */
    }

    .hero-left-content h1 {
        font-size: 1.8em; /* Further adjusted font size for mobile */
        letter-spacing: 0.8px;
        margin-bottom: 10px;
    }

    .hero-left-content .tagline {
        font-size: 0.9em; /* Further adjusted tagline font size for mobile */
        margin-bottom: 15px;
        padding: 8px 12px; /* Adjusted padding for mobile */
        letter-spacing: 0.8px;
    }

    .cta-buttons .button {
        padding: 12px 20px; /* Adjusted padding for mobile */
        margin: 15px 8px 0 8px; /* Adjusted margin for mobile */
        font-size: 0.9em; /* Adjusted font size for mobile */
    }

    .about-content h2,
    .music-content h2,
    .events-content h2,
    .gallery-content h2,
    .featured-video-content h2,
    .contact-content h2 {
        font-size: 2em;
    }

    .music-embeds {
        flex-direction: column;
        gap: 20px;
    }

    .music-embeds .video-embed {
        padding-bottom: 56.25%; /* Keep 16:9 aspect ratio for mobile */
        width: 100%; /* Full width on mobile */
        min-width: unset; /* Remove min-width on mobile */
    }

    .music-embeds .spotify-embed {
        height: 152px; /* Fixed height for Spotify embed on mobile */
        width: 100%; /* Full width on mobile */
        min-width: unset; /* Remove min-width on mobile */
    }

    .music-embeds .spotify-embed iframe {
        width: 100%;
        height: 152px; /* Fixed height for Spotify iframe on mobile */
    }

    .video-embed {
        padding-bottom: 75%;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .contact-buttons .button {
        width: 80%;
        margin: 0 auto;
    }

    footer .social-links {
        flex-direction: column;
        gap: 10px;
    }

    .contact-info {
        order: 3; /* Ensure it's last on mobile */
        position: static; /* Remove absolute positioning on mobile */
        margin-top: 20px; /* Add some space above it */
        text-align: center; /* Center the text */
        padding: 5px 10px; /* Adjust padding */
        background-color: rgba(0, 0, 0, 0.5); /* Re-add background for better readability on mobile */
        border-radius: 5px;
    }
}
