@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Color calibrated to match your uploaded logo file */
    --primary-color: #11385B; 
    --secondary-color: #C8A74E;
    --bg-light: #F8F9FA;
    --text-dark: #333333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

/* Premium Navbar & Logo Tuning */
.navbar-custom {
    backgroundbackground-color: var(--primary-color) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0 !important;
}

.navbar-custom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-logo {
    height: 90px;              /* Increased height to offset the empty space in your image */
    width: auto;
    object-fit: contain;
    margin-top: -15px;         /* Pulls the image up to crop out transparent top padding */
    margin-bottom: -15px;      /* Pulls the image down to crop out transparent bottom padding */
    filter: brightness(0) invert(1) contrast(2); 
    transition: var(--transition-smooth);
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-custom .nav-link:hover, 
.navbar-custom .nav-link.active {
    color: var(--secondary-color) !important;
}

/* Luxury Buttons */
.btn-gold {
    background-color: var(--secondary-color);
    color: #ffffff;
    border: 1px solid var(--secondary-color);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border-radius: 0px;
    padding: 12px 28px;
}
.btn-gold:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* --- Robust Hero Slider Constraints --- */
.hero-slider-section {
    position: relative;
    height: 75vh;              /* Explicit viewing window height */
    min-height: 550px;         /* Prevents breaking on smaller screens */
    background-color: #0b1e32; /* Rich dark fallback color so text remains visible */
    overflow: hidden;
}

.heroSwiper {
    height: 100%;
    width: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Guarantee the dark overlay covers everything */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(11, 38, 66, 0.75); /* Brand color dark tint overlay */
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2; /* Forces text to display cleanly ABOVE the dark overlay */
}

