/* --- VARIABLES --- */
:root {
    --primary: #4B230B; /* Dark Brown */
    --accent: #D27008;  /* Deep Orange */
    --light-bg: #FAF9F6;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- BASE STYLES --- */
* { margin:0; padding:0; box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100vw; max-width: 100vw; }
body { font-family: 'Inter', sans-serif; background: var(--light-bg); color: #333; line-height: 1.6; position: relative; }
h1, h2, h3, .serif { font-family: 'Playfair Display', serif; }
.container { max-width: 1200px; margin: auto; padding: 0 6%; }
a { text-decoration: none; transition: var(--transition); }

/* --- SLEEK BUTTONS --- */
.btn-cta {
    background: var(--accent);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(210,112,8,0.3);
}
.btn-cta:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(210,112,8,0.5); }

/* --- HEADER & MOBILE NAV --- */
.navbar { background: var(--white); height: 90px; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.nav-flex { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.desktop-links a { margin-left: 30px; color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.desktop-links a:hover { color: var(--accent); }

/* Mobile Menu Button */
.menu-btn { display: none; font-size: 1.8rem; color: var(--primary); cursor: pointer; }

/* Mobile Menu Overlay (Screenshot 1 Match) */
.mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary);
    z-index: 9999; display: none; flex-direction: column; align-items: center; justify-content: center;
}
.mobile-overlay a { color: white; font-size: 2.2rem; margin: 15px 0; font-family: 'Playfair Display'; }

/* --- ZOOM & HOVER EFFECTS --- */
.zoom-wrapper { overflow: hidden; border-radius: 20px; box-shadow: var(--shadow); }
.zoom-wrapper img { width: 100%; transition: transform 0.8s ease; display: block; }
.zoom-wrapper:hover img { transform: scale(1.1); }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .desktop-links { display: none; }
    .menu-btn { display: block; }
}