/* =========================================================
   GLOBAL COLOR + FONT VARIABLES
========================================================= */
:root {
    --black: #F3E9E1;
    --deep-black: #0a0a0a;
    --gold: #D4AF37;
    --nude: #F5EFE6;
    --nude-dark: #E9E0D4;
    --white: #ffffff;
    --grey: #333;

    --serif: "Playfair Display", serif;
    --sans: "Poppins", sans-serif;

    --max-width: 1300px;
}

/* =========================================================
   RESET
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--deep-black);
    font-family: var(--sans);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    width: 100%;
    border-radius: 12px;
}

section {
    position: relative;
}

/* Section transition fade */
section:before {
    content: "";
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%;
    height: 35px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), transparent);
    pointer-events: none;
}



/* =========================================================
   BUTTONS
========================================================= */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}
.btn:hover {
    background: var(--gold);
    color: var(--black);
}



/* =========================================================
   HEADER
========================================================= */
.header {
    width: 100%;
    padding: 18px 6%;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: var(--white);
    margin-left: 26px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}
nav a:hover {
    color: var(--gold);
}

.logo {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 26px;
}



/* =========================================================
   PRELOADER
========================================================= */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

#loader-content {
    text-align: center;
}

#loader-content h1 {
    color: var(--gold);
    font-family: var(--serif);
    letter-spacing: 3px;
    opacity: 0;
    font-size: 38px;
    animation: fadeInText 1.2s forwards ease;
}

.loader-line {
    width: 0;
    height: 3px;
    margin: 12px auto;
    background: var(--gold);
    animation: loaderLine 1.6s forwards ease 0.35s;
}

@keyframes fadeInText {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes loaderLine {
    to { width: 130px; }
}

body.loaded #preloader {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}



/* =========================================================
   HERO
========================================================= */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.48);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, black);
}

.hero-content {
    position: absolute;
    bottom: 22%;
    left: 8%;
    max-width: 640px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 64px;
    font-family: var(--serif);
    line-height: 1.1;
    margin-bottom: 15px;
    position: relative;
}

/* gold underline */
.hero-content h1::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    animation: underline 1.4s ease forwards 1s;
}

@keyframes underline {
    to { width: 130px; }
}

.hero-content p {
    font-size: 18px;
    margin-top: 12px;
    color: #dddddd;
}



/* =========================================================
   INTRO SECTION
========================================================= */
.intro {
    background: var(--nude);
    padding: 130px 0;
}

.intro-container {
    width: 90%;
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.intro-container h2 {
    font-family: var(--serif);
    font-size: 58px;
    margin-bottom: 20px;
}

.intro-container p {
    font-size: 18px;
    color: #444;
}

.large-body {
    font-size: 20px;
    margin-bottom: 20px;
}



/* =========================================================
   LOGO ROW
========================================================= */
.seen-in {
    background: white !important;
    padding: 40px 0;
    text-align: center;
    color: var(--black);
}

.logo-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.logo-row img {
    width: 150px;
    height: 90px;
    object-fit: cover;
    filter: grayscale(90%);
    opacity: 0.8;
    transition: 0.3s;
}
.logo-row img:hover {
    filter: grayscale(0);
    opacity: 1;
}



/* =========================================================
   FEATURE CARDS
========================================================= */
.features {
    background: var(--nude);
    padding: 140px 0;
}

.feature-card {
    background: var(--white);
    border-radius: 18px;
    padding: 55px;
    max-width: var(--max-width);
    margin: auto auto 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    transition: 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.25);
}

.feature-card h3 {
    font-family: var(--serif);
    font-size: 36px;
    margin-bottom: 12px;
}

.feature-card img {
    width: 300px;
    border-radius: 14px;
}



/* =========================================================
   STORY SECTION
========================================================= */
.story {
    background: var(--black);
    padding: 150px 0;
    color: var(--white);
}

.story-inner {
    width: 90%;
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-inner h2 {
    font-family: var(--serif);
    color: var(--gold);
    font-size: 48px;
    margin-bottom: 22px;
}



/* =========================================================
   PROJECTS GRID
========================================================= */
.projects {
    background: var(--nude);
    padding: 140px 0;
}

.project-grid {
    width: 90%;
    max-width: var(--max-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px;
}

.project-box {
    background: var(--white);
    padding: 35px;
    border-radius: 14px;
    border: 1px solid var(--gold);
    transition: 0.35s;
    text-decoration: none;
    color: var(--black);
}
.project-box:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-4px);
}



/* =========================================================
   MAGAZINES MOSAIC
========================================================= */
.magazines {
    background: var(--black);
    padding: 140px 0;
}

.mag-grid {
    width: 90%;
    max-width: var(--max-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 22px;
}

.mag-grid img {
    height: 330px;
    object-fit: cover;
    transition: 0.35s;
}

.mag-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 25px rgba(212,175,55,0.35);
}



/* =========================================================
   BOOKS
========================================================= */
.books {
    background: var(--nude);
    padding: 10px 0;
    text-align: center;
    padding-top: initial;
}

.book-row {
    width: 90%;
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.book-card {
    background: var(--white);
    padding: 40px;
    width: 260px;
    border-radius: 16px;
    border: 1px solid var(--gold);
    transition: 0.35s;
}

.book-card:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-4px);
}



/* =========================================================
   COLLAB
========================================================= */
.collab {
    background: var(--black);
    padding: 150px 10%;
    text-align: center;
    color: var(--white);
}

.collab p {
    max-width: 820px;
    margin: auto;
    font-size: 20px;
}



/* =========================================================
   VIDEO CAROUSEL
========================================================= */
.videos {
    background: var(--nude);
    padding: 140px 0;
}

.video-track {
    display: flex;
    width: 400%;
    transition: transform 0.75s ease;
}

.slide video {
    width: 85%;
    max-width: 900px;
    margin: auto;
    border-radius: 16px;
    border: 2px solid var(--gold);
}



/* =========================================================
   MEDIA GALLERY
========================================================= */
.gallery {
    background: var(--black);
    padding: 140px 0;
}

.gallery-grid {
    width: 90%;
    max-width: var(--max-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 20px;
}



/* =========================================================
   BOOKING
========================================================= */
.booking {
    background: var(--nude);
    padding: 140px 0;
    text-align: center;
}

.booking-form {
    width: 90%;
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-form input,
.booking-form textarea {
    background: var(--white);
    border: 1px solid var(--gold);
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
}

.booking-form textarea {
    height: 150px;
}



/* =========================================================
   FOOTER
========================================================= */
.footer {
    background: var(--deep-black);
    padding: 80px 0;
    text-align: center;
    color: var(--gold);
}

.footer-links a {
    color: var(--gold);
    margin: 0 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}



/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width: 992px) {

    .intro-container,
    .story-inner,
    .feature-card {
        flex-direction: column;
        text-align: center;
    }

    .intro-photo-wrapper,
    .story-right {
        width: 100%;
    }

    .feature-card img {
        width: 90%;
    }

    .book-row {
        flex-direction: column;
    }
}
/* =========================================================
   BRAND COLLABORATION — LUXURY INFINITE MARQUEE
========================================================= */
.brand-collab {
    background: #F3E9E1;
    padding: 10px 0;
    text-align: center;
    color: var(--black);
}

.brand-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin: 50px 0 40px;
}

.brand-marquee {
    display: flex;
    gap: 70px;
    width: auto;
    animation: scrollBrands 18s linear infinite;
    padding: 10px 0;
}

.brand-marquee img {
    height: 70px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
}

.brand-marquee img:hover {
    opacity: 1;
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1);
}

