/* Custom Variables */
:root {
    --primary-gold: #d4af37;
    --secondary-gold: #f4d03f;
    --dark-bg: #0d0d0d;
    --darker-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-light: #ffffff;
    --text-muted: #6c757d;
}

/* Global Styles */
body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background-color: rgba(13, 13, 13, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-gold) !important;
}

.navbar-nav .nav-link {
    color: var(--primary-gold) !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.dropdown-menu {
    background-color: var(--darker-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
    color: var(--primary-gold);
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--secondary-gold);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    padding: 120px 0 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-logo {
    max-width: 180px;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.hero-title-gold {
    color: var(--primary-gold);
}

.hero-title-white {
    color: #fff;
}

.hero-title br {
    line-height: 1;
}

.hero-title {
    font-family: 'League Spartan', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Section Titles */
.section-title {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-align: center;
}

/* Sections */
section {
    position: relative;
}

section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, transparent 20%, var(--primary-gold) 50%, transparent 80%, transparent 100%);
    opacity: 0.3;
}

/* Service Cards */
.service-card {
    background: var(--darker-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.service-card h5 {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.service-card p, .service-card ul, .service-card li {
    font-weight: 100;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Team Cards */
.team-card {
    background: var(--darker-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.team-card h5 {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.team-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

/* Background Alternation */
.bg-light {
    background-color: var(--darker-bg) !important;
}

/* Typography */
.lead {
    font-size: 1.25rem;
    font-weight: 100;
    color: var(--text-light);
}

p {
    /* No custom font-family, use Bootstrap default */
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 100px 0 60px 0;
    }
    
    .service-card,
    .team-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
}

h1, h2, h3, h4, h5, h6, .section-title, .hero-title {
    font-family: 'League Spartan', sans-serif;
}

.carousel .service-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-control-prev,
.carousel-control-next {
    width: 7%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.carousel .carousel-inner {
    align-items: center;
}

.retail-bg {
    background: url('images/retail.jpg') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.retail-overlay {
    background: rgba(0,0,0,0.3);
    pointer-events: none;
    z-index: 1;
}

#retail .container.position-relative {
    z-index: 2;
}

#retail .service-card {
    background: rgba(26, 26, 26, 0.95);
    /* keep cards readable over the background */
}

.medical-bg {
    background: url('images/medical.png') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.medical-overlay {
    background: rgba(0,0,0,0.3);
    pointer-events: none;
    z-index: 1;
}

#medical .container.position-relative {
    z-index: 2;
}

.government-bg {
    background: url('images/government.jpg') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.government-overlay {
    background: rgba(0,0,0,0.3);
    pointer-events: none;
    z-index: 1;
}

#government .container.position-relative {
    z-index: 2;
}

.section-spacer {
    background: #0d0d0d;
    width: 100%;
    height: 24px;
    display: block;
}

.team-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.team-desc {
    font-weight: 100;
} 