:root {
    --bg-color: #030303; /* Deep black contrast */
    --bg-gradient-top: #0a0908;
    --text-color: #E6E1D8; /* Soft beige/neutral */
    --accent-glow: rgba(210, 190, 160, 0.15); /* Warm beige glow */
    --gold-glow: rgba(220, 180, 130, 0.35);
    --nav-height: 80px;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background: #000000;
    color: var(--text-color);
    font-family: var(--font-main);
    overflow: hidden;
    position: relative;
    height: 100vh;
    width: 100vw;
}

/* Cinematic Film Grain Effect */
body::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 100;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Background Effects (Glows & Curves) */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.abstract-curve {
    position: absolute;
    bottom: -5%;
    left: 0;
    width: 100%;
    height: 75vh;
    opacity: 0.7;
    transform-origin: bottom;
    z-index: 1; /* keep it behind the image */
}

.path-1 { animation: wave 15s infinite alternate ease-in-out; transform-origin: center; }
.path-2 { animation: wave 25s infinite alternate-reverse ease-in-out; transform-origin: center; }

@keyframes wave {
    0% { transform: scaleY(1) translateY(0); }
    100% { transform: scaleY(1.05) translateY(-20px); }
}

@keyframes breathCurve {
    0% { transform: scaleY(1); }
    100% { transform: scaleY(1.15); }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.6;
    animation: float 25s infinite alternate ease-in-out;
}

.blob-1 {
    width: 550px;
    height: 550px;
    background: var(--gold-glow);
    top: 15%;
    left: 5%;
}

.blob-2 {
    width: 700px;
    height: 700px;
    background: rgba(80, 80, 95, 0.25);
    bottom: -15%;
    right: 0%;
    animation-delay: -7s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -60px) scale(1.1); }
}

/* Header & Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 2rem 1.5rem 2rem; /* Internal padding */
    width: 100%;
    max-width: 1100px; /* Squeezes icons and right items inwards towards center logo */
    margin: 0 auto; /* Centers the whole navigation */
    position: relative;
    z-index: 10;
}

.nav-left {
    display: flex;
    gap: 1.2rem;
}

.nav-left a, .nav-right a, .nav-right span {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem; /* ensures physically equal spacing for different icon widths */
}

.svg-icon {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
}

.language-selector {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-right: 0.5rem;
    padding: 0.5rem 0;
}

.current-lang {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.language-selector:hover .current-lang {
    color: #DCCCB5;
    text-shadow: 0 0 10px rgba(220, 204, 181, 0.4);
}



.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-container {
    display: flex;
    align-items: center;
}

.search-input {
    width: 0;
    opacity: 0;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    transition: width 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
    outline: none;
    padding: 0.2rem 0;
    margin-right: 0;
    pointer-events: none;
}

.search-container.active .search-input {
    width: 120px;
    opacity: 1;
    margin-right: 0.8rem;
    pointer-events: auto;
}

.nav-icon-home {
    margin-left: 0.8rem;
}

.nav-left a:hover, .search-icon:hover, .nav-icon-home:hover {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.nav-center .logo {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Secondary Menu */
.main-menu {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0; /* Remove 4rem padding */
    margin-top: 0.5rem;
}

.main-menu ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Groups items tightly */
    gap: 1rem; /* Reduced gap to close distance between headers */
    align-items: center;
    width: 100%;
}

.main-menu li {
    display: flex;
    align-items: center;
}

.main-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 200;
    letter-spacing: 0.25em;
    opacity: 0.65;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    padding-bottom: 4px;
}

.main-menu a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.main-menu a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.main-menu a:hover::after {
    width: 100%;
}

.main-menu .dot {
    color: #fff;
    opacity: 0.25;
    font-size: 1.2rem;
    line-height: 0;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

/* Hero Image Container */
.hero-image-container {
    position: absolute;
    bottom: -8vh; /* Drop below the bottom */
    right: -2%; /* Stick nicely to right border */
    left: auto;
    height: 105vh; /* Enlarged visually */
    display: flex;
    align-items: flex-end;
    z-index: 2;
    /* Blend mode 'lighten' removes dark colored backgrounds perfectly against pure black page background */
    mix-blend-mode: lighten;
    /* Soft fade at the bottom */
    -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,1) 15%);
    mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,1) 15%);
}

.hero-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right center; /* Focus on the subject symmetrically */
    filter: contrast(1.15) brightness(0.95);
    transform-origin: center right;
}

