body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: #17203A; 
    overflow-x: hidden; 
}

h1, h2, h3, .font-heading { 
    font-family: 'Libre Baskerville', serif; 
}

.hero-bg { 
    background: linear-gradient(90deg, #17203A 40%, rgba(23, 32, 58, 0.85) 100%), 
                url('images/hero-bg.png'); 
    background-size: cover;
    background-position: center;
}

.bg-fade-to-white {
    background: linear-gradient(to bottom, transparent 0%, #17203A 15%, #ffffff 100%);
}

.gold-gradient { 
    background: linear-gradient(135deg, #D4AF35 0%, #B8860B 100%); 
    position: relative;
    overflow: hidden;
}

.gold-gradient::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
    transform: rotate(45deg);
    transition: 0.5s;
    pointer-events: none;
}

.gold-gradient:hover::after {
    left: 100%;
    top: 100%;
}

.sharp-card { 
    border: 1px solid rgba(255,255,255,0.1); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}

.sharp-card:hover { 
    border-color: #D4AF35; 
    transform: translateY(-5px); 
}

/* Force sharp edges globally for that luxury look */
input, textarea, button, select, .card, div { 
    border-radius: 0 !important; 
}

.error-border { border-color: #ef4444 !important; }
.success-border { border-color: #22c55e !important; }
.form-input { transition: all 0.3s ease; }

/* Scroll Reveal Utility */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.nav-link { position: relative; cursor: pointer; }
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #D4AF35;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* Custom Section Dividers */
.section-divider {
    position: relative;
    height: 2px;
    width: 100%;
    background-color: rgba(212, 175, 53, 0.4);
    overflow: visible;
    z-index: 40;
}

.divider-block {
    position: absolute;
    height: 6px;
    top: -2px;
    background-color: #D4AF35;
    width: 15%; 
}

.pos-2-5 { left: 40%; } 
.pos-3-5 { left: 60%; }

/* Contact Popover Animation */
#contact-popover {
    display: none;
    animation: fadeInScale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInScale {
    from { opacity: 0; transform: translateY(-10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}