/* === GENERAL === */
:root {
    --bg-cream: #f3e9dc;
    --bg-alt: #ece0d1;
    /* Slightly darker cream for contrast sections */
    --burgundy: #691b2e;
    --charcoal: #1e2019;
    --black: #000500;
    --taupe: #847979;
    --gold: #d4af37;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondory: 'Cormorant Garamond', serif;
    --font-additional: 'Zalando Sans Expanded', sans-serif;
    --btn-primary: #8d0d3e;

    --site-max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === HERO === */
.hero-section {
    position: relative;
}

/* === NAVBAR === */
.custom-navbar {
    opacity: 0.8;
    position: relative;
    z-index: 100;
    background: #fff;
    border-radius: 60px;
    padding: 3px 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.logo {
    width: 150px;
    height: 40px;
}

.nav-link {
    color: var(--btn-primary) !important;
    font-weight: 600;
    margin: 0 15px;
    font-family: var(--font-additional);
}

.nav-link:hover {
    transform: scale(1.1);
}

/* Buttons */
.btn-primary {
    background: var(--burgundy);
    color: var(--bg-cream);
    padding: 12px 28px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--burgundy);
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--black);
}

.btn-text {
    color: var(--burgundy);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-text:hover,
.btn-text:focus-visible {
    color: var(--black);
}

.btn-text-link {
    color: var(--black);
    text-decoration: none;
}

/* .btn-primary-custom {
    background: var(--bg-cream);
    color: var(--burgundy);
    border-radius: 40px;
    padding: 14px 34px;
    font-weight: 700;
}

.btn-primary-custom:hover {
    background: #fff;
    color: var(--black);
} */

/* Footer */
.footer {
    background: var(--bg-alt);
    color: var(--charcoal);
    padding: 40px 5% 10px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.footer-title {
    font-family: var(--font-secondory);
    font-size: 3.5rem;
}

.footer-cell {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--black);
}

footer p {
    letter-spacing: 2px;
}

.footer-bottom {
    width: 100%;
    border-top: 1px solid var(--taupe);
    padding-top: 10px;
    text-align: center;
    color: var(--taupe);
    font-size: 0.8rem;
}

 .footer-icon-color {
    color: var(--burgundy)
 }

/* === MOBILE === */
@media(max-width:991px) {
    .custom-navbar {
        border-radius: 25px;
    }

    footer {
        gap: 30px;
    }
}

@media (max-width: 576px) {
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}