/* Infinite loop animation */
@keyframes scrollBrands {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.collab-note {
    max-width: 850px;
    margin: auto;
    font-size: 19px;
    color: black;
    opacity: 0.9;
    line-height: 1.8;
}
/* =========================================================
   ENHANCED BOOKS SECTION – LUXURY STYLE
========================================================= */

.books.enhanced {
    background: var(--nude);
    padding: 150px 0;
}

.books-wrapper {
    width: 90%;
    max-width: var(--max-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
}

.book-item {
    background: var(--white);
    border-radius: 20px;
    padding: 45px;
    display: flex;
    gap: 30px;
    align-items: center;
    transition: 0.35s ease;
    border: 1px solid var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}

.book-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(212,175,55,0.25);
}

.book-cover img {
    width: 180px;
    border-radius: 14px;
    box-shadow: 0 10px 18px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.book-item:hover .book-cover img {
    transform: scale(1.05);
}

.book-info h3 {
    color: var(--black);
    font-family: var(--serif);
    font-size: 28px;
    margin-bottom: 10px;
}

.book-info p {
    color: #444;
    margin-bottom: 16px;
}

.gold-btn {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 600;
}

.gold-btn:hover {
    background: var(--black);
    color: var(--gold);
    border-color: var(--black);
}

@media(max-width: 768px) {
    .book-item {
        flex-direction: column;
        text-align: center;
    }
    .book-cover img {
        width: 220px;
    }
}
/* =========================================================
   PREMIUM 3D BOOK SECTION
========================================================= */

.books-3d {
    background: var(--nude);
    padding: 160px 0;
}

.book-row-3d {
    width: 90%;
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

/* Each row */
.book-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.book-block.reverse {
    flex-direction: row-reverse;
}

/* 3D Image effect */
.book-img-3d {
    width: 330px;
    perspective: 1000px;
}

.book-img-3d img {
    width: 100%;
    border-radius: 16px;
    transform: rotateY(-18deg) translateZ(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.book-block.reverse img {
    transform: rotateY(18deg);
}

.book-img-3d:hover img {
    transform: rotateY(0deg) scale(1.05);
    box-shadow: 0 20px 45px rgba(212,175,55,0.45);
}

/* TEXT SIDE */
.book-text {
    max-width: 540px;
}

.book-text h3 {
    font-family: var(--serif);
    font-size: 42px;
    margin-bottom: 12px;
    color: var(--black);
}

.book-text p {
    font-size: 18px;
    color: #505050;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* BUTTONS */
.book-btns {
    display: flex;
    gap: 20px;
}

.gold-btn {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.gold-btn:hover {
    background: var(--black);
    color: var(--gold);
    border-color: var(--black);
}

.outline-btn {
    border: 2px solid var(--black);
    color: var(--black);
}

.outline-btn:hover {
    background: var(--black);
    color: var(--gold);
}

/* Responsive */
@media(max-width: 900px) {

    .book-block,
    .book-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .book-img-3d {
        width: 260px;
    }

    .book-text h3 {
        font-size: 34px;
    }
}
/* SPARKLE PARTICLES */
.sparkle-container {
    position: relative;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(212,175,55,1) 0%, rgba(212,175,55,0) 70%);
    border-radius: 50%;
    animation: sparkleFloat 4s infinite ease-in-out;
    opacity: 0.75;
}

/* Randomizing positions */
.sparkle:nth-child(1) { top: -20px; left: 40%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 40%; left: -20px; animation-delay: 1s; }
.sparkle:nth-child(3) { bottom: -20px; left: 60%; animation-delay: 2s; }
.sparkle:nth-child(4) { top: 20%; right: -20px; animation-delay: 3s; }

/* Floating animation */
@keyframes sparkleFloat {
    0% { transform: translateY(0) scale(0.6); opacity: 0.9; }
    50% { transform: translateY(-15px) scale(1); opacity: 1; }
    100% { transform: translateY(0) scale(0.6); opacity: 0.9; }
}
/* GOLD SPOTLIGHT BEHIND BOOK */
.book-img-3d::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 260px;
    height: 260px;
    margin: auto;
    background: radial-gradient(circle, rgba(212,175,55,0.25) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.8;
    transition: 0.5s ease;
}

.book-img-3d:hover::before {
    opacity: 1;
    filter: blur(25px);
}
/* MOVING SPOTLIGHT */
.books-3d {
    position: relative;
    overflow: hidden;
}

.books-3d::after {
    content: "";
    position: absolute;
    top: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.11), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: moveSpot 12s linear infinite;
    filter: blur(80px);
}

@keyframes moveSpot {
    0% { transform: translate(0, 0); }
    25% { transform: translate(60vw, 0); }
    50% { transform: translate(60vw, 80vh); }
    75% { transform: translate(0, 80vh); }
    100% { transform: translate(0, 0); }
}
.books-3d {
    position: relative;
    overflow: hidden;
}

.books-3d::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 300px;
    top: -80px;
    left: -20%;
    background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(245,239,230,0));
    filter: blur(45px);
    animation: waveMove 12s infinite linear alternate;
}

@keyframes waveMove {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(60px) rotate(4deg); }
}
.books-3d::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.12), transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(212,175,55,0.08), transparent 70%);
    z-index: -1;
}
.books-3d {
    background: var(--nude);
    position: relative;
}

.books-3d::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.22;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}
.books-3d::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(212,175,55,0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(212,175,55,0.08) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.2;
    pointer-events: none;
}
.books-3d::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 20%;
    width: 600px;
    height: 600px;
    background: conic-gradient(from 30deg, rgba(212,175,55,0.25), transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    animation: rotateHalo 18s linear infinite;
}

@keyframes rotateHalo {
    to { transform: rotate(360deg); }
}
/* =========================================================
   ULTRA-PREMIUM MUSIC ALBUM SECTION (3D + SPARKLE + SPOTLIGHT)
========================================================= */

.music-3d {
    background: var(--nude);
    padding: 150px 0;
    position: relative;
}

/* Spotlight Section Glow */
.music-3d::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 70%);
    filter: blur(80px);
    animation: driftGlow 18s linear infinite;
}

@keyframes driftGlow {
    0% { transform: translate(0,0); }
    50% { transform: translate(40vw, 30vh); }
    100% { transform: translate(0,0); }
}

/* Layout rows */
.music-wrapper {
    width: 90%;
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

/* Each album row */
.music-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.music-block.reverse {
    flex-direction: row-reverse;
}

/* 3D Album cover */
.album-img-3d {
    width: 300px;
    perspective: 1000px;
    position: relative;
}

.album-img-3d img {
    width: 100%;
    border-radius: 14px;
    transform: rotateY(-18deg);
    transition: 0.45s ease;
    box-shadow: 0 18px 30px rgba(0,0,0,0.25);
}

.music-block.reverse img {
    transform: rotateY(18deg);
}

.album-img-3d:hover img {
    transform: rotateY(0deg) scale(1.05);
    box-shadow: 0 20px 45px rgba(212,175,55,0.45);
}

/* SPARKLES */
.sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(212,175,55,1) 0%, rgba(212,175,55,0) 70%);
    border-radius: 50%;
    opacity: 0.8;
    animation: sparkleFloat 4s infinite ease-in-out;
    z-index: -1;
}

.sparkle:nth-child(1) { top: -20px; left: 50%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 40%; left: -25px; animation-delay: 1s; }
.sparkle:nth-child(3) { bottom: -20px; left: 60%; animation-delay: 2s; }

@keyframes sparkleFloat {
    0% { transform: translateY(0) scale(0.7); opacity: 0.7; }
    50% { transform: translateY(-15px) scale(1); opacity: 1; }
    100% { transform: translateY(0) scale(0.7); opacity: 0.7; }
}

/* Text Section */
.album-text {
    max-width: 540px;
}

.album-text h3 {
    font-family: var(--serif);
    font-size: 42px;
    color: var(--black);
}

.album-text p {
    font-size: 18px;
    margin: 15px 0 25px;
    color: #505050;
}