@keyframes subtlePresence {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.02) translateY(-10px); }
}

/* Text Section - Cinematic Layout */
.hero-text {
    position: absolute;
    left: calc(50vw - 550px + 2rem); /* EXACTLY tracks the leftmost boundary of the nav-left icons */
    right: auto;
    top: 55%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 600px;
    text-align: left; /* Explicitly left aligned */
}

.quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    letter-spacing: 0.05em;
    position: relative;
    text-transform: uppercase;
}

/* Soft ambient block behind text to ensure readability and hint at club atmosphere */
.hero-text::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    background: radial-gradient(circle at left center, rgba(15, 12, 10, 0.4) 0%, transparent 80%);
    z-index: -1;
    filter: blur(20px);
    border-radius: 50%;
}

.quote-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: slideFadeUp 1.2s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.quote-line:nth-child(1) { animation-delay: 0.3s; }
.quote-line:nth-child(3) { animation-delay: 0.7s; font-weight: 800; }
.quote-line:nth-child(5) { animation-delay: 1.1s; border-left: 2px solid transparent;} /* break line offset */
.quote-line:nth-child(7) { 
    animation-delay: 1.5s; 
    font-weight: 500; 
    color: #DCCCB5; 
    text-shadow: 0 0 20px rgba(220, 204, 181, 0.4);
    margin-top: 5px;
}

/* Quote signature removed */

@keyframes slideFadeUp {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .nav-left, .nav-right { display: none; }
    .hero-image-container { left: 50%; height: 80vh; }
    .hero-text { left: 5%; top: 60%; }
    .quote { font-size: 1.4rem; text-align: center; }
    .hero-text { left: 50%; transform: translate(-50%, -50%); width: 90%; }
}

/* ------------------------------------- */
/* ABOUT SECTION                         */
/* ------------------------------------- */

.about-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 140px);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Fix overlap: push text below menu naturally instead of hard centering */
    padding-top: 3rem; /* Provide spacing after menu */
}

.about-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    height: auto;
    justify-content: flex-start; /* Keep text aligned left naturally */
    align-items: flex-start;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 0;
}

.about-text {
    flex: none;
    width: 50%; /* Constrain width so it doesn't cross the video on the right */
    color: #E6E1D8;
    font-family: 'Cormorant Garamond', serif; /* Matching home screen text style */
    font-size: 1.15rem; /* Reduced for solid paragraph look */
    line-height: 1.7;
    font-weight: 300;
    text-align: justify;
    animation: slideFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 10;
}

.about-text p {
    margin-bottom: 1.2rem;
}

.about-text p strong {
    font-weight: 600;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: 0.05em;
}

.about-text .highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #DCCCB5;
    font-style: italic;
    margin-top: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    text-shadow: 0 0 15px rgba(220, 204, 181, 0.2);
}

.about-video-container {
    position: absolute;
    bottom: -8vh; /* Match the hero image deep drop */
    right: -2%; /* Stuck naturally to the right like home screen */
    left: auto;
    height: 105vh; /* Massive cinematic vertical coverage */
    width: 45vw; /* Fills right half generously */
    display: flex;
    align-items: flex-end;
    z-index: 2;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    animation: slideFadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: none;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,1) 15%), linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 30%); /* Fades bottom and left gracefully into pure black */
    mask-image: linear-gradient(to top, transparent 0%, rgba(0,0,0,1) 15%), linear-gradient(to right, transparent 0%, rgba(0,0,0,1) 30%);
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) brightness(0.6) contrast(1.1); 
    transition: filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.about-video:hover {
    /* Instantly colorize when hovered */
    filter: grayscale(0%) brightness(1) contrast(1);
}

/* ------------------------------------- */
/* NEWS SECTION                          */
/* ------------------------------------- */

.news-section {
    width: 100%;
    height: calc(100vh - 140px);
    z-index: 5;
    padding: 2rem 2rem 4rem 2rem;
    overflow-y: auto; 
    position: relative;
    /* hide scrollbar for elegance */
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.news-section::-webkit-scrollbar { 
    display: none; 
}

.news-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem; /* Space between rows */
}

.news-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    opacity: 0;
    animation: slideFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.news-item:nth-child(2) {
    animation-delay: 0.3s;
}

.news-image-wrapper {
    flex: 0.6; /* Shrink width space to force classic portrait proportion while giving text room */
    overflow: hidden;
    position: relative;
    border-radius: 2px;
}

