*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #1a1108;
    --second-bg-color: #2c1810;
    --text-color: #f5e6d3;
    --main-color: #c67b4f;
    --accent-color: #e8a87c;
    --light-color: #fff8f0;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.heading {
    text-align: center;
    font-size: 4.5rem;
    margin-bottom: 5rem;
    font-family: 'Playfair Display', serif;
}

.heading span {
    color: var(--main-color);
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--main-color);
    border-radius: 4rem;
    font-size: 1.6rem;
    color: var(--bg-color);
    font-weight: 600;
    letter-spacing: 0.05rem;
    transition: 0.4s ease;
    cursor: pointer;
}

.btn:hover {
    background: var(--accent-color);
    box-shadow: 0 0 1.5rem var(--main-color);
    transform: translateY(-2px);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: rgba(26, 17, 8, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 0.1rem solid rgba(198, 123, 79, 0.2);
}

.logo {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo span {
    color: var(--main-color);
}

.navbar a {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-left: 3.5rem;
    transition: 0.3s;
    position: relative;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: 0.3s;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
    cursor: pointer;
}

/* ===== Hero ===== */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--second-bg-color) 100%);
}

.hero-content h3 {
    font-size: 3.2rem;
    font-weight: 400;
}

.hero-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    color: var(--main-color);
    margin: 1rem 0;
}

.hero-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--light-color);
    max-width: 55rem;
    margin-bottom: 3rem;
    opacity: 0.85;
}

.hero-img img {
    width: 30vw;
    filter: drop-shadow(0 0 3rem rgba(198, 123, 79, 0.4));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2rem); }
}

/* ===== About ===== */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    background: var(--second-bg-color);
}

.about-img img {
    width: 32vw;
    filter: drop-shadow(0 0 2rem rgba(198, 123, 79, 0.3));
}

.about-content {
    max-width: 60rem;
}

.about-content h2 {
    text-align: left;
}

.about-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--light-color);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.about-content strong {
    color: var(--main-color);
}

.about-content em {
    color: var(--accent-color);
    font-style: italic;
}

/* ===== Menu ===== */
.menu {
    background: var(--bg-color);
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 3rem;
}

.menu-item {
    background: var(--second-bg-color);
    padding: 3rem 2rem;
    border-radius: 2rem;
    text-align: center;
    border: 0.2rem solid rgba(198, 123, 79, 0.15);
    transition: 0.4s ease;
}

.menu-item:hover {
    border-color: var(--main-color);
    transform: translateY(-5px);
    box-shadow: 0 0 2rem rgba(198, 123, 79, 0.2);
}

.menu-icon {
    font-size: 5rem;
    color: var(--main-color);
    margin-bottom: 1.5rem;
}

.menu-item h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.menu-item p {
    font-size: 1.4rem;
    color: var(--light-color);
    opacity: 0.75;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.menu-item .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

/* ===== Location ===== */
.location {
    background: var(--second-bg-color);
}

.location-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.location-info {
    flex: 1;
}

.location-map {
    flex: 1;
}

.location-map iframe {
    width: 100%;
    height: 35rem;
    border-radius: 2rem;
    border: 0.2rem solid rgba(198, 123, 79, 0.2);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item i {
    font-size: 3rem;
    color: var(--main-color);
    min-width: 4rem;
    margin-top: 0.5rem;
}

.info-item h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.5rem;
    color: var(--light-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== Contact ===== */
.contact {
    background: var(--bg-color);
    text-align: center;
}

.contact-text {
    font-size: 1.8rem;
    color: var(--light-color);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.contact-social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
    height: 7rem;
    background: transparent;
    border: 0.2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 3.5rem;
    color: var(--main-color);
    transition: 0.5s ease;
}

.contact-social a:hover {
    background: var(--main-color);
    color: var(--bg-color);
    box-shadow: 0 0 2rem var(--main-color);
    transform: scale(1.1);
}

/* ===== Footer ===== */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: var(--second-bg-color);
}

.footer-text p {
    font-size: 1.4rem;
    opacity: 0.7;
}

.footer-iconTop a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem;
    background: var(--main-color);
    border-radius: 0.8rem;
    transition: 0.5s ease;
}

.footer-iconTop a:hover {
    box-shadow: 0 0 1rem var(--main-color);
}

.footer-iconTop a i {
    font-size: 2.4rem;
    color: var(--bg-color);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .header { padding: 2rem 3%; }
    section { padding: 10rem 3% 2rem; }
    .footer { padding: 2rem 3%; }
    .menu-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    #menu-icon { display: block; }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: var(--bg-color);
        border-top: 0.1rem solid rgba(198, 123, 79, 0.2);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
        display: none;
    }

    .navbar.active { display: block; }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    .hero { flex-direction: column; }
    .hero-content h1 { font-size: 4.5rem; }
    .hero-img img { width: 60vw; margin-top: 2rem; }

    .about { flex-direction: column-reverse; }
    .about-img img { width: 60vw; }

    .menu-container { grid-template-columns: 1fr; }

    .location-content { flex-direction: column; }
    .location-map iframe { height: 25rem; }
}

@media (max-width: 450px) {
    html { font-size: 50%; }
}