.album-btns {
    display: flex;
    gap: 16px;
}

.gold-btn {
    background: var(--gold);
    color: var(--black);
}

.gold-btn:hover {
    background: var(--black);
    color: var(--gold);
}

.outline-btn {
    border: 2px solid var(--black);
    color: var(--black);
}

.outline-btn:hover {
    background: var(--black);
    color: var(--gold);
}

/* Responsive */
@media(max-width: 900px) {
    .music-block,
    .music-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .album-img-3d {
        width: 240px;
    }
}
/* =========================================================
   LUXURY AURA MUSIC SECTION (NO IMAGES)
========================================================= */

.music-aura-section {
    background: var(--nude);
    padding: 170px 0;
    position: relative;
}

/* Subtle golden ambient glow */
.music-aura-section::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    top: -150px;
    left: -200px;
    background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 70%);
    filter: blur(120px);
    animation: auraFloatBG 16s infinite ease-in-out;
}

@keyframes auraFloatBG {
    0% { transform: translate(0,0); }
    50% { transform: translate(30vw, 20vh); }
    100% { transform: translate(0,0); }
}

.music-aura-list {
    width: 90%;
    max-width: var(--max-width);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 130px;
}

/* ROW */
.music-aura-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.music-aura-item.reverse {
    flex-direction: row-reverse;
}

/* AURA GRAPHIC */
.aura-wrapper {
    width: 180px;
    height: 180px;
    position: relative;
}

.aura-ring {
    position: absolute;
    inset: 0;
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulseAura 6s infinite ease-in-out;
}

.aura-ring.inner {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border: 2px solid rgba(212,175,55,0.5);
    animation-duration: 4.5s;
}

@keyframes pulseAura {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.12); opacity: 0.85; }
    100% { transform: scale(1); opacity: 0.6; }
}

.aura-center {
    position: absolute;
    top: 50%; left: 50%;
    width: 55px;
    height: 55px;
    transform: translate(-50%, -50%);
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(212,175,55,0.7);
}

/* TEXT */
.album-text {
    max-width: 540px;
}

.album-text h3 {
    font-size: 42px;
    font-family: var(--serif);
    color: var(--black);
    margin-bottom: 12px;
}

.album-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

.album-buttons {
    display: flex;
    gap: 16px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .music-aura-item,
    .music-aura-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .aura-wrapper {
        width: 220px;
        height: 220px;
    }
}
/* =========================================================
   PREMIUM SINGLE-ROW MUSIC ALBUM SECTION
========================================================= */
.music-row-section {
    background: var(--nude);
    padding: 10px 0;
    position: relative;
}

.music-row {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 30px 5%;
    scroll-behavior: smooth;
}

.music-row::-webkit-scrollbar {
    height: 8px;
}
.music-row::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}
.music-row::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}

/* Album card */
.album-card {
    background: var(--white);
    min-width: 260px;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--gold);
    text-align: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    transition: 0.35s ease;
    position: relative;
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212,175,55,0.25);
}

/* Aura Icon */
.aura-icon {
    width: 110px;
    height: 110px;
    margin: auto;
    position: relative;
}

.ring {
    position: absolute;
    inset: 0;
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: 0.65;
    animation: ringPulse 5s infinite ease-in-out;
}

.ring.inner {
    inset: 20%;
    border-width: 2px;
    opacity: 0.5;
    animation-duration: 7s;
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.12); opacity: 1; }
    100% { transform: scale(1); opacity: 0.6; }
}

.dot {
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 18px rgba(212,175,55,0.9);
}

.album-card h4 {
    font-family: var(--serif);
    font-size: 22px;
    margin: 20px 0 5px;
    color: var(--black);
}

.album-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
}

.album-buttons .btn,
.album-card .btn {
    margin-top: 8px;
}
/* =========================================================
   LIVE ANIMATED SVG WAVES (LUXURY MUSIC BACKGROUND)
========================================================= */

.music-bg-waves {
    position: absolute;
    top: -60px;
    left: 0;
    width: 200%;
    height: 400px;
    z-index: 0;
    animation: slideWave 18s linear infinite;
    opacity: 0.5;
}

/* Move SVG horizontally */
@keyframes slideWave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Add soft glowing duplicate wave */
.music-bg-waves path {
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.4));
}
.music-bg-waves.second {
    top: 40px;
    animation: slideWave2 28s linear infinite;
}

@keyframes slideWave2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-40%); }
}
.music-row-section,
.music-vinyl-section,
.music-aura-section {
    position: relative;
    overflow: hidden;
}

.music-row,
.music-aura-list {
    position: relative;
    z-index: 2;
}
/* Animated gold waves behind music section */
.music-bg-waves {
    position: absolute;
    bottom: 0;        /* moved lower so it's visible */
    left: 0;
    width: 200%;
    height: 350px;
    z-index: 0;
    opacity: 1;
    animation: slideWave 14s linear infinite;
    mix-blend-mode: normal; /* ensures visibility */
    pointer-events: none;
}

.music-bg-waves.second {
    bottom: 40px;
    animation: slideWave2 22s linear infinite;
}

/* Darker glow for visibility */
.music-bg-waves path {
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.7));
}

@keyframes slideWave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-35%); }
}

@keyframes slideWave2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}
/* =========================================================
   INTERNAL WAVES INSIDE EACH MUSIC CARD
========================================================= */

.album-card {
    position: relative;
    background: var(--white);
    min-width: 260px;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--gold);
    text-align: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    transition: 0.35s ease;
    overflow: hidden;
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(212,175,55,0.25);
}

/* INTERNAL WAVES */
.album-waves {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 120%;
    height: 80px;
    z-index: 1;
    opacity: 0.55;
    animation: moveAlbumWaves 6s ease-in-out infinite;
}

.album-waves path {
    stroke: var(--gold);
    stroke-width: 2.2;
    fill: none;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.5));
}

/* Wave horizontal motion */
@keyframes moveAlbumWaves {
    0% { transform: translateX(-12px); }
    50% { transform: translateX(12px); }
    100% { transform: translateX(-12px); }
}

/* Raise content above waves */
.album-card h4,
.album-card p,
.album-card a,
.album-card .aura-icon {
    position: relative;
    z-index: 3;
}
/* =========================================================
   ROOT (already in your file but ensure these exist)
========================================================= */
:root {
    --gold: #D4AF37;
    --black: #000;
    --white: #fff;
    --nude: #F5EFE6;
    --serif: "Playfair Display", serif;
    --sans: "Poppins", sans-serif;
}

/* =========================================================
   BACKGROUND WAVES FOR THE SECTION
========================================================= */
.music-row-section {
    background: var(--nude);
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.music-bg-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 350px;
    animation: slideWave 14s linear infinite;
    opacity: 1;
    z-index: 0;
}

.music-bg-waves.second {
    bottom: 40px;
    animation: slideWave2 20s linear infinite;
}

.music-bg-waves path {
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.8));
}

@keyframes slideWave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-35%); }
}
@keyframes slideWave2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}

/* =========================================================
   HORIZONTAL SCROLLER
========================================================= */
.music-row {
    display: flex;
    gap: 40px;
    padding: 20px 5%;
    overflow-x: auto;
    scroll-behavior: smooth;
    position: relative;
    z-index: 5;
}

.music-row::-webkit-scrollbar {
    height: 6px;
}
.music-row::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 20px;
}

/* =========================================================
   ALBUM CARD
========================================================= */
.album-card {
    background: var(--white);
    min-width: 260px;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--gold);
    text-align: center;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(212,175,55,0.25);
}

/* =========================================================
   INTERNAL WAVES INSIDE CARD
========================================================= */
.album-waves {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 120%;
    height: 80px;
    z-index: 1;
    opacity: 0.60;
    animation: moveAlbumWaves 6s ease-in-out infinite;
}

