/* ------------------------
   Base Styles
------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, serif;
    color: #333;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* ------------------------
   Hero Section
------------------------- */

.hero {
    height: 100vh;
    background:
        linear-gradient(
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.35)
        ),
        url("hero-image.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

/* ------------------------
   Navigation
------------------------- */

.navbar {
    width: 100%;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: absolute;
    top: 0;
    left: 0;

    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

/* ------------------------
   Hero Content
------------------------- */

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background: white;
    color: #333;
}

/* ------------------------
   Sections
------------------------- */

.section {
    padding: 6rem 2rem;
}

.light {
    background: #f5f5f5;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.section p {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

/* ------------------------
   Gallery
------------------------- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.placeholder {
    width: 100%;
    height: 100%;
    background: #ddd;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #666;
}

/* ------------------------
   Shop Button
------------------------- */

.shop-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.9rem 2rem;

    background: #5d4632;
    color: white;

    border-radius: 4px;
}

#shop {
    text-align: center;
}

/* ------------------------
   Footer
------------------------- */

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 2rem;
}

/* ------------------------
   Mobile Menu
------------------------- */

#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
}

/* ------------------------
   Mobile Layout
------------------------- */

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;
        background: rgba(0,0,0,0.95);

        flex-direction: column;
        align-items: center;

        max-height: 0;
        overflow: hidden;

        transition: max-height 0.3s ease;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    #menu-toggle:checked ~ .nav-links {
        max-height: 300px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }
}