/* ==========================================================================
   MAJID ZONE - PREMIUM LUXURY ARCHITECTURE STYLESHEET (MINIFIED DEPLOYMENT)
   ========================================================================== */

:root {
    --bg-deep: #050505;
    --bg-canvas: #0d0d0d;
    --gold-primary: #dfba6b;
    --gold-gradient: linear-gradient(135deg, #f5e2b3 0%, #d4af37 50%, #aa7c11 100%);
    --text-light: #f5f5f5;
    --text-muted: #a6a6a6;
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
    --glow: 0 0 25px rgba(212, 175, 55, 0.25);
    --transition: all .4s cubic-bezier(.25, 1, .5, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none !important; /* Forces global luxury trailing cursor usage */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-light);
    font-family: var(--font-sans);
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 50%, #161616 0%, #050505 100%);
    min-height: 100vh;
}

/* --- TRENDING MODERN CUSTOM CURSOR --- */
#custom-cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

#custom-cursor-blur {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(223, 186, 107, 0.4);
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, background-color .3s, border-color .3s;
    backdrop-filter: blur(1px);
}

.cursor-grow {
    width: 60px !important;
    height: 60px !important;
    background-color: rgba(212, 175, 55, 0.08);
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* --- KINETIC INFINITY TEXT MOVING BANNER --- */
.marquee-container {
    overflow: hidden;
    background: #000;
    border-top: 1px solid rgba(223, 186, 107, 0.2);
    border-bottom: 1px solid rgba(223, 186, 107, 0.2);
    position: relative;
    z-index: 10;
    display: flex;
    white-space: nowrap;
    padding: 14px 0;
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    animation: continuousScroll 25s linear infinite;
}

.marquee-track span {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    padding: 0 20px;
}

.marquee-track span em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold-primary);
}