.album-waves path {
    stroke: var(--gold);
    stroke-width: 2.2;
    fill: none;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.5));
}

@keyframes moveAlbumWaves {
    0% { transform: translateX(-12px); }
    50% { transform: translateX(12px); }
    100% { transform: translateX(-12px); }
}

/* =========================================================
   PLAY HOVER BUTTON
========================================================= */
.play-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 4;
}

.album-card:hover .play-icon {
    opacity: 1;
    transform: scale(1.1);
}

.play-circle {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(212,175,55,0.6);
}

.play-triangle {
    position: absolute;
    top: 11px;
    left: 16px;
    width: 0;
    height: 0;
    border-left: 14px solid black;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

/* =========================================================
   EQUALIZER BARS
========================================================= */
.equalizer {
    position: absolute;
    left: 18px;
    top: 18px;
    display: flex;
    gap: 4px;
    z-index: 4;
    opacity: 0.6;
    transition: 0.3s ease;
}

.album-card:hover .equalizer {
    opacity: 1;
}

.equalizer span {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: eqBars 0.9s infinite ease-in-out;
}

.equalizer span:nth-child(1) { animation-delay: 0s; }
.equalizer span:nth-child(2) { animation-delay: 0.15s; }
.equalizer span:nth-child(3) { animation-delay: 0.3s; }
.equalizer span:nth-child(4) { animation-delay: 0.45s; }

@keyframes eqBars {
    0% { height: 6px; }
    50% { height: 18px; }
    100% { height: 6px; }
}

/* =========================================================
   AURA ICON
========================================================= */
.aura-icon {
    width: 110px;
    height: 110px;
    margin: auto;
    position: relative;
    z-index: 3;
}

.ring {
    position: absolute;
    inset: 0;
    border: 3px solid var(--gold);
    border-radius: 50%;
    animation: ringPulse 5s infinite ease-in-out;
    opacity: 0.7;
}

.ring.inner {
    inset: 20%;
    border-width: 2px;
    opacity: 0.4;
    animation-duration: 7s;
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.14); opacity: 1; }
    100% { transform: scale(1); opacity: 0.7; }
}

.dot {
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 18px rgba(212,175,55,0.9);
}

/* =========================================================
   TEXT
========================================================= */
.album-card h4 {
    font-family: var(--serif);
    font-size: 22px;
    margin: 20px 0 5px;
    color: var(--black);
    position: relative;
    z-index: 3;
}

.album-card p {
    font-size: 15px;
    color: #555;
    position: relative;
    z-index: 3;
}

.album-card a {
    position: relative;
    z-index: 3;
}
/* =========================================================
   MAGAZINE 3D ROTATING CAROUSEL
========================================================= */

.mag-carousel-section {
    background: var(--nude);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

/* Container */
.carousel-container {
    perspective: 1800px;
    height: 420px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The carousel wheel */
.carousel {
    width: 420px;
    height: 420px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCarousel 18s infinite linear;
    transition: 0.3s ease;
}

/* Pause when hovered */
.carousel-container:hover .carousel {
    animation-play-state: paused;
}

/* Magazine Items */
.carousel-item {
    position: absolute;
    width: 220px;
    height: 300px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid var(--gold);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    transform-style: preserve-3d;
    transition: 0.4s ease;
    filter: brightness(0.76);
}

/* Glow on hover */
.carousel-item:hover {
    transform: scale(1.11) translateZ(30px);
    box-shadow: 0 18px 45px rgba(212,175,55,0.45);
    filter: brightness(1.1);
}

/* 3D wheel positions: 6 magazines */
.carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(360px); }
.carousel-item:nth-child(2) { transform: rotateY(60deg) translateZ(360px); }
.carousel-item:nth-child(3) { transform: rotateY(120deg) translateZ(360px); }
.carousel-item:nth-child(4) { transform: rotateY(180deg) translateZ(360px); }
.carousel-item:nth-child(5) { transform: rotateY(240deg) translateZ(360px); }
.carousel-item:nth-child(6) { transform: rotateY(300deg) translateZ(360px); }

/* Rotation animation */
@keyframes rotateCarousel {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(-360deg); }
}
/* =========================================================
   CINEMATIC VIDEO REEL SECTION
========================================================= */
.video-reel-section {
    background: var(--nude);
    padding: 80px 0 150px;
    position: relative;
    overflow: hidden;
}

/* Make the heading visible above sparkles */
.video-reel-section .section-title {
    position: relative;
    z-index: 20;
    margin-bottom: 40px;
}

/* GOLD SPOTLIGHT */
.video-spotlight {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%);
    filter: blur(90px);
    animation: videoSpot 15s infinite linear;
    z-index: 0;
}
@keyframes videoSpot {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg); }
}

/* SPARKLES */
.video-sparkle {
    position: absolute;
    width: 9px;
    height: 9px;
    background: radial-gradient(circle, rgba(212,175,55,1), rgba(212,175,55,0));
    border-radius: 50%;
    filter: blur(1px);
    animation: vSparkle 6s infinite ease-in-out;
    z-index: 10;
}

.s1 { top: 25%; left: 30%; animation-delay: 0s; }
.s2 { top: 60%; left: 70%; animation-delay: 1.2s; }
.s3 { top: 40%; left: 50%; animation-delay: 2.3s; }

@keyframes vSparkle {
    0%   { transform: translate(0, 0) scale(0.75); opacity: 0.7; }
    50%  { transform: translate(-14px, -15px) scale(1.1); opacity: 1; }
    100% { transform: translate(0, 0) scale(0.75); opacity: 0.7; }
}

/* VIDEO REEL */
.video-reel-track {
    display: flex;
    gap: 50px;
    overflow-x: auto;
    padding: 30px 6%;
    scroll-behavior: smooth;
    position: relative;
    z-index: 5;
}

.video-reel-track::-webkit-scrollbar {
    height: 6px;
}
.video-reel-track::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 20px;
}

/* VIDEO CARD */
.video-card {
    position: relative;
    min-width: 380px;
    height: 220px;
    border-radius: 20px;
    border: 2px solid var(--gold);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(212,175,55,0.25);
    transition: 0.4s ease;
}

.video-card:hover {
    transform: scale(1.06) translateY(-8px);
    box-shadow: 0 18px 45px rgba(212,175,55,0.45);
}

/* VIDEO INSIDE */
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78);
    transition: 0.4s ease;
}

.video-card:hover video {
    filter: brightness(1);
}

/* PLAY OVERLAY */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.35s ease;
    z-index: 3;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

/* PLAY BUTTON */
.play-btn {
    width: 65px;
    height: 65px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(212,175,55,0.7);
    transform: scale(0.7);
    transition: 0.35s ease;
    position: relative;
}

.video-card:hover .play-btn {
    transform: scale(1);
}

.play-btn:before {
    content: "";
    position: absolute;
    top: 22px;
    left: 26px;
    width: 0;
    height: 0;
    border-left: 18px solid black;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* =========================================================
   VIDEO POPUP
========================================================= */
.video-modal {
    display: none; 
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(212,175,55,0.4);
    animation: popupFade 0.3s ease;
}

@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.video-modal video {
    width: 100%;
    background: black;
}

.close-video-modal {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 38px;
    color: var(--gold);
    cursor: pointer;
    transition: 0.3s ease;
}
.close-video-modal:hover {
    color: white;
}
/* =========================================================
   CINEMATIC BOOKS SECTION
========================================================= */
.books-3d-section {
    background: var(--nude);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

/* GOLDEN DUST FLOATING */
.books-dust {
    position: absolute;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(212,175,55,1), rgba(212,175,55,0));
    border-radius: 50%;
    filter: blur(1px);
    animation: dustFloat 9s infinite ease-in-out;
}
.d1 { top: 20%; left: 30%; animation-delay: 0s; }
.d2 { top: 55%; left: 60%; animation-delay: 2s; }
.d3 { top: 75%; left: 20%; animation-delay: 4s; }

@keyframes dustFloat {
    0% { transform: translate(0, 0) scale(0.7); opacity: 0.7; }
    50% { transform: translate(-20px, -25px) scale(1.1); opacity: 1; }
    100% { transform: translate(0, 0) scale(0.7); opacity: 0.7; }
}

/* ROW */
.book-row-3d {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 130px;
}

/* BOOK BLOCKS */
.book-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
    position: relative;
}

