/* --- 1. Global Setup & Variables --- */
:root {
    --gold: #C5A059;
    --dark: #1A1A1A;
    --black: #000000;
    --light: #f4f4f4;
    --white: #ffffff;
    --gray: #888;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 2. Navigation (Fixed & Responsive) --- */
.navbar {
    background: var(--black);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

/* --- 3. Hero & Content Sections --- */
.hero,
.slider-container {
    height: 80vh;
    width: 100%;
    position: relative;
}

.sub-hero {
    background: var(--dark);
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 4px solid var(--gold);
}

.container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* --- 4. Grid & Product Cards --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    background: var(--white);
    transition: var(--transition);
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: #eee;
    margin-bottom: 15px;
}

/* --- 5. Forms & Buttons --- */
input,
textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    font-family: inherit;
}

.btn {
    background: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--white);
    box-shadow: 0 0 0 2px var(--gold) inset;
}

/* --- 6. Footer --- */
.main-footer {
    background: var(--black);
    color: var(--gray);
    padding: 60px 0 20px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.8rem;
}

/* --- 7. Mobile Menu & Responsive Queries --- */
.menu-toggle {
    display: none;
}

@media screen and (max-width: 960px) {
    .menu-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        position: absolute;
        top: 80px;
        left: -100%;
        opacity: 0;
        transition: all 0.5s ease;
        background: var(--dark);
        padding: 20px 0;
        z-index: 10;
    }

    .nav-links.active {
        left: 0;
        opacity: 1;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 15px;
        width: 100%;
        display: block;
    }

    .menu-toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: var(--transition);
        background: var(--white);
        display: block;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media screen and (max-width: 480px) {

    .hero h1,
    .slide h1 {
        font-size: 2rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .container {
        padding: 15px;
        margin: 20px auto;
    }
}