/*
Theme Name: TimeCode Luxury
Description: Platinum Edition - White, Gold & Charcoal Theme
Version: 3.1 (Master Stable + Luxury Optimized)
*/

/* --- 1. LUXURY VARIABLES & RESET --- */
:root {
    --gold: #c5a059;
    --gold-hover: #b08d45;
    --black: #111111;
    --charcoal: #222222;
    --white: #ffffff;
    --grey: #f4f4f4;
    
    --font-head: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-btn: 'Montserrat', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 15px 40px rgba(197, 160, 89, 0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--white);
    color: var(--charcoal);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- 2. TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- 3. BUTTONS & FLOATING ELEMENTS --- */
.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 15px 35px;
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
}

/* UPDATE: Floating WhatsApp Gold Specialist */
.wa-floating-gold {
    position: fixed;
    bottom: 30px;
    right: 25px;
    background: linear-gradient(135deg, #a67c00 0%, #ffbf00 50%, #a67c00 100%);
    color: #000 !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.wa-floating-gold:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-gold);
}

/* --- 4. HEADER & NAV --- */
.luxury-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* --- 5. WATCH CARDS (LUXURY ARCH OPTIMIZED) --- */
.watch-card {
    background: var(--white);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    text-align: center;
}

.watch-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: #eee;
    z-index: 2;
}

/* UPDATE: Gaya Arch (Kubah) untuk gambar jam */
.watch-card-image {
    width: 100%;
    height: auto;
    border-radius: 180px 180px 15px 15px; /* Bentuk Arch Luxury */
    border: 1.5px solid var(--gold);
    padding: 10px;
    background: var(--white);
    transition: all 0.5s ease;
}

.watch-card:hover .watch-card-image {
    border-color: var(--black);
    box-shadow: var(--shadow-gold);
}

/* --- 6. POP-UP IMAGE BALANCE --- */
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 15px;
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    max-width: 500px;
    width: 95%;
    background: #fff;
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.3);
    animation: zoomIn 0.4s ease-out;
}

/* --- 7. COUNTDOWN CLEAN SILVER LOOK --- */
.countdown-section {
    background: #f8f8f8 !important;
    padding: 40px 20px !important;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.countdown-timer {
    color: var(--black) !important;
    font-family: var(--font-head);
    font-size: 36px !important;
    font-weight: 300 !important;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.timer-unit {
    font-size: 12px;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-top: -5px;
    letter-spacing: 1px;
}

/* --- 8. ANIMATIONS (REVEAL LOGIC) --- */
@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- 9. RESPONSIVE (MOBILE) --- */
@media screen and (max-width: 768px) {
    .watch-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .watch-card-image {
        border-radius: 140px 140px 15px 15px; /* Arch lebih kecil sikit di mobile */
    }

    .wa-floating-gold {
        padding: 10px 18px;
        font-size: 10px;
        bottom: 20px;
        right: 15px;
    }
}