@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --bg: #FDFCFB;
    --dark: #121212;
    --gold: #B89E78;
    --ivory: #F8F5F2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--dark);
}

.serif {
    font-family: 'Cormorant Garamond', serif;
}

nav a {
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--gold);
}

.hero-bg img {
    animation: zoom 20s infinite alternate;
}

@keyframes zoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.btn-dark {
    background: var(--dark);
    color: white;
    padding: 14px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--gold);
}

.btn-light {
    border: 1px solid white;
    color: white;
    padding: 14px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: white;
    color: black;
}

.card img {
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.05);
}

footer {
    font-size: 9px;
    letter-spacing: 3px;
}
/* VISUALGPT MODAL */
.visualizer-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.visualizer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.visualizer-container {
    position: relative;
    background: white;
    max-width: 1100px;
    margin: auto;
    margin-top: 5vh;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.95);
}

/* Header */
.visualizer-header {
    display: flex;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid #eee;
}

.close-btn {
    font-size: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Body */
.visualizer-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    padding: 32px;
}

/* Controls */
.visualizer-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upload-box {
    border: 2px dashed #ccc;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.upload-box:hover {
    border-color: var(--gold);
}

.product-tabs {
    display: flex;
    gap: 10px;
}

.product-tabs button {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
}

.product-tabs button.active {
    background: var(--dark);
    color: white;
}

/* Preview */
.visualizer-preview {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

/* CTA */
.visualizer-cta {
    padding: 32px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Buttons */
.btn-dark.full {
    width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .visualizer-body {
        grid-template-columns: 1fr;
    }
}
.upload-box {
    border: 2px dashed #ccc;
    padding: 28px;
    text-align: center;
    cursor: pointer;
}

.product-tabs {
    display: flex;
    gap: 10px;
}

.product-tabs button {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    background: white;
}

.product-tabs button.active {
    background: #121212;
    color: white;
}

.visualizer-preview {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.room-img,
.overlay-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-img {
    opacity: 0.6;
}
.whatsapp-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
/* HAMBURGER */
.hamburger-line {
    width: 22px;
    height: 2px;
    background: #121212;
    transition: all 0.3s ease;
}

/* MOBILE MENU ANIMATION STATE */
.mobile-open {
    display: block;
}
/* ABOUT NAV STATES */
.about-nav-scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.about-nav-scrolled .nav-logo,
.about-nav-scrolled .nav-links-dark a {
    color: #121212;
}

.about-nav-scrolled .hamburger-line {
    background: #121212;
}
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Inter:wght@200;300;400;500&display=swap');

:root {
    --primary: #121212;
    --bg: #FDFCFB;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.serif {
    font-family: 'Cormorant Garamond', serif;
}

/* Custom Buttons */
.btn-dark {
    display: inline-block;
    padding: 18px 40px;
    background: var(--primary);
    color: white;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.4em;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-dark:hover {
    background: #2a2a2a;
    padding-left: 50px;
    padding-right: 50px;
}

.btn-outline {
    display: inline-block;
    padding: 18px 40px;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.4em;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-outline:hover {
    background: white;
    color: black;
    border-color: white;
}

/* Animations Helper */
.reveal {
    will-change: transform, opacity;
}

#slider-root {
    cursor: none; /* We can add a custom cursor here later */
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #d1d1d1; }
.thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.group:hover .thumb {
    opacity: 1;
}
/* THUMBNAILS INTERACTION */
/* THUMBNAILS */
.thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.thumb:hover {
    opacity: 1;
    transform: scale(1.25);
    border-color: #B89E78;
}

/* MAIN IMAGE ZOOM */
.main-img {
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.group:hover .main-img {
    transform: scale(1.03);
}
/* ==============================
   ABOUT PAGE – MOBILE NAV FIX
   (ADD ONLY – NO OVERRIDES REMOVED)
============================== */

/* Ensure About nav is visible before scroll */
#aboutNav {
    background: rgba(0, 0, 0, 0.95);
}

/* Keep correct contrast on mobile */
#aboutNav .nav-logo,
#aboutNav .nav-links-dark a {
    color: white;
}

/* Hamburger visibility on dark bg */
#aboutNav .hamburger-line {
    background: white;
}

/* Mobile menu must sit above nav */
#mobileMenu {
    z-index: 60;
}

/* iOS Safari fixed-nav touch fix */
#aboutNav {
    -webkit-transform: translateZ(0);
}
/* ==============================
   ABOUT PAGE – MOBILE MENU LINKS FIX
   (ADD ONLY)
============================== */

/* Force mobile menu text visible on About page */
body:has(#aboutNav) #mobileMenu a {
    color: #ffffff;
}

/* Improve tap visibility */
body:has(#aboutNav) #mobileMenu a:hover {
    color: #B89E78;
}
/* ==============================
   ABOUT PAGE – MOBILE MENU FALLBACK FIX
   (NO :has — ANDROID SAFE)
============================== */

/* Force mobile menu links visible using existing body class */
body.bg-black #mobileMenu a {
    color: #ffffff !important;
}

/* Hover / tap state */
body.bg-black #mobileMenu a:hover {
    color: #B89E78 !important;
}

/* Ensure menu container is visible */
body.bg-black #mobileMenu {
    background: #000;
}
/* ==============================
   MOBILE MENU – CLOSE ICON
============================== */

.menu-open .hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-open .hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