.news-image {
    width: 100%;
    height: auto; /* Show entire image without cropping */
    display: block;
    aspect-ratio: 3/4; /* Explicitly forces vertical format */
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6) contrast(1.1);
    transition: filter 0.6s ease, transform 0.6s ease;
    cursor: pointer;
}

.news-image-wrapper:hover .news-image {
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.03); /* Subtle scale up */
}

.news-text {
    flex: 1.4; /* Give text more space compared to portrait image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.news-text h2 {
    display: none; /* Hide any legacy headers if present */
}

.news-text p {
    font-family: 'Outfit', sans-serif;
    color: #A5A5A5; /* subtle tone */
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-read-more {
    display: inline-block;
    padding: 0.8rem 2.8rem;
    background-color: #E6E1D8; /* Solid light color */
    color: #050505;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.btn-read-more:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 25px rgba(230, 225, 216, 0.4);
}

/* ------------------------------------- */
/* VIDEOS SECTION                        */
/* ------------------------------------- */

.videos-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 140px);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically centers the videos elegantly */
    animation: slideFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.videos-container {
    width: 100%;
    max-width: 1400px;
    height: 70vh; /* Restrict height so portrait videos don't explode visually */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem; /* wider gap for elegant thin videos */
    padding: 0 4rem;
}

.video-wrapper {
    flex: none; /* Prevent horizontal stretching forcing crop */
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/16; /* Force Vertical Portrait ratio */
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
    background: #050505;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
    pointer-events: none;
    z-index: 2;
}

.videos-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6) contrast(1.1);
    transition: filter 0.6s ease, transform 0.6s ease;
    cursor: pointer;
    z-index: 1;
}

.video-wrapper:hover .videos-item {
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.02); /* Slight immersive zoom */
}

/* ------------------------------------- */
/* CONTACT SECTION                       */
/* ------------------------------------- */

.contact-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 140px);
    z-index: 5;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    padding-top: 2rem;
    animation: slideFadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-container {
    width: 100%;
    max-width: 1000px; /* Increased to fit form + 2 images */
    display: flex;
    flex-direction: column;
    gap: 3rem; /* Space between icons and row */
    align-items: center;
}

.contact-socials {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    width: 100%;
    z-index: 10;
}

.contact-socials a {
    color: #fff;
    font-size: 1.8rem;
    opacity: 0.6;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-socials a:hover {
    opacity: 1;
    transform: translateY(-5px);
    text-shadow: 0 0 25px rgba(255,255,255,0.6);
}

.svg-icon-large {
    width: 1.8rem;
    height: 1.8rem;
    object-fit: contain;
    transition: all 0.4s ease;
}

.contact-content-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.contact-side-image {
    flex: 1;
    max-width: 250px; /* Constrain image width */
    height: 350px; /* Ensure uniform height to match the form */
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    opacity: 0;
    animation: slideFadeUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.contact-side-image.left { animation-delay: 0.2s; }
.contact-side-image.right { animation-delay: 0.4s; }

.contact-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) brightness(0.6) contrast(1.1);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.contact-side-image:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.05); /* Slight zoom on hover */
}

.contact-form-wrapper {
    flex: 2; /* Give form slightly more width */
    max-width: 450px;
    padding: 2.5rem;
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15); 
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    border-radius: 4px;
    z-index: 2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #DCCCB5; /* Gold/beige highlight */
    background: rgba(220, 204, 181, 0.08); /* Slight warm highlight */
    box-shadow: inset 0 0 10px rgba(220, 204, 181, 0.1);
}

.contact-form textarea {
    resize: none; 
}

.btn-send {
    width: 100%;
    padding: 1rem;
    background-color: #fff; 
    color: #000;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.8rem;
}

.btn-send:hover {
    background-color: #DCCCB5; /* Use the warm accent color on hover */
    color: #000;
    box-shadow: 0 0 25px rgba(220, 204, 181, 0.3);
}

.contact-form small {
    text-align: center;
    display: block;
    font-family: 'Cormorant Garamond', serif; 
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ------------------------------------- */
/* MUSIC SECTION                         */
/* ------------------------------------- */

.music-section {
    width: 100%;
    height: calc(100vh - 140px);
    z-index: 5;
    padding: 2rem 2rem 4rem 2rem;
    overflow-y: auto; 
    position: relative;
    /* hide scrollbar for elegance */
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.music-section::-webkit-scrollbar { 
    display: none; 
}

.music-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem; /* Space between categories */
    padding-bottom: 5rem;
}

.music-category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: #DCCCB5;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(220, 204, 181, 0.2);
    padding-bottom: 1rem;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    justify-items: center;
}

