/* Variables */
:root {
    --gold-primary: #D4AF37;
    --gold-hover: #C5A028;
    --bg-main: #0F0F0F;
    --bg-darker: #050505;
    --bg-panel: #1A1A1A;
    --text-white: #F8F9FA;
    --text-muted: #ADB5BD;
    --border-gold: rgba(212, 175, 55, 0.4);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Base Stylings */
body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.brand-font {
    font-family: 'Playfair Display', serif;
}

.text-gold { color: var(--gold-primary) !important; }
.bg-gold { background-color: var(--gold-primary) !important; }
.bg-panel { background-color: var(--bg-panel) !important; }
.bg-darker { background-color: var(--bg-darker) !important; }
.border-gold { border: 1px solid var(--border-gold) !important; }

.section-padding { padding: 80px 0; }
.tracking-wide { letter-spacing: 2px; }

/* Buttons */
.btn-gold {
    background-color: var(--gold-primary);
    color: var(--bg-main);
    border: 1px solid var(--gold-primary);
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: var(--gold-hover);
    color: var(--bg-main);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background-color: var(--gold-primary);
    color: var(--bg-main);
}
.shadow-gold { box-shadow: var(--shadow-gold); }

/* Custom Navbar */
.custom-navbar {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary) !important;
}
.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--gold-primary) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1593702288056-cc156223ee1a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.6) 100%);
    z-index: 0;
}
.hero-content {
    padding-top: 80px; /* Offset for navbar */
}

/* Headers & Lines */
.gold-line {
    height: 3px;
    width: 60px;
    background-color: var(--gold-primary);
    border-radius: 2px;
}

/* Service Cards */
.service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--border-gold) !important;
}
.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.service-card:hover .icon-box {
    background-color: var(--gold-primary);
}
.service-card:hover .icon-box i {
    color: var(--bg-main) !important;
}

/* Team Section */
.team-card {
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.team-card img {
    transition: transform 0.5s ease;
    height: 350px;
    object-fit: cover;
}
.team-card:hover img {
    transform: scale(1.05);
}
.bg-gradient-dark {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* Gallery Section */
.gallery-img {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}
.gallery-img img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-img:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-img:hover .gallery-overlay {
    opacity: 1;
}

/* Booking Forms */
.bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.9);
}
.dark-input {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 4px;
}
.dark-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
    border-color: var(--gold-primary) !important;
}
/* Change dark input autofill background */
.dark-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px var(--bg-panel) inset !important;
    -webkit-text-fill-color: var(--text-white) !important;
}

.dark-input option {
    background-color: var(--bg-panel);
    color: var(--text-white);
}

/* Testimonials */
.testimonial-card {
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold) !important;
}

/* Footer Items */
.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icon:hover {
    background-color: var(--gold-primary);
    color: var(--bg-main);
    transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.btn-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    line-height: 60px;
    transition: transform 0.3s ease;
}
.btn-whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered load effect */
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--bg-darker);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 10px;
    }
}
