* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #111;
    color: white;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

/* HERO */

.hero {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 80vh;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BUTTON */

.btn {
    background: #c59d5f;
    color: black;
    padding: 12px 25px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}

/* MENU */

.menu {
    padding: 60px 20px;
    text-align: center;
}

.menu-list {
    max-width: 400px;
    margin: auto;
    margin-top: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #333;
}

/* GALLERY */

.gallery {
    padding: 60px 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* CONTACT */

.contact {
    text-align: center;
    padding: 80px 20px;
    background: #000;
}

/* DESKTOP */

@media(min-width:768px) {

    .hero {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

.back {
    color: #f3ebeb;
    text-decoration: none;
    background: #000000;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 500;
    border: 1px solid rgb(255, 255, 255);
    transition: .25s;
    cursor: pointer;
}

.back:hover {
    transform: translateY(-2px);
    background: #f5f3f3;
    color: #0e0101;
    cursor: pointer;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* MOBILE ADAPTIVE - max-width: 768px */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 1.2rem;
    }

    .hero-text p {
        font-size: 13px;
    }

    body {
        font-size: 14px;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-text {
        padding: 25px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .menu {
        padding: 40px 15px;
    }

    .menu-item {
        padding: 12px;
        font-size: 14px;
    }

    .gallery {
        padding: 40px 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-grid img {
        height: 180px;
    }

    .contact {
        padding: 50px 15px;
    }

    .header {
        padding: 10px;
    }

    .logo {
        font-size: 16px;
        white-space: nowrap;
    }

    nav a {
        font-size: 12px;
        margin-left: 5px;
        white-space: nowrap;
    }

    .back {
        font-size: 14px;
        padding: 6px 8px;
        white-space: nowrap;
        position: fixed;
        bottom: 50px;
        right: 20px;
        z-index: 9999;
    }
}