@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
    --bg-light: #F5F2EB;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FAF8F5;
    --bg-footer: #120E0C;
    --text-dark: #1F1A17;
    --text-muted: #5C524A;
    --text-footer: #E6E1DA;
    --gold-primary: #A67C37;
    --gold-light: #D9C39E;
    --gold-dark: #7A5A23;
    --gold-gradient: linear-gradient(135deg, #A67C37 0%, #D9C39E 50%, #7A5A23 100%);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --nav-height: 85px;
    --border-gold: rgba(166, 124, 55, 0.3);
    --shadow-soft: 0 15px 35px rgba(31, 26, 23, 0.08);
    --shadow-gold: 0 15px 35px rgba(166, 124, 55, 0.25);
}

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

html, body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-body);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 9px;
}
::-webkit-scrollbar-track {
    background: #120E0C;
}
::-webkit-scrollbar-thumb {
    background: #3A322C;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Typography & Utilities */
.text-gold {
    color: var(--gold-primary);
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-heading {
    font-family: var(--font-heading);
}

/* Redesigned Solid Navbar - High Contrast (#FDFBF7 + Gold Border) */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: #FDFBF7;
    border-bottom: 2px solid var(--gold-primary);
    box-shadow: 0 4px 20px rgba(31, 26, 23, 0.06);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    transition: all 0.3s ease;
}

.navbar-brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    gap: 12px;
}

.nav-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.brand-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
}

.brand-text-container .brand-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.brand-text-container .brand-subtitle {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1px;
}

.brand-text-container.light .brand-title {
    color: #FFFFFF;
}

.brand-text-container.light .brand-subtitle {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-gold-outline {
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 0.65rem 1.6rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
    cursor: pointer;
}

.btn-gold-outline:hover {
    background: var(--gold-primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-gold-solid {
    background: var(--gold-gradient);
    color: #FFFFFF;
    padding: 0.85rem 2.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 6px 20px rgba(166, 124, 55, 0.3);
    display: inline-block;
}

.btn-gold-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(166, 124, 55, 0.45);
    color: #FFFFFF;
}

/* Image classes - Pure natural floating transparency without CSS masks */
.floating-item,
.zigzag-image,
.product-main-img,
.grid-card-img {
    filter: drop-shadow(0 20px 30px rgba(31, 26, 23, 0.08));
    transition: transform 0.5s ease;
}

/* REDESIGNED HIGH-CONTRAST DARK ESPRESSO FOOTER (#120E0C) */
.footer-custom {
    background: var(--bg-footer);
    border-top: 2px solid var(--gold-primary);
    padding: 5rem 4rem 2rem;
    margin-top: 5rem;
    color: var(--text-footer);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #C2B8AD;
    font-size: 0.95rem;
    max-width: 340px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-bottom: 1.4rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #E6E1DA;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #A3998E;
    font-size: 0.88rem;
}

/* Base Container */
.main-wrapper {
    min-height: calc(100vh - var(--nav-height));
    padding-top: var(--nav-height);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar-custom {
        padding: 0 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .navbar-custom {
        padding: 0 1rem;
    }
    .nav-links {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}