@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --primary: #B98D58;
    --secondary: #0F172B;
    --light: #F1F8FF;
    --dark: #0F172B;
    --dark-2: #000000;
    --text-color: #666565;
    --white: #ffffff;
    --font-primary: 'Heebo', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    /* color: var(--dark); */
    font-weight: 700;
}

.top-bar {
    background: var(--white);
    color: var(--primary);
    padding: 5px 0;
    text-align: center;
    position: sticky;

}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-social {
    display: flex;
    gap: 20px;

}

.top-bar-social a {
    color: var(--dark-2);
    font-size: 1.2rem;
}

.top-bar-social a:hover {
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;

}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* MOBILE – KEEP SAME ROW */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: row;
        /* THIS IS THE KEY */
        justify-content: space-between;
    }

    .top-bar-content p {
        font-size: 13px;
        text-align: left;
        margin-left: -5px;
        /* Adjusted from -20px */
    }

    .top-bar-social a {
        /* font-size: 14px; */
        margin-right: 0;
        text-align: left;

    }

    .top-bar-social {
        display: flex;
        gap: 15px;
        /* Reduced from 30px */

    }
}

@media (max-width: 480px) {
    .top-bar-content p {
        font-size: 11px;
    }

    .top-bar-social {
        gap: 10px;
    }

    .top-bar-social a {
        font-size: 1rem;
    }
}

/* Base Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: darken(var(--primary), 10%);
    opacity: 0.9;
}

.btn-dark {
    color: var(--white);
    background-color: var(--dark);
    border-color: var(--dark);
}

.btn-dark:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

#Explore:hover {
    color: black;
}

.video-section1 {
    width: 140px;
    height: auto;
    display: flex;
    align-items: center;
}

.video-section1 video {
    width: 100%;
    height: 96px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .video-section1 {
        width: 100px; /* Smaller width for mobile */
    }
    
    .navbar {
        height: auto;
        padding: 15px 0;
    }
}



/* Header / Navbar */
.navbar {
    background-color: black;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar{
    border-bottom: 3px solid var(--primary);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 90px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-btn {
    padding: 5px 20px;
    margin-left: 10px;
    color: var(--white) !important;
    margin-top: -4px;
    /* Ensure text remains white */
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--white);
    font-size: 1.5rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.section-title::before,
.section-title::after {
    /* position: absolute; */
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::before {
    left: -55px;
}

.section-title::after {
    right: -55px;
}

.section-header h1 {
    font-size: 2.5rem;
}


/* Footer */
.footer {
    background: radial-gradient(ellipse at center, #392211 0%, #181312 100%);
    color: #fff;
    padding: 40px 0 0 0;
    position: relative;
    height: auto;
    font-family: 'Times New Roman', serif;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    align-items: flex-start;
    gap: 40px;
    padding: 0 20px;
}

.footer-logo img {
    width: 300px;
    max-width: 100%;
    display: block;
}

.footer-about {
    flex: 1 1 330px;
    margin-left: 20px;
}

.footer-about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    filter: drop-shadow(0 1px 0 #f1f1ef);
}

.footer-about p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f8f8f8;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-icon {
    background: #131313;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.25rem;
    transition: background 0.2s;
    cursor: pointer;
}

.footer-icon:hover {
    background: #b4975a;
    color: #fff;
}

.footer-links-section {
    display: flex;
    gap: 80px;
}

.footer-links-group h3 {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 13px;
    /* filter: drop-shadow(0 1px 0 #ffd700); */
}

.footer-links-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links-group li {
    margin-bottom: 10px;
    color: #efefef;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: color 0.15s;
}

.footer-links-group li:hover,
.footer-links-group li a:hover {
    color: #ffd700;
    text-decoration: underline;
}

.footer-links-group li a {
    color: inherit;
    text-decoration: none;
}

.footer-bottom {
    border-top: 2px solid #ffffff;
    margin-top: 35px;
    background: var(--dark-2);
    padding: 18px 0 9px 0;
    color: #ccc;
    text-align: center;
    font-size: 1.08rem;
    letter-spacing: 0.1em;
}

.footer-bottom .brand {
    color: #ffd700;
}
.footer-bottom .office {
    color: #ff6600;
}

/* Responsive */
@media (max-width: 1000px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .footer-links-section {
        gap: 36px;
    }

    .footer-logo img {
        width: 220px;
    }

    .footer-about {
        margin-left: 0;
        margin-bottom: 20px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: black;
        border-top: 2px solid white;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .nav-btn {
        margin-left: 0 !important;
        /* Force reset on mobile */
        margin-top: 10px;
    }

    /* Footer Mobile Updates */
    .footer-content {
        text-align: center;
    }

    .footer-about {
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .footer-links-section {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        align-items: center;
    }

    .footer-links-group {
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 10px;
    }
}