.book-block.reverse {
    flex-direction: row-reverse;
}

/* SPOTLIGHT BEHIND BOOK */
.book-spotlight {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 650px;
    height: 650px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 70%);
    filter: blur(80px);
    z-index: 0;
    animation: spotRotate 18s infinite linear;
}

@keyframes spotRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* BOOK IMAGE AREA */
.book-img-3d {
    width: 330px;
    perspective: 1000px;
    position: relative;
    z-index: 5;
}

/* BOOK IMAGE */
.book-img {
    width: 100%;
    border-radius: 16px;
    transform: rotateY(-15deg);
    transition: 0.4s ease;
    box-shadow: 0 20px 35px rgba(0,0,0,0.25);
}

.book-block.reverse .book-img {
    transform: rotateY(15deg);
}

/* 3D HOVER EFFECT */
.book-img-3d:hover .book-img {
    transform: rotateY(0deg) scale(1.08);
    box-shadow: 0 25px 50px rgba(212,175,55,0.45);
}

/* GOLD SHIMMER */
.book-shimmer {
    position: absolute;
    top: -20%;
    left: -90%;
    width: 60%;
    height: 200%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
    transform: rotate(25deg);
    animation: shimmerMove 6s infinite ease-in-out;
}

@keyframes shimmerMove {
    0% { transform: translateX(0) rotate(25deg); opacity: 0; }
    40% { opacity: 1; }
    50% { transform: translateX(450%) rotate(25deg); opacity: 0; }
    100% { opacity: 0; }
}

/* REFLECTION */
.book-reflection {
    position: absolute;
    top: 102%;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    transform: scaleY(-1);
    opacity: 0.2;
    filter: blur(8px);
    border-radius: 16px;
}

/* TEXT SECTION */
.book-text {
    max-width: 500px;
}

.book-text h3 {
    font-family: var(--serif);
    font-size: 42px;
    color: var(--black);
    margin-bottom: 12px;
}

.book-text p {
    font-size: 18px;
    color: #4b4b4b;
    margin-bottom: 25px;
}
/* =========================================================
   LUXURY FEATURE SECTION
========================================================= */
.features-upgraded {
    background: var(--nude);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

/* FLOATING SPARKLES */
.feature-sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(212,175,55,1), rgba(212,175,55,0));
    border-radius: 50%;
    animation: featureSparkle 8s infinite ease-in-out;
    filter: blur(1px);
}
.f1 { top: 20%; left: 25%; animation-delay: 0s; }
.f2 { top: 55%; left: 70%; animation-delay: 2s; }
.f3 { top: 75%; left: 35%; animation-delay: 4s; }

@keyframes featureSparkle {
    0% { transform: translate(0,0) scale(0.8); opacity: 0.7; }
    50% { transform: translate(-12px, -18px) scale(1.2); opacity: 1; }
    100% { transform: translate(0,0) scale(0.8); opacity: 0.7; }
}

/* FEATURE PANEL */
.feature-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 100px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.1);
    border: 1px solid rgba(212,175,55,0.4);
    overflow: hidden;
}

/* Reverse layout */
.feature-panel.reverse {
    flex-direction: row-reverse;
}

/* Spotlight */
.feature-spotlight {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 450px;
    height: 450px;
    transform: translate(-50%,-50%);
    background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
    filter: blur(70px);
    animation: featureSpot 18s infinite linear;
    z-index: 0;
}

@keyframes featureSpot {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Image */
.feature-img img {
    width: 260px;
    border-radius: 18px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

/* Hover lift */
.feature-panel:hover .feature-img img {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 18px 40px rgba(212,175,55,0.35);
}

/* Text */
.feature-text {
    max-width: 510px;
    position: relative;
    z-index: 2;
}

.feature-text h3 {
    font-family: var(--serif);
    font-size: 46px;
    margin: 10px 0;
    color: var(--black);
}

.feature-text p {
    color: #444;
    font-size: 18px;
    margin-bottom: 22px;
}

/* Gold button */
.feature-panel .btn {
    border-color: var(--gold);
    color: var(--black);
}

.feature-panel .btn:hover {
    background: var(--gold);
    color: var(--black);
}
/* =========================================================
   PREMIUM SPEAKING & BOOKING SECTION
========================================================= */
.booking-upgraded {
    background: #F3E9E1;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    color: var(--black);
}

/* SOFT GOLD SPOTLIGHT */
.booking-spotlight {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%);
    filter: blur(110px);
    animation: spotRotate 18s infinite linear;
    z-index: 0;
}
@keyframes spotRotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg); }
}

/* FLOATING SPARKLES */
.booking-sparkle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(212,175,55,1), rgba(212,175,55,0));
    border-radius: 50%;
    animation: bookingSparkle 7s infinite ease-in-out;
    filter: blur(2px);
    z-index: 5;
}

.sp1 { top: 20%; left: 25%; animation-delay: 0s; }
.sp2 { top: 60%; left: 70%; animation-delay: 2s; }
.sp3 { top: 45%; left: 40%; animation-delay: 4s; }

@keyframes bookingSparkle {
    0%   { transform: translate(0,0) scale(0.8); opacity: 0.7; }
    50%  { transform: translate(-15px,-20px) scale(1.2); opacity: 1; }
    100% { transform: translate(0,0) scale(0.8); opacity: 0.7; }
}

/* TITLE */
.booking-title {
    position: relative;
    z-index: 10;
    color: var(--gold);
    font-size: 50px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* SUBTEXT */
.booking-subtext {
    position: relative;
    z-index: 10;
    width: 70%;
    margin: auto;
    text-align: center;
    font-size: 18px;
    color: black;
    margin-bottom: 60px;
    line-height: 1.7;
}

/* BOOKING CARD */
.booking-card {
    position: relative;
    z-index: 10;
    width: 60%;
    max-width: 680px;
    margin: auto;
    padding: 50px 40px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 20px;
    box-shadow: 0 20px 35px rgba(0,0,0,0.45);
}

/* FORM INPUTS */
.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.5);
    background: rgba(255,255,255,0.08);
    color: var(--black);
    font-size: 16px;
    transition: 0.3s ease;
}

/* FOCUS GLOW */
.booking-form input:focus,
.booking-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212,175,55,0.5);
    outline: none;
}

/* BUTTON */
.booking-btn {
    width: 100%;
    padding: 16px 0;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 8px;
    transition: 0.35s ease;
    font-weight: 600;
}
.booking-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .booking-card {
        width: 90%;
        padding: 35px;
    }
    .booking-subtext {
        width: 90%;
    }
}
/* =========================================================
   PREMIUM GOLD–BLACK FOOTER
========================================================= */
.footer-upgraded {
    background: white;
    color: var(--gold);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: var(--sans);
}

/* GOLD SPOTLIGHT */
.footer-spotlight {
    position: absolute;
    top: -200px;
    left: 50%;
    width: 1000px;
    height: 1000px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(212,175,55,0.20), transparent 70%);
    filter: blur(120px);
    animation: footerGlow 20s infinite linear;
    z-index: 0;
}
@keyframes footerGlow {
    from { transform: translateX(-50%) rotate(0deg); }
    to   { transform: translateX(-50%) rotate(360deg); }
}

