:root {
    --color-gold: #D4AF37;
    --color-gold-hover: #AA8C2C;
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --color-slate-50: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-serif {
    font-family: 'Playfair Display', serif;
}

/* Navbar Styling */
.navbar {
    transition: all 0.3s ease;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Dark Mode Navbar (Initial State on Homepage) */
.navbar-dark-mode .navbar-brand,
.navbar-dark-mode .nav-link,
.navbar-dark-mode .btn-outline-light-custom {
    color: white !important;
}

/* Logo MADEN text: white on initial, dark on scroll */
.navbar-dark-mode .navbar-brand-text {
    color: white !important;
}

.navbar-scrolled .navbar-brand-text {
    color: var(--color-slate-900) !important;
}

.navbar-dark-mode .navbar-toggler {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Scrolled / Light State */
.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.navbar-scrolled .navbar-brand {
    color: var(--color-slate-900) !important;
}

.navbar-scrolled .nav-link {
    color: var(--color-slate-800) !important;
}

.navbar-scrolled .nav-link:hover,
.navbar-scrolled .nav-link.active {
    color: var(--color-gold) !important;
}

.navbar-scrolled .navbar-toggler {
    background-color: transparent;
    border: 1px solid #ddd;
}

/* Utilities */
.text-gold {
    color: var(--color-gold) !important;
}

.bg-gold {
    background-color: var(--color-gold) !important;
    color: white;
}

.bg-gold:hover {
    background-color: var(--color-gold-hover) !important;
    color: white;
}

.bg-dark-slate {
    background-color: var(--color-slate-900) !important;
    color: white;
}

.bg-dark-slate-lighter {
    background-color: var(--color-slate-800) !important;
    color: white;
}

.btn-gold {
    background-color: var(--color-gold);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline-light-custom {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
}

/* Image Utilities */
.img-wrapper-h250 {
    height: 250px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
}

.img-wrapper-h200 {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #e2e8f0;
}

.img-wrapper-h250 img,
.img-wrapper-h200 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-hoverable:hover .img-wrapper-h250 img,
.card-hoverable:hover .img-wrapper-h200 img {
    transform: scale(1.1);
}

.card-hoverable {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.card-hoverable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-gold);
}

.gradient-text {
    background: linear-gradient(135deg, #D4AF37 0%, #F5E089 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #D4AF37;
    /* Fallback */
}

/* WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: bounce-slow 3s infinite;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 1.5rem;
}