:root {
    --nude: #F5EFE6;
    --beige: #FAF8F5;
    --gold: #C2A878;
    --gold-hover: #a88d5e;
    --dark: #2C3539;
    --gray-light: #F8F9FA;
    --text-muted: #6c757d;
    --white: #FFFFFF;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.text-dark-custom { color: var(--dark); }
.text-muted-custom { color: var(--text-muted); line-height: 1.8; }
.text-gold { color: var(--gold); }
.bg-nude { background-color: var(--nude); }
.bg-beige { background-color: var(--beige); }

.border-gold { border-color: var(--gold) !important; }

.divider {
    height: 2px;
    width: 60px;
    background-color: var(--gold);
}

.placeholder-img {
    background-color: #e9ecef;
    min-height: 400px;
    width: 100%;
}

.btn-primary-custom {
    background-color: var(--gold);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--gold-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 168, 120, 0.3);
}

.btn-outline-custom {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--gold);
    color: var(--white);
}

.badge-custom {
    background-color: rgba(194, 168, 120, 0.1);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

#hero {
    min-height: 90vh;
    background: linear-gradient(to bottom, var(--beige) 0%, var(--white) 100%);
    padding-top: 5rem;
}

.card-custom {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    background-color: var(--white);
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05) !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--nude);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.cta-box {
    border-top: 4px solid var(--gold);
}

input.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(194, 168, 120, 0.25);
}

.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*LOGO-HEADER*/
.logo-main {
    transition: height 0.3s ease;
}

.nav-link-custom {
    position: relative;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.nav-link-custom:hover {
    color: var(--gold) !important;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: 5px;
    left: 15px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link-custom:hover::after {
    width: calc(100% - 30px);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .nav-link-custom::after {
        display: none;
    }
}