/* FLOATING SPARKLES */
.footer-sparkle {
    position: absolute;
    width: 9px;
    height: 9px;
    background: radial-gradient(circle, var(--gold), rgba(212,175,55,0));
    border-radius: 50%;
    filter: blur(1px);
    animation: sparkleFloat 8s infinite ease-in-out;
    z-index: 2;
}
.sp1 { top: 30%; left: 20%; animation-delay: 0s; }
.sp2 { top: 60%; left: 75%; animation-delay: 2s; }
.sp3 { top: 45%; left: 50%; animation-delay: 4s; }

@keyframes sparkleFloat {
    0% { transform: translate(0,0) scale(0.8); opacity: 0.7; }
    50% { transform: translate(-12px,-18px) scale(1.1); opacity: 1; }
    100% { transform: translate(0,0) scale(0.8); opacity: 0.7; }
}

/* TITLE */
.footer-title {
    font-family: var(--serif);
    font-size: 38px;
    z-index: 3;
    position: relative;
    margin-bottom: 10px;
}

/* TAGLINE */
.footer-tagline {
    color: black;
    font-size: 16px;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

/* LINKS */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

.footer-link {
    color: var(--gold);
    font-size: 16px;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}

/* GOLD UNDERLINE ANIMATION */
.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: 0.35s ease;
}
.footer-link:hover::after {
    width: 100%;
}

/* DIVIDER */
.footer-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto 25px;
    opacity: 0.5;
}

/* COPYRIGHT */
.copy {
    color: black;
    font-size: 14px;
    position: relative;
    z-index: 3;
}

/* SCROLL TO TOP BUTTON */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--black);
    font-size: 26px;
    font-weight: bold;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(212,175,55,0.6);
    transition: 0.3s ease;
    z-index: 2000;
}
.scroll-top:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(212,175,55,0.9);
}
/* =========================================================
   HERO WITH FLARE + MARQUEE + GOLD DUST
========================================================= */
.hero-upgraded {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

/* Background Image */
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1);
    transform: scale(1.15);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.1) translateY(0); }
    100% { transform: scale(1.25) translateY(-22px); }
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.85));
}

/* GOLD SPOTLIGHT */
.hero-spotlight {
    position: absolute;
    top: 15%;
    left: 50%;
    width: 1100px;
    height: 1100px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(212,175,55,0.22), transparent 70%);
    filter: blur(100px);
    animation: spotlightSpin 20s infinite linear;
    z-index: 1;
}
@keyframes spotlightSpin {
    from { transform: translateX(-50%) rotate(0); }
    to   { transform: translateX(-50%) rotate(360deg); }
}

/* DRIFTING GOLD DUST */
.dust {
    position: absolute;
    width: 9px;
    height: 9px;
    background: radial-gradient(circle, rgba(212,175,55,1), rgba(212,175,55,0));
    border-radius: 50%;
    filter: blur(1px);
    animation: dustFloat 10s infinite ease-in-out;
    z-index: 5;
}
.d1 { top: 20%; left: 25%; animation-delay: 0s; }
.d2 { top: 50%; left: 70%; animation-delay: 2s; }
.d3 { top: 35%; left: 40%; animation-delay: 4s; }
.d4 { top: 70%; left: 20%; animation-delay: 1s; }
.d5 { top: 60%; left: 55%; animation-delay: 3s; }

@keyframes dustFloat {
    0% { transform: translate(0,0) scale(0.7); opacity: 0.6; }
    50% { transform: translate(-18px,-22px) scale(1.1); opacity: 1; }
    100% { transform: translate(0,0) scale(0.7); opacity: 0.6; }
}

/* LENS FLARE */
.lens-flare {
    position: absolute;
    top: 30%;
    left: 60%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255,255,255,0.33), transparent 70%);
    filter: blur(55px);
    mix-blend-mode: screen;
    animation: flareMove 12s infinite ease-in-out;
    z-index: 4;
}
@keyframes flareMove {
    0%   { transform: translate(0,0) scale(1); opacity: 0.4; }
    50%  { transform: translate(-40px,-35px) scale(1.35); opacity: 0.7; }
    100% { transform: translate(0,0) scale(1); opacity: 0.4; }
}

/* MARQUEE BACKGROUND TEXT */
.hero-marquee {
    position: absolute;
    top: 40%;
    left: 0;
    width: 200%;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 2;
    opacity: 0.06;
}
.hero-marquee span {
    display: inline-block;
    font-size: 90px;
    font-family: var(--serif);
    letter-spacing: 5px;
    background: linear-gradient(to right, var(--gold), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: marqueeScroll 18s linear infinite;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Content */
.hero-content {
    position: absolute;
    bottom: 18%;
    left: 8%;
    max-width: 650px;
    color: white;
    z-index: 10;
    animation: heroFade 1.5s ease forwards;
    opacity: 0;
}
@keyframes heroFade {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-upgraded h1 {
    font-size: 68px;
    font-family: var(--serif);
}
.hero-underline {
    width: 0;
    height: 3px;
    background: var(--gold);
    margin: 10px 0 20px;
    animation: underlineGrow 1.4s ease forwards;
}
@keyframes underlineGrow {
    to { width: 150px; }
}
.hero-upgraded p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #dfdfdf;
}

.hero-btn {
    background: var(--gold);
    padding: 15px 36px;
    border-radius: 8px;
    font-weight: bold;
    color: var(--black);
    transition: 0.3s ease;
}
.hero-btn:hover {
    background: white;
}
/* =========================================================
   LUXURY PREMIUM HEADER
========================================================= */

.header-upgraded {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,10,10,0.55);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212,175,55,0.22);
    z-index: 9999;
    transition: 0.35s ease;
}

/* ON SCROLL SHRINK EFFECT */
.header-upgraded.scrolled {
    padding: 12px 7%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(25px);
}

/* GOLD BACKLIGHT BEAM */
.header-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.6;
}

/* LOGO */
.logo {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    z-index: 10;
}

/* NAV */
.nav-links {
    display: flex;
    gap: 34px;
}

.nav-item {
    color: var(--white);
    font-size: 15px;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: 0.3s ease;
}

/* HOVER EFFECT (GOLD UNDERLINE) */
.nav-item::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: var(--gold);
    transition: 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

/* ACTIVE STATE (optional) */
.nav-item.active::after {
    width: 100%;
}

/* FLOATING SPARKLES */
.header-sparkle {
    position: absolute;
    width: 7px;
    height: 7px;
    background: radial-gradient(circle, var(--gold), rgba(212,175,55,0));
    border-radius: 50%;
    filter: blur(1px);
    animation: headerSparkle 6s infinite ease-in-out;
}

.hs1 { top: 14px; left: 20%; animation-delay: 0s; }
.hs2 { top: 20px; left: 80%; animation-delay: 2s; }

@keyframes headerSparkle {
    0% { transform: translate(0,0) scale(0.7); opacity: 0.7; }
    50% { transform: translate(-10px,-12px) scale(1.2); opacity: 1; }
    100% { transform: translate(0,0) scale(0.7); opacity: 0.7; }
}

/* MOBILE */
@media (max-width: 900px) {
    .nav-links {
        gap: 18px;
    }
    .logo {
        font-size: 22px;
    }
}
/* =========================================================
      FULL RESPONSIVE FIX PACK FOR MOBILE
========================================================= */

/* GLOBAL RESPONSIVE RESET */
@media (max-width: 991px) {
    body {
        overflow-x: hidden;
    }
}

