/* Custom Variables & Overrides */
:root {
    --primary-color: #0f172a;
    /* Navy */
    --accent-color: #d4af37;
    /* Gold */
}

html,
body {
    font-family: 'Outfit', sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
    overflow-x: hidden;
    width: 100%;
}

/* Color Utilities */
.bg-navy {
    background-color: var(--primary-color) !important;
}

.text-navy {
    color: var(--primary-color) !important;
}

.text-gold {
    color: var(--accent-color) !important;
}

.bg-gold {
    background-color: var(--accent-color) !important;
}

/* Glass Navbar */
.glass-nav {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Custom Gold Button */
.btn-gold {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #bfa13d;
    /* Darker gold */
    border-color: #bfa13d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-navy {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background-color: #0a0f1d;
    border-color: #0a0f1d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.4);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.hero-image-wrapper img {
    border: 3px solid rgba(255, 255, 255, 0.1);
    width: 60%;
    margin: 0 auto;
    display: block;
}

@media (min-width: 992px) {
    .hero-image-wrapper img {
        width: 75%;
    }
}

.tilt-effect {
    transition: transform 0.3s ease;
}

.tilt-effect:hover {
    transform: perspective(1000px) rotateY(-2deg) scale(1.02);
}

/* Cards & Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Cards */
.gallery-card {
    height: 250px;
    cursor: pointer;
}

.gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Divider */
.divider {
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    /* Above bottom bar on mobile */
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    z-index: 1050;
    /* Above Bootstrap modal/nav */
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 30px;
        /* Lower on desktop */
    }
}

/* Navbar Pills Customization */
.nav-pills .nav-link {
    color: var(--primary-color);
    background: #f1f5f9;
    font-weight: 600;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Pulse Animation */
.pulse-anim {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Section Spacing Utility */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* About Page Hero */
.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

/* About Page Counter Animation */
.about-counter {
    font-variant-numeric: tabular-nums;
}