/* ==========================================================================
   CSS Variables & Component Overrides for Bootstrap
   ========================================================================== */
   :root {
    /* Color Palette Extracted from Mockup */
    --color-maroon: #4B0A0E;
    --color-maroon-light: #6a141a;
    --color-gold: #B8954F;
    --color-cream: #EBE5D1;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
}

.font-heading {
    font-family: var(--font-heading);
}

/* Background Utilities Overrides */
.custom-bg-gold { background-color: var(--color-gold); }
.custom-bg-maroon { background-color: var(--color-maroon); }
.custom-bg-cream { background-color: var(--color-cream); }

/* Text Color Overrides */
.gold-text { color: var(--color-gold) !important; }
.custom-text-maroon { color: var(--color-maroon) !important; }
.custom-text-maroon-light { color: var(--color-maroon-light) !important; }

/* Border Overrides */
.custom-border-maroon { border-color: var(--color-maroon) !important; }

/* Custom Typography Utilities */
.tracking-wider { letter-spacing: 1px; }

/* ==========================================================================
   Specific Layout Adjustments
   ========================================================================== */

/* Diamond Section Dividers */
.diamond {
    width: 8px;
    height: 8px;
    background-color: var(--color-maroon);
    transform: rotate(45deg);
    display: inline-block;
}
.diamond.gold { background-color: var(--color-gold); }
.diamond.lg { width: 14px; height: 14px; }

.section-title {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-maroon);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--color-gold);
    color: #fff;
    border: 1px solid var(--color-gold);
    border-radius: 2px;
    transition: all 0.3s;
}
.btn-primary-custom:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.btn-contact {
    border: 1px solid var(--color-gold);
    border-radius: 2px;
    color: var(--color-gold) !important;
    transition: all 0.3s;
}
.btn-contact:hover {
    background-color: var(--color-gold);
    color: #fff !important;
}

.btn-maroon-custom {
    background-color: var(--color-maroon);
    color: #fff;
    transition: background 0.3s;
}
.btn-maroon-custom:hover {
    background-color: #000;
    color: #fff;
}

/* Header Navbar specific */
.header {
    transition: all 0.3s ease;
}
.header.scrolled nav {
    background-color: rgba(75, 10, 14, 0.98) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.nav-logo {
    max-height: 50px;
}
.nav-link {
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.nav-link:hover {
    color: var(--color-gold) !important;
}

/* Hero Typography Shadows */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    font-family: var(--font-heading);
}

.mission-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-maroon);
    line-height: 1.6;
}

/* About Us Images overlap */
.img-tall {
    width: 60%;
    height: 85%;
    object-fit: cover;
    left: 0;
    top: 0;
    box-shadow: -15px 15px 0 var(--color-gold);
}
.img-wide {
    width: 65%;
    height: 60%;
    object-fit: cover;
    right: 0;
    bottom: 0;
}

/* Value Cards */
.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-top: 3px solid var(--color-gold);
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-10px);
}

/* Gallery image scale on hover */
.gallery-img {
    transition: transform 0.5s ease;
}
.gallery-img:hover {
    transform: scale(1.05);
}

/* Input Focus */
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-maroon);
}