/* ========================= HEADER ========================= */
@media (max-width: 991px) {
    .header-upgraded {
        padding: 15px 5%;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-item {
        font-size: 13px;
    }

    .logo {
        font-size: 20px;
    }
}

/* ========================= HERO ========================= */
@media (max-width: 768px) {
    .hero-upgraded {
        height: 100vh;
    }

    .hero-img {
        transform: scale(1.4);
    }

    .hero-content {
        bottom: 14%;
        left: 6%;
        width: 90%;
    }

    .hero-upgraded h1 {
        font-size: 36px;
        line-height: 1.15;
    }

    .hero-upgraded p {
        font-size: 17px;
    }

    .hero-btn {
        padding: 12px 28px;
    }

    .hero-marquee span {
        font-size: 45px;
    }
}

/* ========================= SEEN IN ========================= */
@media (max-width: 768px) {
    .logo-row img {
        width: 110px;
        height: 70px;
        margin: 10px 0;
    }
}

/* ========================= INTRO ========================= */
@media (max-width: 900px) {
    .intro-container {
        flex-direction: column;
        text-align: center;
    }

    .intro-photo-wrapper {
        width: 80%;
    }

    .intro-text h2 {
        font-size: 32px;
    }

    .large-body {
        font-size: 17px;
    }
}

/* ========================= FEATURE PANELS ========================= */
@media (max-width: 900px) {
    .feature-panel {
        flex-direction: column !important;
        text-align: center;
        padding: 40px 25px;
    }

    .feature-img img {
        width: 70%;
    }

    .feature-text h3 {
        font-size: 30px;
    }

    .feature-text p {
        font-size: 16px;
    }
}

/* ========================= STORY SECTION ========================= */
@media (max-width: 900px) {
    .story-inner {
        flex-direction: column;
        text-align: center;
    }

    .story-right img {
        width: 80%;
    }

    .story-left h2 {
        font-size: 34px;
    }
}

/* ========================= MUSIC ROW ========================= */
@media (max-width: 768px) {
    .music-row {
        padding: 20px 4%;
        gap: 30px;
    }

    .album-card {
        min-width: 240px;
        padding: 25px;
    }

    .album-card h4 {
        font-size: 18px;
        margin-top: 10px;
    }

    .album-card p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .play-btn {
        width: 48px;
        height: 48px;
    }

    .equalizer span {
        height: 8px;
    }
}

/* ========================= MAGAZINE CAROUSEL ========================= */
@media (max-width: 768px) {
    .carousel-item {
        width: 150px;
        height: 210px;
    }
    .carousel {
        width: 300px;
        height: 280px;
        transform: translateY(30px);
    }
}

/* ========================= BOOKS ========================= */
@media (max-width: 900px) {
    .book-block,
    .book-block.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 40px;
    }

    .book-img-3d {
        width: 60%;
    }

    .book-img {
        transform: rotateY(0deg) !important;
    }

    .book-text h3 {
        font-size: 32px;
    }

    .book-text p {
        font-size: 16px;
    }

    .book-btns a {
        margin: 6px 0;
    }
}

/* ========================= BRAND COLLABS ========================= */
@media (max-width: 768px) {
    .brand-marquee img {
        height: 50px;
    }

    .brand-marquee-wrapper {
        padding-top: 30px;
    }
}

/* ========================= VIDEO REEL ========================= */
@media (max-width: 768px) {
    .video-card {
        min-width: 260px;
        height: 180px;
    }

    .play-btn {
        width: 50px !important;
        height: 50px !important;
    }

    .video-card video {
        object-fit: cover;
    }

    .section-title {
        font-size: 32px !important;
    }
}

/* ========================= BOOKING ========================= */
@media (max-width: 900px) {
    .booking-card {
        width: 88%;
        padding: 30px;
    }

    .booking-title {
        font-size: 34px !important;
    }

    .booking-subtext {
        width: 90%;
        font-size: 16px;
    }
}

/* ========================= FOOTER ========================= */
@media (max-width: 768px) {
    .footer-title {
        font-size: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 14px;
    }

    .scroll-top {
        right: 15px;
        bottom: 20px;
    }
}

/* ========================= GENERAL SMALL SCREEN FIXES ========================= */
@media (max-width: 480px) {

    h1, h2, h3 {
        line-height: 1.2;
    }

    .btn {
        padding: 12px 26px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px !important;
    }

    .hero-upgraded h1 {
        font-size: 30px !important;
    }
}
/* =========================================================
   LUXURY ALBUM COVER SECTION
========================================================= */
.album-cover-section {
    background: var(--nude);
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.album-cover-row {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 20px 5%;
    scroll-behavior: smooth;
}

.album-cover-row::-webkit-scrollbar {
    height: 6px;
}
.album-cover-row::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* Album Cover Card */
.album-cover-card {
    min-width: 230px;
    text-align: center;
}

.album-cover-card img {
    width: 230px;
    height: 230px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    border: 2px solid rgba(212,175,55,0.4);
}

/* Hover Glow */
.album-cover-card:hover img {
    transform: scale(1.06);
    box-shadow: 0 18px 45px rgba(212,175,55,0.45);
    border-color: var(--gold);
}

/* Title */
.album-cover-card h4 {
    margin-top: 15px;
    font-size: 18px;
    font-family: var(--serif);
    color: var(--black);
}
.album-cover-card {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.album-cover-card h4 {
    color: var(--black);
}
/* =========================================================
   STACKED OVERLAPPING FEATURE CARDS
========================================================= */
.feature-stack-section {
    background: var(--nude);
    padding: 50px 0;
    position: relative;
}

.feature-stack-card {
    width: 80%;
    max-width: 950px;
    margin: 0 auto 80px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 40px;
    display: flex;
    gap: 40px;
    position: sticky;
    top: 120px;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* OVERLAP: each next card comes above */
.feature-stack-card:nth-child(1) { z-index: 3; }
.feature-stack-card:nth-child(2) { z-index: 2; }
.feature-stack-card:nth-child(3) { z-index: 1; }

/* Subtle lift on scroll */
.feature-stack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212,175,55,0.35);
}

/* IMAGE */
.fs-image img {
    width: 240px;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* TEXT */
.fs-text {
    flex: 1;
}

.fs-text h3 {
    font-size: 38px;
    font-family: var(--serif);
    margin-bottom: 10px;
    color: var(--black);
}

.fs-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
    .feature-stack-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .fs-image img {
        width: 70%;
        margin: auto;
    }

    .fs-text h3 {
        font-size: 30px;
    }
}
/* =========================================================
   STACKED OVERLAPPING FEATURE CARDS (FIXED)
========================================================= */
.feature-stack-section {
    background: var(--nude);
    padding: 10px 0;
    position: relative;
    overflow: visible; /* IMPORTANT */
}

.feature-stack-card {
    width: 80%;
    max-width: 950px;
    margin: 0 auto 60px;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    padding: 40px;
    display: flex;
    gap: 40px;
    position: sticky;
    top: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* CORRECT OVERLAP ORDER */
.feature-stack-card:nth-child(1) { z-index: 1; }
.feature-stack-card:nth-child(2) { z-index: 2; }
.feature-stack-card:nth-child(3) { z-index: 3; }

/* Hover lift */
.feature-stack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212,175,55,0.35);
}

/* IMAGE */
.fs-image img {
    width: 240px;
    border-radius: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* TEXT */
.fs-text {
    flex: 1;
}

.fs-text h3 {
    font-size: 38px;
    font-family: var(--serif);
    margin-bottom: 10px;
    color: var(--black);
}

.fs-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
    .feature-stack-card {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 30px;

    }

    .fs-image img {
        width: 75%;
        margin: auto;
    }

    .fs-text h3 {
        font-size: 30px;
    }
}
/* SOCIAL ICONS */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 25px 0 40px;
    z-index: 3;
    position: relative;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(212,175,55,0.12);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.35s ease;
    cursor: pointer;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    transition: 0.35s ease;
}

/* Hover effect */
.social-icon:hover {
    transform: scale(1.18);
    background: var(--gold);
    box-shadow: 0 0 18px rgba(212,175,55,0.8);
}

.social-icon:hover svg {
    fill: var(--black);
}

