@charset "UTF-8";

/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
    --gold-100: #fbf2c0;
    --gold-200: #f5df8b;
    --gold-300: #e3bc53;
    --gold-400: #d4af37; /* Base Gold */
    --gold-500: #b5952f;
    --gold-gradient: linear-gradient(135deg, var(--gold-200), var(--gold-400), var(--gold-500));
    --dark-bg: #0c0a09;
    --font-script: 'Great Vibes', cursive;
    --font-serif: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --glass-bg: rgba(12, 10, 9, 0.4);
    --glass-border: rgba(212, 175, 55, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden; /* No scroll, single page app feel */
    background-color: var(--dark-bg);
    font-family: var(--font-body);
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Background Engine (Video + Canvas)
   ========================================================================== */
.bg-engine {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.1) saturate(1.2);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(12, 10, 9, 0.2) 0%, rgba(12, 10, 9, 0.85) 100%);
}

.coffee-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

#particleCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.steam-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
}

/* ==========================================================================
   Immersive Main Container
   ========================================================================== */
.immersive-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2.5vh 2vw;
}

/* ==========================================================================
   Floating Controls
   ========================================================================== */
.floating-controls {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 50;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--gold-300);
    font-size: 1.1rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-400);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   Header Logo Area
   ========================================================================== */
.header-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2vh;
    animation: fadeInDown 1.2s ease-out forwards;
}

.logo-wrapper {
    position: relative;
    width: clamp(140px, 20vw, 220px);
}

.main-logo-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.8));
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

.sub-brand {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-200);
    margin-top: 10px;
    font-weight: 300;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* ==========================================================================
   Center Typography Area
   ========================================================================== */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(-2vh);
    animation: zoomInFade 1.5s ease-out 0.3s forwards;
    opacity: 0;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--gold-400);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold-100);
    margin-bottom: 25px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), inset 0 0 10px rgba(212,175,55,0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff3333;
    animation: blinkRed 1.5s infinite;
}

.typography-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.script-title {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--gold-200);
    font-weight: 400;
    line-height: 1;
    margin-bottom: -10px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    transform: rotate(-3deg);
}

.bold-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 8px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 5px 25px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.ornament-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0 20px;
    width: 60%;
    max-width: 300px;
}

.ornament-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.ornament-divider .leaf {
    color: var(--gold-300);
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.8));
}

.script-quote {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    font-weight: 400;
    text-shadow: 0 3px 15px rgba(0,0,0,0.9);
}

.action-area {
    margin-top: 35px;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: var(--gold-gradient);
    color: #120e0c;
    border-radius: 40px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.instagram-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.instagram-btn i {
    font-size: 1.3rem;
}

/* ==========================================================================
   Floating Seal
   ========================================================================== */
.floating-seal {
    position: absolute;
    top: 35%;
    right: 8%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(12, 10, 9, 0.9) 0%, rgba(6, 4, 3, 0.95) 100%);
    border: 2px dashed var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.8), inset 0 0 20px rgba(212,175,55,0.2);
    animation: floatSeal 5s ease-in-out infinite alternate, fadeInRight 1.5s ease-out forwards;
    opacity: 0;
    z-index: 20;
}

.seal-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.seal-content i {
    color: var(--gold-300);
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.seal-t1 {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-200);
}

.seal-t2 {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}

/* ==========================================================================
   Bottom Pillars Area
   ========================================================================== */
.bottom-area {
    width: 100%;
    max-width: 1100px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px 20px 20px;
    border-radius: 20px 20px 0 0;
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
    opacity: 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pillar:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold-400);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.p-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.pillar:hover .p-icon {
    background: var(--gold-gradient);
    color: #120e0c;
    transform: scale(1.1) rotate(5deg);
}

.p-text {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 1px;
    color: #e0e0e0;
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInDown {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes zoomInFade {
    0% { opacity: 0; transform: scale(0.9) translateY(-2vh); }
    100% { opacity: 1; transform: scale(1) translateY(-2vh); }
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes floatSeal {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes blinkRed {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .floating-seal {
        width: 100px;
        height: 100px;
        right: 4%;
    }
    .seal-content i { font-size: 1.2rem; }
    .seal-t1 { font-size: 0.75rem; }
    .seal-t2 { font-size: 0.55rem; }
    .bold-title { letter-spacing: 5px; }
}

@media (max-width: 768px) {
    html, body {
        overflow-y: auto; /* Allow scroll on smaller mobile if needed */
        overflow-x: hidden;
    }
    
    .immersive-container {
        height: auto;
        min-height: 100vh;
        padding: 3vh 4vw;
        justify-content: flex-start;
        gap: 4vh;
    }

    .floating-controls {
        top: 20px;
        right: 20px;
    }

    .header-logo {
        margin-top: 5vh;
    }

    .hero-center {
        transform: none;
        margin-top: 2vh;
    }
    
    .bold-title {
        letter-spacing: 3px;
    }

    /* Move Seal to center or hide/reposition */
    .floating-seal {
        position: relative;
        top: 0;
        right: 0;
        margin: 20px auto;
        width: 90px;
        height: 90px;
    }

    .seal-content i { font-size: 1.1rem; }
    .seal-t1 { font-size: 0.7rem; }
    .seal-t2 { font-size: 0.5rem; }

    .bottom-area {
        margin-top: auto;
        padding: 20px 10px 15px;
        border-radius: 15px 15px 0 0;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .pillar {
        padding: 12px;
    }

    .p-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .floating-controls {
        top: 15px;
        right: 15px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .coming-soon-badge {
        padding: 6px 14px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .instagram-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .script-title {
        font-size: 2.2rem;
    }
    
    .script-quote {
        font-size: 1.5rem;
    }
}
