/* =============================================
   Sineen Haute Couture - Premium Design System
   Version: 3.0 | Cleaned & Conflict-Free
   ============================================= */

/* ---- CSS Variables ---- */
:root {
    --sineen-gold: #c5a059;
    --sineen-gold-dark: #a88a4d;
    --sineen-black: #050505;
    --sineen-dark: #0a0a0a;
    --sineen-white: #ffffff;
    --sineen-grey: #a0a0a0;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---- Base Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--sineen-black) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    padding-top: 88px;
}

/* Ensure any theme wrappers or containers also show black edges */
#main,
#content,
.site-content,
.entry-content,
.sineen-ecosystem {
    background-color: transparent !important;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.sineen-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0.65;
}

/* When hero-video is a div (image fallback) */
div.hero-video {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 80px);
    font-weight: 300;
    color: #fff;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--sineen-gold);
    display: inline-block;
    padding-bottom: 15px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-sineen {
    display: inline-block;
    padding: 13px 38px;
    border: 1px solid var(--sineen-gold);
    color: var(--sineen-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
}

.btn-sineen:hover,
.btn-sineen:focus {
    background: var(--sineen-gold);
    color: #000;
    text-decoration: none;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-padding {
    padding: 120px 0;
    background-color: transparent;
    position: relative;
}

/* Subtle Royal Divider */
.section-padding:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 160, 89, 0.2), transparent);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: var(--sineen-gold) !important;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 300;
}

.section-subtitle {
    color: var(--sineen-gold);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
}

/* Dark Sections */
.dark-section,
.dark-bg {
    background-color: var(--sineen-dark) !important;
    color: var(--sineen-white) !important;
}

.dark-section .section-title,
.dark-bg .section-title {
    color: var(--sineen-gold) !important;
}

.dark-section p,
.dark-bg p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dark-section .text-muted,
.dark-bg .text-muted {
    color: #888 !important;
}

.text-gold {
    color: var(--sineen-gold) !important;
}

/* ============================================
   LUXURY CARDS
   ============================================ */
.luxury-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    aspect-ratio: 2 / 3;
    background: #1a1a1a;
    border: 1px solid rgba(197, 160, 89, 0.12);
    display: block;
    text-decoration: none;
}

.luxury-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.luxury-card:hover img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    opacity: 0;
    transition: var(--transition);
    text-align: left;
}

.luxury-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3,
.card-overlay h4 {
    color: #fff !important;
    font-size: 1.1rem !important;
    margin: 0 0 5px;
}

.card-overlay p {
    color: var(--sineen-gold) !important;
    font-size: 0.75rem !important;
    letter-spacing: 2px;
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--sineen-black);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    font-weight: 300;
}

.footer img.footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 30px;
    filter: brightness(1.1);
}

.footer-title {
    color: var(--sineen-gold);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    transition: 0.3s;
}

.footer-link:hover {
    color: var(--sineen-gold);
    padding-left: 5px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--sineen-gold);
}

/* ============================================
   BANNER SECTIONS (Collection Pages)
   ============================================ */
.collection-banner {
    min-height: 55vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0 80px;
}

.collection-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.45));
}

.collection-banner .container {
    position: relative;
    z-index: 1;
}

.collection-banner h1 {
    color: var(--sineen-gold);
    font-size: clamp(36px, 5vw, 70px);
    font-weight: 300;
    margin-bottom: 20px;
}

.collection-banner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-title {
        font-size: clamp(30px, 8vw, 50px);
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 50px 0;
    }
}