/* =========================
   BASE STYLES
   ========================= */
:root {
    --navy: #0a2533;
    --gold: #d4af37;
    --dark: #1a1a1a;
    --light-gray: #f8f9fa;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: #333;
    background: #fff;
    font-size: 1.02rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gold);
}

/* =========================
   NAVBAR
   ========================= */
.navbar {
    transition: all 0.4s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

//===============
/* NAVBAR - Logo */
.navbar-brand img {
    height: 68px;           /* Increased more */
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 4px;
}

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

/* Navbar scroll effect */
.navbar.scrolled {
    background-color: rgba(10, 37, 51, 0.98) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* =========================
   FOOTER
   ========================= */
   
footer {
    background: var(--navy);
    color: #ddd;
}

footer a {
    color: #ccc;
}

footer a:hover {
    color: var(--gold);
}

.footer-logo {
    height: 65px;
    width: auto;
    margin-bottom: 15px;
    opacity: 0.95;
}

/* Footer - Cleaner */
footer h5 {
    color: var(--gold);
    margin-bottom: 18px;
}

footer ul li {
    margin-bottom: 8px;
}

/* =========================
   UTILITIES
   ========================= */
.text-gold { color: var(--gold); }
.btn-gold {
    background-color: var(--gold);
    color: #000;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 4px;
}
.btn-gold:hover {
    background-color: #e5c45a;
    color: #000;
    transform: translateY(-2px);
}

.shadow-sm {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.rounded-3 {
    border-radius: 12px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 62px;
    height: 62px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    color: white;
}