/* Base Reset & Fonts */
:root {
    --primary-gold: #D4AF37;
    --primary-gold-dim: #b6932b;
    --secondary-silver: #E5E4E2;
    --bg-dark: #050505;
    --bg-card: rgba(30, 30, 30, 0.6);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 5px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    /* Increased to fill the header */
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-silver);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Slider */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* No background image anymore */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align to left */
    text-align: left;
    /* Align text left */
    padding-left: 10%;
    /* Add spacing from left */
    z-index: 2;
    /* Content above overlay */
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
    /* Stronger left gradient */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
    /* Limit width */
    animation: fadeInUp 1s ease forwards;
}

.content h1 {
    font-size: 4rem;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    /* Stronger shadow */
    margin-bottom: 10px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.content h2 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 400;
}

.content p {
    font-size: 1.2rem;
    color: var(--secondary-silver);
    margin-bottom: 40px;
}

.btn-gold {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, var(--primary-gold-dim), var(--primary-gold));
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 1.2rem;
}

.slider-controls button:hover {
    background: var(--primary-gold);
    color: #000;
}

#prevBtn {
    left: 20px;
}

#nextBtn {
    right: 20px;
}

/* Sections Common */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
}

.separator-gold {
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    margin: 0 auto 20px;
}

.section-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services */
.services {
    background-color: #080808;
    position: relative;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.service-card:hover::before {
    height: 100%;
}

.service-card .icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #333;
    cursor: pointer;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '\f00e';
    /* Search icon from FA */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--primary-gold);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#media-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#media-container img,
#media-container video {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}

.close-lightbox:hover {
    color: var(--primary-gold);
}

.nav-btn {
    background: transparent;
    border: none;
    color: var(--primary-gold);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 10px;
}

.nav-btn:hover {
    color: var(--text-white);
    transform: scale(1.2);
}

.lightbox-counter {
    color: var(--text-gray);
    margin-top: 20px;
    font-size: 1.2rem;
}

/* Brands */
.brands {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    text-align: center;
}

.brands h4 {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.brand-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    color: #444;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.brand-list span:hover {
    color: var(--secondary-silver);
}

/* Footer */
footer {
    background: #020202;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    color: var(--text-white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--primary-gold);
}

.footer-col ul li {
    margin-bottom: 15px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li i {
    color: var(--primary-gold);
}

.footer-col p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-logo {
    height: 160px;
    margin-bottom: 35px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-gold);
}

.social-icons a i {
    color: var(--text-white);
}

.social-icons a:hover i {
    color: #000;
}

.bottom-bar {
    border-top: 1px solid #111;
    text-align: center;
    padding: 20px 0;
    color: #555;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 90px;
        flex-direction: column;
        background: #000;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--primary-gold);
    }

    .nav-links.active {
        right: 0;
    }

    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col {
        text-align: center !important;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul {
        align-items: center !important;
    }

    .footer-col ul li {
        justify-content: center;
    }

    .footer-col ul li a {
        justify-content: center !important;
    }

    /* Mobile Brands */
    .brand-list {
        gap: 20px;
        font-size: 1.2rem;
    }

    /* Mobile Hero Slider Fix */
    .slide {
        padding: 0 20px;
        justify-content: center;
        text-align: center;
    }

    .content {
        padding: 0;
        width: 100%;
    }

    .content h1 {
        font-size: 2.2rem;
        word-wrap: break-word;
    }

    .slider-controls button {
        top: auto;
        bottom: 100px;
        /* Position below text */
        transform: none;
    }

    #prevBtn {
        left: 30px;
    }

    #nextBtn {
        right: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}