:root {
    --color-black: #0A0A0A;
    --color-gold: #B8860B;
    --color-gray: #2F2F2F;
    --color-green: #1A2421;
    --color-white: #FFFFFF;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-gold);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

/* Header */
header {
    padding: 2rem 0;
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.2em;
}

.logo span {
    color: var(--color-gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ccc;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-black);
    /* Fallback */
    background-image: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8)), url('../assets/images/hero.png');
    background-size: cover;
    background-position: center 20%;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #ddd;
    font-weight: 300;
}

/* Manifesto Section */
.manifesto-section {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--color-black);
}

.manifesto-text {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-gold);
}

.manifesto-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

/* Featured Collections */
.featured-collections {
    padding: 6rem 0;
    background-color: var(--color-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2rem;
    color: var(--color-white);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.collection-card {
    background-color: var(--color-black);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.collection-info {
    padding: 1.5rem;
    text-align: center;
}

.collection-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-gold);
}

.collection-info p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--color-black);
    padding: 4rem 0 2rem;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-motto {
    color: var(--color-gold);
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: #666;
}

.footer-copy {
    font-size: 0.8rem;
    color: #444;
}

/* Forms */
.contact-form-container {
    max-width: 600px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--color-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    background: var(--color-black);
    border: 1px solid #444;
    color: var(--color-white);
    font-family: var(--font-main);
}

.form-control:focus {
    border-color: var(--color-gold);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input {
    accent-color: var(--color-gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-white);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        gap: 0;
        z-index: 20;
    }

    .nav-links.active {
        left: 0;
        top: 0;
        /* Cover the header partially or fully if adjusted */
        height: 100vh;
        justify-content: center;
        padding-bottom: 70px;
        /* Offset for aesthetic */
    }

    .nav-links li {
        margin: 2.5rem 0;
    }
}