html, body {
    margin: 0;
    padding: 0;
    color: #222;
    background: #222;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
h2, header, .order-btn, .discover-btn, .main-nav a {
    font-family: 'Doppio One', sans-serif;
}

/* Header fixed */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 1rem 2rem;
    background: rgba(0,0,0,0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    height: 60px;
}
.main-nav a {
    color: #77cbee;
    text-decoration: none;
    margin: 0 1rem;
    padding: 0.5rem;
    transition: color 0.3s, background 0.3s;
}
.main-nav a:hover {
    color: #fff;
    background: rgba(119,203,238,0.2);
}
.order-btn {
    background: #77cbee;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: #222;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}
.order-btn:hover {
    background: #5ba6c5;
}

/* Social links fixed */
.social-links {
    position: fixed;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}
.social-links img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.social-links img:hover {
    opacity: 1;
    box-shadow: 0 0 10px rgba(119,203,238,0.8);
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
}
.bg-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0; left: 0;
    z-index: -1;
}
.center-text {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: 3rem;
    color: #fff;
    background: rgba(0,0,0,0.3);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-align: center;
    transition: opacity 0.5s;
}
.discover-btn {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: #77cbee;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    color: #222;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(119,203,238,0.4);
    transition: background 0.3s, opacity 0.5s;
}
.discover-btn:hover {
    background: #5ba6c5;
    box-shadow: 0 0 10px rgba(119,203,238,0.8);
}

/* Section styles */
.section {
    padding: 4rem 2rem;
    background: #222;
    position: relative;
    z-index: 1;
}
.section h2 {
    color: #77cbee;
    text-align: center;
    margin-bottom: 2rem;
}

/* Menu image and decorations */
.menu-image-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.menu-image {
    width: 100%;
    border: 2px solid #77cbee;
    border-radius: 8px;
}
/* Gradient decoration */
.menu-image-container::before,
.menu-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(#77cbee, transparent 80%);
}
.menu-image-container::before {
    left: -20px;
}
.menu-image-container::after {
    right: -20px;
}

/* Contact columns */
.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    text-align: center;
}
.contact-columns div {
    flex: 1 1 200px;
    background: #333;
    padding: 1rem;
    border-radius: 8px;
    color: #fff;
}

/* Footer */
footer {
    position: relative;
    padding: 1rem;
    background: #111;
    color: #ccc;;
    text-align: center;
    font-size: 0.8rem;
    border-top: 2px solid #77cbee;
    z-index: 5;
}