/* --- NAVIGATION BLUR HEADER --- */
header {
    background-color: rgba(5, 5, 5, 0.75);
    border-bottom: 1px solid rgba(223, 186, 107, 0.05);
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(15px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-item {
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(223, 186, 107, 0.3);
}

/* --- BRAND HEADER HUB --- */
.brand-header {
    text-align: center;
    padding: 50px 20px 10px;
}

.brand-header img {
    max-width: 260px;
    height: auto;
    animation: logoBreath 6s ease-in-out infinite, fadeInDown 1.2s ease-out;
    transition: transform .5s ease;
}

/* --- BULLETPROOF ANIMATED BRAND NAME CONFIGURATION --- */
.animated-brand-name {
    font-family: 'Cinzel', serif !important;
    font-size: 2.8rem !important;
    letter-spacing: 6px !important;
    margin-top: 25px !important;
    margin-bottom: 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    user-select: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Structural flexboxes to enforce true premium background color text clips */
.animated-brand-name .word {
    display: inline-flex !important;
    position: relative !important;
    white-space: nowrap !important;
    background: linear-gradient(90deg, #f5e2b3 0%, #d4af37 25%, #ffffff 50%, #d4af37 75%, #aa7c11 100%) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: luxuryShimmer 8s linear infinite !important;
}

.animated-brand-name .word:first-child {
    margin-right: 20px !important;
}

.animated-brand-name .letter {
    display: inline-block !important;
    -webkit-text-fill-color: transparent !important;
    animation: cinematicFloat 4s ease-in-out infinite !important;
}

/* Fluid mathematical delay loops to secure uniform staggered floating physics */
.animated-brand-name .word:nth-child(1) .letter:nth-child(1) { animation-delay: 0.1s !important; }
.animated-brand-name .word:nth-child(1) .letter:nth-child(2) { animation-delay: 0.2s !important; }
.animated-brand-name .word:nth-child(1) .letter:nth-child(3) { animation-delay: 0.3s !important; }
.animated-brand-name .word:nth-child(1) .letter:nth-child(4) { animation-delay: 0.4s !important; }
.animated-brand-name .word:nth-child(1) .letter:nth-child(5) { animation-delay: 0.5s !important; }

.animated-brand-name .word:nth-child(2) .letter:nth-child(1) { animation-delay: 0.6s !important; }
.animated-brand-name .word:nth-child(2) .letter:nth-child(2) { animation-delay: 0.7s !important; }
.animated-brand-name .word:nth-child(2) .letter:nth-child(3) { animation-delay: 0.8s !important; }
.animated-brand-name .word:nth-child(2) .letter:nth-child(4) { animation-delay: 0.9s !important; }

.animated-brand-name:hover .letter {
    animation-duration: 1.5s !important; /* Speeds up letter dance velocity on hover focus */
}

/* --- CATEGORIES MATRIX PLATFORM --- */
.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 90px;
    text-align: center;
}

.experience-intro {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 5px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 60px;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    justify-items: center;
    align-items: center;
}

.portal-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-orbit {
    position: absolute;
    top: -12px; left: -12px; right: -12px; bottom: -12px;
    border: 1px dashed rgba(223, 186, 107, 0.3);
    border-radius: 50%;
    pointer-events: none;
    transition: var(--transition);
}

.portal-wrapper:nth-child(odd) .portal-orbit { animation: spinClockwise 30s linear infinite; }
.portal-wrapper:nth-child(even) .portal-orbit { animation: spinCounterClockwise 25s linear infinite; }

.portal-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(223, 186, 107, 0.2);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.9);
    transition: var(--transition);
    z-index: 2;
}

/* Image Collection Backdrops */
.p-shoes { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1655095690206-2ff62cbd5235?auto=format&fit=crop&w=500&q=80'); }
.p-makeup { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=500&q=80'); }
.p-perfume { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1624613533305-28d421d70875?auto=format&fit=crop&w=500&q=80'); }
.p-packs { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?auto=format&fit=crop&w=500&q=80'); }
.p-agri { background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1599599810769-bcde5a160d32?auto=format&fit=crop&w=500&q=80'); }
.p-soon { background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1509198397868-475647b2a1e5?auto=format&fit=crop&w=500&q=80'); }

.portal-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.portal-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.portal-action {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-primary);
    opacity: 0.7;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: var(--transition);
}

/* Category Hover Trigger Physics */
.portal-wrapper:hover .portal-circle {
    transform: scale(1.04);
    border-color: var(--gold-primary);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.4), 0 15px 35px rgba(212, 175, 55, 0.2);
}

.portal-wrapper:hover .portal-orbit {
    transform: scale(1.1);
    border: 1px solid var(--gold-primary);
    box-shadow: var(--glow);
}

.portal-wrapper:hover .portal-icon {
    transform: translateY(-4px);
    color: #fff;
}

.portal-wrapper:hover .portal-action {
    opacity: 1;
    letter-spacing: 2px;
    border-color: var(--gold-primary);
}

/* Disabled Teaser Sphere Rules */
.p-disabled { cursor: not-allowed !important; }
.p-disabled:hover .portal-circle, .p-disabled:hover .portal-orbit { transform: none !important; box-shadow: none !important; border-color: rgba(223,186,107,0.1) !important; }

/* --- ASYNCHRONOUS OVERLAY INTERFACES --- */
.layer-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.layer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.layer-window {
    background: var(--bg-canvas);
    border: 1px solid rgba(223, 186, 107, 0.15);
    max-width: 750px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 45px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.layer-overlay.active .layer-window {
    transform: scale(1);
}

.layer-close {
    position: absolute;
    top: 25px; right: 25px;
    font-size: 1.2rem;
    color: var(--text-muted);
    background: none;
    border: none;
    transition: var(--transition);
}

.layer-close:hover {
    color: var(--gold-primary);
    transform: rotate(90deg);
}

.layer-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Contact Module Forms Minimal Setup */
.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(223, 186, 107, 0.3);
    padding: 10px 0;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--gold-primary);
}

.rev-row {
    border-left: 2px solid var(--gold-primary);
    padding-left: 20px;
    margin-bottom: 25px;
}

/* --- FOOTER & MATRIX CONNECTIONS --- */
footer {
    background-color: #030303;
    padding: 50px 20px 30px;
    border-top: 1px solid rgba(223, 186, 107, 0.08);
    text-align: center;
}

.social-matrix {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.social-vector {
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.social-vector:hover {
    color: var(--gold-primary);
    transform: translateY(-4px);
    text-shadow: 0 5px 10px rgba(212, 175, 55, 0.3);
}

.footer-rights {
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- GPU ANIMATION TRACK KERNELS --- */
@keyframes continuousScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes spinClockwise { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes spinCounterClockwise { 0% { transform: rotate(360deg); } 100% { transform: rotate(0deg); } }
@keyframes fadeInDown { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } }

@keyframes logoBreath {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(212,175,55,0.05)); }
    50% { transform: scale(1.02); filter: drop-shadow(0 0 15px rgba(212,175,55,0.18)); }
}

@keyframes cinematicFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes luxuryShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* --- ADAPTIVE GRAPHIC RESPONSIVENESS ENGINE --- */
@media (max-width: 992px) {
    .portal-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 650px) {
    .portal-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; } /* Kept clean on viewports underneath standard smartphone thresholds */
    .layer-window { padding: 25px; }
    .layer-title { font-size: 1.6rem; }
    .animated-brand-name { font-size: 1.9rem !important; letter-spacing: 4px !important; }
}