/* MOBILE */
@media (max-width: 768px) {
    .social-icon {
        width: 42px;
        height: 42px;
    }
    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}
/* =========================================================
   CINEMATIC STACK CARDS (HOLLYWOOD STYLE)
========================================================= */
.feature-stack-section {
    background: var(--nude);
    padding: 140px 0;
    position: relative;
    overflow: visible;
}

/* CARD BASE */
.feature-stack-card {
    width: 85%;
    max-width: 1000px;
    margin: 0 auto -60px; /* Overlap effect */
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(15px);
    border-radius: 26px;
    border: 1px solid rgba(212,175,55,0.35);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    padding: 45px;
    display: flex;
    align-items: center;
    gap: 45px;
    position: sticky;
    top: 150px;
    z-index: 1;
    transform: rotate(-0.6deg);
    transition: 0.4s ease;
    overflow: hidden;
}

/* Layered overlap order */
.feature-stack-card:nth-child(1) { z-index: 1; }
.feature-stack-card:nth-child(2) { z-index: 2; }

/* CARD HOVER */
.feature-stack-card:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 30px 80px rgba(212,175,55,0.45);
}

/* IMAGE */
.fs-image img {
    width: 260px;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.2);
    transform: translateZ(20px);
    transition: 0.3s ease;
}

/* IMAGE ZOOM ON HOVER */
.feature-stack-card:hover img {
    transform: scale(1.08) translateZ(30px);
}

/* TEXT BLOCK */
.fs-text {
    flex: 1;
    z-index: 3;
}

.fs-text h3 {
    font-size: 38px;
    font-family: var(--serif);
    color: var(--black);
    margin-bottom: 10px;
}

.fs-text p {
    color: #444;
    font-size: 17px;
    margin-bottom: 20px;
}

/* GOLD SPOTLIGHT */
.card-spotlight {
    position: absolute;
    right: -200px;
    top: -200px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(212,175,55,0.22), transparent 70%);
    filter: blur(80px);
    animation: rotateGlow 18s infinite linear;
    z-index: 0;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* GOLD SHIMMER SWEEP */
.card-shimmer {
    position: absolute;
    top: -50%;
    left: -80%;
    width: 180%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(20deg);
    animation: shimmerMove 6s infinite ease-in-out;
    z-index: 2;
}

@keyframes shimmerMove {
    0% { transform: translateX(-300%) rotate(20deg); opacity: 0; }
    35% { opacity: 1; }
    50% { transform: translateX(50%) rotate(20deg); opacity: 0; }
    100% { opacity: 0; }
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .feature-stack-card {
        flex-direction: column;
        text-align: center;
        padding: 35px;
        gap: 25px;
        transform: rotate(0deg);
    }

    .fs-image img {
        width: 70%;
        margin: auto;
    }

    .fs-text h3 {
        font-size: 30px;
    }
}
/* HERO VIDEO BACKGROUND */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    z-index: 0;
    animation: heroVideoZoom 18s ease-in-out infinite alternate;
}

/* Subtle cinematic zoom */
@keyframes heroVideoZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.25); }
}
/* MAKE LOGOS LARGE + CRISP */
.brand-marquee img {
    height: 90px;            /* bigger logos */
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges; 
    filter: drop-shadow(0 0 6px rgba(0,0,0,0.15)); /* optional clean pop */
    margin: 0 30px;
}

/* Increase spacing for better clarity */
.brand-marquee {
    display: flex;
    align-items: center;
    gap: 40px;
}
.brand-marquee img {
    background: transparent;
    padding: 5px;
}
.brand-marquee-wrapper {
    padding: 40px 0;
}

/* FIXED SMALLER MAGAZINE CAROUSEL */
.carousel-container {
    width: 100%;
    height: 360px !important;
    perspective: 1400px;
    position: relative;
    overflow: visible;
}

.carousel {
    width: 600px !important;
    height: 360px !important;
    position: relative;
    margin: auto;
    transform-style: preserve-3d;
    animation: rotateCarousel 25s infinite linear;
}

.carousel-item {
    position: absolute;
    width: 180px !important;
    height: 260px !important;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Adjust 3D circle spacing */
.carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(350px); }
.carousel-item:nth-child(2) { transform: rotateY(40deg) translateZ(350px); }
.carousel-item:nth-child(3) { transform: rotateY(80deg) translateZ(350px); }
.carousel-item:nth-child(4) { transform: rotateY(120deg) translateZ(350px); }
.carousel-item:nth-child(5) { transform: rotateY(160deg) translateZ(350px); }
.carousel-item:nth-child(6) { transform: rotateY(200deg) translateZ(350px); }
.carousel-item:nth-child(7) { transform: rotateY(240deg) translateZ(350px); }
.carousel-item:nth-child(8) { transform: rotateY(280deg) translateZ(350px); }
.carousel-item:nth-child(9) { transform: rotateY(320deg) translateZ(350px); }

@keyframes rotateCarousel {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(-360deg); }
}
/* =========================================================
   OVERRIDE DARK HERO + MAKE HERO BRIGHT NUDE
========================================================= */

/* NUDE BACKGROUND */
.hero-upgraded {
    background: #F3E9E1 !important;
}

/* REMOVE DARK OVERLAY + USE NUDE OVERLAY */


/* MAKE HERO IMAGE/VIDEO BRIGHT */
.hero-img, .hero-video {
    filter: brightness(1) !important;
}

/* Make text dark for nude theme */


/* Lighten marquee */
.hero-marquee span {
    opacity: 0.08 !important;
    mix-blend-mode: normal !important;
}

/* Soft sparkles for bright hero */
.lens-flare,
.dust {
    opacity: 0.5 !important;
}
/* =========================================================
   FIX STACKED CARD BUTTON OVERLAP ON RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    /* Give each card breathing room */
    .feature-stack-card {
        margin: 0 auto 90px !important;  /* more bottom spacing */
        padding-bottom: 60px !important; /* pushes button upward */

    }

 

    
}

/* EXTRA SMALL DEVICES FIX */
@media (max-width: 600px) {

    .feature-stack-card {
        margin: 0 auto 110px !important;  /* even more gap */
        padding-bottom: 70px !important;
    }
}
/* ============================================
   MAGAZINE CAROUSEL MOBILE FIX (SMALLER SIZE)
=============================================== */
@media (max-width: 768px) {

    /* SHRINK CAROUSEL CONTAINER */
    .carousel-container {
        height: 360px !important;
        perspective: 1000px;
    }

    /* SHRINK CAROUSEL WHEEL */
    .carousel {
        width: 260px !important;
        height: 260px !important;
    }

    /* SHRINK MAGAZINE COVERS */
    .carousel-item {
        width: 120px !important;
        height: 170px !important;
        border-radius: 12px;
        border-width: 1px;
    }

    /* SHRINK 3D DEPTH (translateZ) */
    .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(200px); }
    .carousel-item:nth-child(2) { transform: rotateY(40deg) translateZ(200px); }
    .carousel-item:nth-child(3) { transform: rotateY(80deg) translateZ(200px); }
    .carousel-item:nth-child(4) { transform: rotateY(120deg) translateZ(200px); }
    .carousel-item:nth-child(5) { transform: rotateY(160deg) translateZ(200px); }
    .carousel-item:nth-child(6) { transform: rotateY(200deg) translateZ(200px); }
    .carousel-item:nth-child(7) { transform: rotateY(240deg) translateZ(200px); }
    .carousel-item:nth-child(8) { transform: rotateY(280deg) translateZ(200px); }
    .carousel-item:nth-child(9) { transform: rotateY(320deg) translateZ(200px); }

    /* TEXT ABOVE CAROUSEL ADJUSTMENT */
    .mag-carousel-section .section-title {
        font-size: 26px !important;
        margin-bottom: 20px !important;
    }
}
