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

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

nav {
    background-color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    top: 0;
    z-index: 1000;
    position: static;
    
}

.logo {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 10px;
    text-size-adjust: 60%;
}
 .contact-btn{
    border-style: ridge;
    border-color: #745009;
 }

.nav-list a {
    color: white;
    text-decoration: none;
    padding: 10px 7px;
    transition: background-color 0.3s;
}

.nav-list a:hover {
    background-color: #575757;
}

.vid {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background-color: black;
    margin-top: 20px;
}

.vid video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    max-width: 90%;
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}



.container-sub {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 140px;
    margin-bottom: 140px;
}

.pizzatestvid, .ambiancetestvid, .pizzatestimg {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    margin: auto;
    animate__fadeInLeft {
        animation-duration: 15s;
        animation-fill-mode: both;
    }
}

video, img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.description {
    color: #fff;
    font-size: 16px;
    max-width: 400px;
    text-align: center;
    line-height: 1.4;
    margin: 20px auto;
    padding: 0 20px;
}

.map {
    width: 100%;
    aspect-ratio: 20/9;
    overflow: hidden;
    position: relative;
    margin-top: 60px;
    border-radius: 13px;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    padding: 50px 20px;
    text-align: center;
}

.res-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #745009;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: all 0.3s;
}

.res-btn:hover {
    transform: scale(1.05);
    background-color: #716141;
}

@media (max-width: 768px) {
   
    .nav-list {
        display: flex;
        font-size: 55%;
        flex: 1;
        
    }

    .logo {
        height: 26px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .pizzatestvid, .pizzatestimg, .ambiancetestvid {
        width: 70%;
        max-width: 300px;
        height: 420px;
    }

    .map {
        aspect-ratio: 16/9;
        margin-top: 40px;
    }
    .lang-switcher {
        width: 20%;
        font-size: 9px;
        flex-direction: flex-end;
        
    }
    .menu-image {
        width: 70%;
        height: 70%;
        border-radius: 12px;
    }
}

.Aboutus {
    background-color: black;
    color: white;
    padding: 20px;
    margin-bottom: 30px;
    margin-top: 20px;

}


.google-reviews {
    background-color: #111;
    padding: 60px 20px;
    text-align: center;
}

.google-reviews h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
}
.lang-switcher {
  padding: 8px 12px;
  border-radius: 5px;
  background-color: #333;
  color: white;
  border: none;
}


.lang-switcher button {
  margin: 5px;
  padding: 10px 15px;
  border: none;
  background-color: #333;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.lang-switcher button:hover {
  background-color: #555;
}
footer {
  background-color: #111;
  color: white;
  padding: 20px;
  text-align: center;
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  margin: 0 10px;
  display: inline-block;
}

.social-icon {
  width: 24px;
  height: 24px; 
  transition: opacity 0.3s;
}

.social-icon:hover {
  opacity: 0.7;
}


#contact-btn {
  position: relative;
  padding: 10px 20px;
  color: white;
  border: none;
  border-radius: 8px;
  background-color: transparent;
  z-index: 1;
  cursor: pointer;
}


/* Menu area improvements */
#menu {
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* wrapper keeps a max width for large screens while remaining fluid */
.menu-wrapper {
  width: 100%;
  max-width: 900px; /* change as desired */
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* responsive image: won't overflow, keeps aspect ratio */
.menu-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  display: block;
}

/* controls */
.menu-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.menu-controls button {
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  background-color: #745009;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: transform .12s ease, opacity .12s ease;
}

.menu-controls button:hover { transform: translateY(-2px); }
.menu-controls button:active { transform: translateY(0); }
.menu-controls button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* smaller screens adjustments (already have media queries but add tweak) */
@media (max-width: 480px) {
  .menu-wrapper { max-width: 420px; }
  .menu-controls button { padding: 9px 12px; font-size: 14px; }
}