.music-item {
    width: 100%;
    max-width: 350px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.music-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) brightness(0.8) contrast(1.1);
    transition: filter 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s ease;
}

.music-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 8, 6, 0.85); /* Deep dark background suitable for title */
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 1.2rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateY(0);
    transition: transform 0.4s ease, background 0.4s ease;
    border-top: 1px solid rgba(220, 204, 181, 0.15);
}

.music-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.9), 0 0 20px rgba(220, 204, 181, 0.1);
}

.music-item:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.03);
}

.music-item:hover .music-title {
    background: rgba(15, 12, 10, 0.95);
    color: #DCCCB5;
}

/* ------------------------------------- */
/* RESPONSIVE DESIGN                     */
/* ------------------------------------- */

/* Mobile Menu Toggle Styling */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 100;
}

@media (max-width: 1024px) {
    /* Navbar adjustments */
    .nav-left { display: none; } /* Hide social icons on tablet/mobile header */
    .nav-right { gap: 1rem; }
    
    /* Hero section */
    .hero-image-container { left: 50%; height: 80vh; transform: translateX(-50%); }
    .hero-text { left: 50%; top: 50%; transform: translate(-50%, -50%); width: 90%; text-align: center; }
    .quote { font-size: 1.8rem; text-align: center; }
    
    /* About section */
    .about-content { padding: 0 1rem; }
    
    /* Videos section */
    .videos-container { gap: 2rem; padding: 0 1rem; }
}

@media (max-width: 768px) {
    /* Header & Mobile Menu */
    .mobile-menu-toggle { display: block; }
    
    .nav-icon-home { display: none; } /* Hide home icon since logo does it */
    
    .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        z-index: 50;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }
    
    .main-menu.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .main-menu ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .main-menu .dot { display: none; } /* Hide dots on mobile */
    
    .main-menu a {
        font-size: 1.5rem;
        letter-spacing: 0.3em;
    }

    /* Navbar padding */
    .navbar { padding: 1.5rem 1rem; }
    .nav-center .logo { font-size: 2rem; }
    
    /* Hero */
    .hero-image-container { height: 70vh; }
    .quote { font-size: 1.4rem; }
    
    /* About */
    .about-section { height: auto; padding-top: 2rem; padding-bottom: 4rem; overflow-y: auto; }
    .about-content { flex-direction: column; gap: 3rem; }
    .about-text { width: 100%; text-align: center; font-size: 1.05rem; }
    .about-text .highlight { text-align: center; font-size: 1.4rem; margin-top: 1.5rem; }
    .about-video-container { position: relative; width: 100%; height: 60vh; bottom: 0; right: 0; -webkit-mask-image: none; mask-image: none; margin-top: 2rem; }

    /* News */
    .news-section { height: auto; padding: 2rem 1rem 4rem 1rem; }
    .news-item { flex-direction: column; gap: 2rem; text-align: center; }
    .news-image-wrapper { width: 100%; flex: none; }
    .news-text { align-items: center; }

    /* Music */
    .music-section { height: auto; padding: 2rem 1rem 4rem 1rem; }
    .music-grid { grid-template-columns: 1fr; gap: 2rem; }
    .music-item { max-width: 100%; }
    
    /* Videos */
    .videos-section { height: auto; padding: 2rem 1rem 4rem 1rem; overflow-y: auto; }
    .videos-container { flex-direction: column; height: auto; gap: 3rem; }
    .video-wrapper { width: 100%; max-width: 400px; aspect-ratio: 9/16; margin: 0 auto; }

    /* Contact */
    .contact-section { height: auto; padding: 2rem 1rem 4rem 1rem; overflow-y: auto; }
    .contact-content-row { flex-direction: column; gap: 2rem; }
    .contact-side-image.left { display: none; } /* Hide one image to save space */
    .contact-side-image.right { width: 100%; max-width: 100%; height: 250px; }
    .contact-form-wrapper { width: 100%; max-width: 100%; padding: 1.5rem; }
    .contact-socials { gap: 1.5rem; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .nav-center .logo { font-size: 1.5rem; }
    .quote { font-size: 1.2rem; }
    .about-video-container { height: 40vh; }
    .btn-read-more { width: 100%; text-align: center; }
}

