/* DwellMint Studio - Independent High-Contrast Theme */
:root {
    --brand-gold: #C5A059;
    --brand-black: #000000;
    --brand-white: #FFFFFF;
    --brand-muted: rgba(255, 255, 255, 0.6);
    
    --theme-bg: var(--brand-black);
    --theme-text: var(--brand-white);
    --theme-accent: var(--brand-gold);
    
    --box-bg: rgba(20, 20, 20, 0.95);
    --box-border: rgba(255, 255, 255, 0.1);
}

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

html {
    background-color: var(--brand-black);
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--theme-text);
    overflow-x: hidden;
    background-color: transparent !important;
}

.serif {
    font-family: 'Playfair Display', serif;
}

/* Global Background */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1; /* Above HTML/Body base, below sections */
    pointer-events: none;
    background: #000000;
}

/* Sections & Footer */
section, footer {
    position: relative;
    width: 100%;
    z-index: 10; /* Above the canvas */
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 15vh;
    background: transparent;
    z-index: 20; /* Hero content top priority */
}

.hero-headline {
    font-size: clamp(2.5rem, 8vw, 7rem);
    text-align: center;
    line-height: 1.1;
    z-index: 25;
    color: var(--brand-white);
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    max-width: 90%;
    position: relative;
}

/* USP Section */
.usp-section {
    padding: 150px 10%;
    background-color: transparent; /* Let background show through gaps */
    display: flex;
    justify-content: center;
}

.usp-box {
    background: #080808;
    border: 1px solid rgba(197, 160, 89, 0.25);
    padding: 48px; /* Reduced by 40% from 80px */
    border-radius: 40px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    color: var(--brand-gold);
}

.usp-box h2 {
    color: var(--brand-gold) !important;
}

.usp-box .theme-muted {
    color: rgba(197, 160, 89, 0.75) !important;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.usp-grid h4 {
    color: var(--brand-gold);
    letter-spacing: 0.25em;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Deck of Cards Carousel */
.carousel-section {
    padding: 100px 0 300px;
    background-color: transparent;
    overflow: visible;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-deck {
    position: relative;
    width: 450px;
    height: 600px;
    transform-style: preserve-3d;
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    background: #111;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.card:hover img {
    opacity: 1;
    transform: scale(1.02);
}

/* Utility */
.accent-text { color: var(--brand-gold); }
.theme-muted { color: var(--brand-muted); line-height: 1.6; }
