/* ------------------------------
   Import Google Fonts
-------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

/* ------------------------------
   Global
-------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    color: #f5f5f5;
    font-family: 'Montserrat', sans-serif;

    /* Default padding for fixed header & footer */
    padding-top: 95px;      /* Header height */
    padding-bottom: 70px;   /* Footer height */
}

/* Mobile fix: more padding when menu expands */
@media (max-width: 991px) {
    body {
        padding-top: 180px !important; /* Prevent menu overlap */
    }
}

/* ------------------------------
   Typography
-------------------------------- */
h1, h2, h3, h4, h5, h6, .cinematic-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #ffffff;
}

.section-title {
    color: #d4af37;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.team-heading {
    border-bottom: 1px solid #d4af37;
    padding-bottom: 10px;
    margin-bottom: 20px;
    width: 100%;
}

/* ------------------------------
   Navbar
-------------------------------- */
.navbar {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: #f5f5f5;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #d4af37;
}

/* ------------------------------
   Footer
-------------------------------- */
footer {
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

footer p {
    color: #aaa;
}

.social-icon {
    display: inline-block;      /* ensures proper spacing */
    margin: 0 10px;             /* spacing between icons */
    transition: transform 0.3s; /* smooth hover effect */
}

.social-icon img {
    display: block;             /* removes inline gaps */
    width: 32px;                /* adjust size */
    height: 32px;
}

.social-icon:hover img {
    transform: scale(1.1);      /* slight zoom on hover */
}


/* ------------------------------
   Home Section (Video Background)
-------------------------------- */
#home {
    height: 100vh;
    min-height: 600px;
    color: white;
    position: relative;
    overflow: hidden;
}

#home-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
}

#home .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* ------------------------------
   Sections
-------------------------------- */
section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.bg-darker {
    background-color: #0a0a0a;
}

/* ------------------------------
   Team Members
-------------------------------- */
.team-member img {
    border: 3px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.1);
    border-color: #d4af37;
}

.team-member p {
    color: #aaa;
}

/* ------------------------------
   Map Responsive
-------------------------------- */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border: 1px solid #333;
}

.map-responsive iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
}

/* ------------------------------
   Forms
-------------------------------- */
.form-control {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
}

.form-control:focus {
    background-color: #333;
    border-color: #d4af37;
    color: #fff;
    box-shadow: none;
}

.form-control::placeholder {
    color: #888;
}

.btn-outline-light {
    border-color: #d4af37;
    color: #d4af37;
    transition: 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #000;
}
