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

body {
    font-family: Arial, sans-serif;
    background-color: #111111;
    color: white;
}

.hero {
    min-height: 100vh;
    padding: 30px 7%;
    background-image: url("../images/huevos-rancheros.png");
    background-size: cover;
    background-position: center;
    position: relative;

   
}.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
z-index: 2;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.hero-content {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
z-index: 2;
}

.eyebrow {
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(55px, 10vw, 130px);
    letter-spacing: -3px;
    line-height: 0.9;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 20px;
    max-width: 500px;
    margin-bottom: 35px;
}

.hero-button {
    display: inline-block;
    padding: 16px 34px;
    background-color: white;
    color: #111111;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-button:hover {
    background-color: transparent;
    color: white;
    outline: 1px solid white;
}
.about {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 7%;
    background-color: #f5f1e8;
    color: #111111;
}

.about-content {
    max-width: 750px;
    text-align: center;
}

.section-label {
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 25px;
    font-weight: bold;
}

.about h2 {
    font-size: clamp(40px, 6vw, 75px);
    line-height: 1;
    margin-bottom: 30px;
}

.about p {
    font-size: 18px;
    line-height: 1.7;
}.featured {
    padding: 120px 7%;
    background-color: #111111;
    color: white;
}

.featured-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-header h2 {
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1;
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dish-card {
    background-color: #1c1c1c;
    overflow: hidden;
    transition: transform 0.3s ease;

}.dish-card:hover {
    transform: translateY(-8px);
}


.dish-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.dish-info {
    padding: 25px;
}

.dish-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.dish-info p {
    color: #cccccc;
    line-height: 1.5;
}.drinks {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 700px;
    background-color: #f5f1e8;
    color: #111111;
}

.drinks-image {
    position: relative;
    overflow: hidden;
}

.drinks-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.12)
    );
}

.drinks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.drinks-image:hover img {
    transform: scale(1.04);
}

.drinks-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
    max-width: 650px;
}

.drinks-content .section-label {
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 25px;
    font-weight: bold;
}

.drinks-content h2 {
    font-size: clamp(50px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.drinks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 480px;
}

.drinks-content .hero-button {
    background-color: #111111;
    color: white;
    width: fit-content;
}

.drinks-content .hero-button:hover {
    background-color: transparent;
    color: #111111;
    outline: 1px solid #111111;
}.location {
    min-height: 650px;
    padding: 120px 7%;
    background-color: #111111;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.location-content {
    max-width: 800px;
}

.location h2 {
    font-size: clamp(45px, 6vw, 80px);
    line-height: 1;
    margin-bottom: 60px;
}

.location-details {
    display: flex;
    justify-content: center;
    gap: 120px;
    margin-bottom: 50px;
}

.location-details h3 {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.location-details p {
    color: #cccccc;
    margin-bottom: 5px;
}.phone-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: white;
}
html {
    scroll-behavior: smooth;
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .navbar {
    z-index: 100;
}

    .featured {
        padding: 80px 5%;
    }

    .dish-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dish-card img {
        height: 320px;
    }

    .drinks {
        display: flex;
        flex-direction: column;
    }

    .drinks-image {
        width: 100%;
        height: 300px;
        min-height: 0;
    }

    .drinks-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .drinks-content {
        padding: 70px 8%;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
        position: relative;
        z-index: 10001;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        right: 20px;
        background-color: #111111;
        padding: 25px 30px;
        gap: 20px;
        z-index: 10000;
        min-width: 180px;
    }

    .nav-links.active a {
        color: white;
        text-decoration: none;
        display: block;
        position: relative;
        z-index: 10001;
        cursor: pointer;
    .map-container {
    margin: 40px auto 30px;
}

.map-container iframe {
    height: 350px;
}}

}.map-container {
    width: 100%;
    max-width: 900px;
    margin: 60px auto 40px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}