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

  body {
    background: #f7f4ef;
    font-family: "Poppins", sans-serif;
    color: #8f3f21;
  }

  .container {
    max-width: 900px;
margin: auto;
  }

  .brand {
    text-align: center;
    margin-bottom: 20px;
    z-index: 999;
  }

  .brand span {
    display: inline-block;
    border: 2px solid #8f3f21;
    padding: 10px 28px;
    border-radius: 999px;
    font-weight: 500;
  }

  .hero {
    text-align: center;
    margin-bottom: 50px;
    margin-top: -40px;
  }

  .hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 6rem;
    font-weight: 300;
    line-height: 0.9;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2);
  }

  .hero h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 12rem;
    font-weight: 400;
    line-height: 0.8;
    text-shadow: 3px 5px 8px rgba(143, 63, 33, 0.25);
  }

  .menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 20px;
  }

  .section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: center;
    scroll-margin-top: 90px;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2);
  }

  .item {
    background:#ffffff;
    border-radius:14px;
    padding:16px 18px;
    margin-bottom:18px;

    

    transition:.25s;
    border: 2px solid #822711;
    box-shadow: 10px 10px 3px rgba(0, 0, 0, 0.1);
  }

  .item:hover{
    transform:translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.12);
}

  .item-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .item-name {
    font-weight: 600;
    font-size: 1rem;
  }

  .item-price {
    font-weight: 600;
  }

  .item-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 3px;
  }

  /* --- Footer Layout Adjustments --- */
.footer-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(143, 63, 33, 0.2);
  }
  
  .contact {
    display: flex;
    justify-content: space-between;
    gap: 60px; /* Spacious separation on desktop */
    width: 100%;
    max-width: 800px; /* Spreads beautifully across the layout width */
  }
  
  .contact-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
  }
  
  .contact-item {
    display: flex;
    align-items: center; /* Vertically aligns image/icon with text */
    gap: 15px; /* Keeps the icon tightly next to its text */
    font-size: 0.95rem;
  }
  
  .footimg {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
  }
  
  .contact-item p {
    margin: 0;
    text-align: left;
    line-height: 1.4;
  }
  
  /* --- Mobile Responsiveness --- */
  @media (max-width: 768px) {
  
  /* 1. Prevent giant shapes from breaking mobile width layouts */
  html, body {

    width: 100%;
  }

  /* 2. Scale down the giant hero titles so they fit on small screens */
  .hero {
    margin-top: -30px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 3.7rem; /* Scaled down from 6rem */
  }

  .hero h2 {
    font-size: 6.2rem; /* Scaled down from 12rem */
  }



  /* 3. Scale down the decorative side circles so they match mobile viewports */
  .scroll-shape {
    width: 140px;  /* Smaller size for mobile screens */
    height: 160px;
  }

  .left-shape {
    left: -80px;  /* Tucked in tightly to prevent layout stretching */
  }

  .right-shape {
    right: -80px; /* Tucked in tightly to prevent layout stretching */
  }

  /* 4. Layout Constraints */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 10px 15px;
    margin: 0 auto;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  /* 5. Footer handling */
  .contact {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
    width: 100%;
  }

  .contact-column {
    width: 100%;
  }
}

/* ==========================================================================
   NEW LAPTOP & TABLET VIEWPORT FIX (Between 769px and 1100px)
   ========================================================================== */
@media (min-width: 769px) and (max-width: 1100px) {
  .container {
    max-width: 90%; /* Keeps content away from the edges on small laptops */
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 4.5rem; /* Slightly reduced for medium screens */
  }

  .hero h2 {
    font-size: 9rem; /* Slightly reduced for medium screens */
  }

  .left-shape {
    left: -180px; /* Adjusting side shapes slightly so they don't overlap menu boxes */
  }

  .right-shape {
    right: -180px;
  }
}
  html{
    scroll-behavior:smooth;
}

html {
    scroll-behavior: smooth;
  }
  
  /* --- ΚΕΝΤΡΙΚΟΣ ΚΑΝΟΝΑΣ NAVBAR (Για όλες τις οθόνες) --- */
  .menu-nav {
    position: -webkit-sticky; /* Για υποστήριξη σε Safari (iPhone) */
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 15px;
    margin-bottom: 40px;
    background: rgba(247, 244, 239, 0.96);
    backdrop-filter: blur(12px);
    z-index: 9999; /* Κρατάει το navbar πάνω από τους κύκλους και τα πιάτα */
  }
  
  .menu-nav::-webkit-scrollbar {
    display: none;
  }
  
  .menu-nav a {
    text-decoration: none;
    color: #8f3f21;
    background: white;
    padding: 10px 16px;
    border-radius: 50%;
    font-size: .9rem;
    font-weight: 500;
    transition: .25s;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.15);
  }
  
  .menu-nav a:hover {
    background: #b28474;
    color: white;
    transform: translateY(-2px);
  }
  
  .navimg {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
  }

@media (max-width: 380px) {
    .menu-nav {
      padding: 8px 10px; /* reduce padding */
      gap: 8px;          /* reduce gap between icons */
    }
  
    .menu-nav a {
      padding: 6px 10px; /* smaller clickable area */
    }
  
    .navimg {
      width: 36px;       /* smaller icons */
      height: 36px;
    }
  }
  
  @media (max-width: 455px) and (min-width: 381px) {
    .menu-nav {
      padding: 8px 10px; /* reduce padding */
      gap: 8px;          /* reduce gap between icons */
    }
  
    .menu-nav a {
      padding: 6px 10px; /* smaller clickable area */
    }
  
    .navimg {
      width: 45px;       /* smaller icons */
      height: 45px;
    }
  }


a {
    color: #90280f;
}

.scroll-shape {
  position: fixed;
  width: 230px;
  height: 260px;
  background-color: #bd644e;
  border-radius: 50%;
  /* Remove top: 50%; */
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}

  
  .left-shape {
    left: -150px; /* half outside the viewport on the left */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 50%);
  }
  
  .right-shape {
    right: -150px; /* half outside the viewport on the right */
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%, 100% 50%);
  }
  




  /* ========================================= */
/*              PAGE ANIMATIONS              */
/* ========================================= */

/* Hero */
.hero{
  opacity:0;
  transform:translateY(-30px);
  transition:all 2s ease;
}

.hero.show{
  opacity:1;
  transform:translateY(0);
}

/* Navigation */

.menu-nav{
  opacity:0;
  transform:translateY(-20px);
  transition:all .4s ease;
}

.menu-nav.show{
  opacity:1;
  transform:translateY(0);
}

/* Section titles */

.section-title{

  opacity:0;
  transform:translateY(25px);
  transition:all .35s ease;
}

.section-title.show{

  opacity:1;
  transform:translateY(0);

}

/* Cards */

.item{

  opacity:0;
  transform:translateY(25px);

  transition:
    opacity .35s ease,
    transform .35s ease,
    box-shadow .2s ease;

}

.item.show{

  opacity:1;
  transform:translateY(0);

}

/* Hover */

.item:hover{

  transform:translateY(-5px);

  box-shadow:0 12px 28px rgba(0,0,0,.12);

}

/* Images at the end of sections */

.section-image{

  width:100%;
  
  margin-top:40px;

  border-radius:18px;
  border: 2px solid #822711;
  overflow:hidden;

  opacity:0;

  transform:translateY(30px);

  transition:all .8s ease;

  box-shadow: 10px 10px 4px rgba(0, 0, 0, 0.1);


}

.section-image.show{

  opacity:1;

  transform:translateY(0);

}

.section-image img{

  width:100%;

  display:block;

  object-fit:cover;

}