:root {

    /* Primary: Sea of Crete */
    --primary-50: #0060b1;
    --primary-100: #F2F7FF;
    --primary-200: #BAD9FE;
    --primary-300: #7FBFFA;
    --primary-400: #45A6EE;
    --primary-500: #0F8DD6;
    --primary-600: #0577AA;
    --primary-700: #015F7E;
    --primary-800: #004252;
    --primary-900: #002126;

    /* Accent: Pink Bite */
    --accent-100: #FFF2F7;
    --accent-200: #FFC5DF;
    --accent-300: #FB96CA;
    --accent-400: #F366B7;
    --accent-500: #E336A4;
    --accent-600: #B41683;
    --accent-700: #850966;
    --accent-800: #550446;
    --accent-900: #35b0ab;

    /* Neutral */
    --neutral-100: #FAFBFC;
    --neutral-200: #ECEEF0;
    --neutral-300: #DFE1E4;
    --neutral-400: #D1D5D8;
    --neutral-500: #C4C9CC;
    --neutral-600: #9AA0A3;
    --neutral-700: #717779;
    --neutral-800: #494E50;
    --neutral-900: #222626;

  --text: #070e10;
  --background: #f4f7f7;
  --primary: #c5f0a4;
  --secondary: #35b0ab;
  --accent: #226b80;


}

/*

:root {
  --text: #06080e;
  --background: #f4f5f7;
  --primary: #293b5f;
  --secondary: #47597e;
  --accent: #dbe6fd;
}
*/


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

    body {
      width: 100vw;
      height: 100%;
      font-family: 'Roboto', system-ui, sans-serif;
      line-height: 1.6;
      color: var(--primary-400);
    }
    .wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.5rem;
      background: rgb(6, 21, 36);
    }

    header {

      display: flex;
      justify-content: space-around;
      /* width: 100%; */
      min-height: 5rem;
      /* margin: 0 auto; */
      padding: 1rem;
    text-align: center;

  /* background: var(--primary-100); */
  }
header img {
  width: 15%;
  /* height: 2.5rem; */
  margin-right: auto;
padding: 0.5rem;
}
  /* header h1 {
      font-size: 3rem;
      color: var(--accent);

  } */
  header span {
    font-size: 1.5rem;
    color: var(--accent-900);
    font-style: italic;
    margin: auto 0;
    padding: 0.5rem;
    /* text-shadow: 5px 1px 6px rgba(0,0,0,0.6); */
  }

    /* Hero */
    .hero {
width: 100%;
max-height: 20rem;
display: flex;
justify-content: center;
align-items: center;
/* position: relative; */
overflow: hidden;
border: none;
    border-radius: 5px;


}
.gfg {
  /* filter: blur(4px); */
  /* background-color: #1d5918b2; */
  width: 100%;
  /* background-position: center center/cover; */
  /* margin: 1rem; */
}
.words {

    /* text-align: center; */
            position: absolute;
            /* font-size: 3rem; */
            /* top: 50px; */
            text-align: center;
            /* align-items: center; */
            color: white;
}
       .words h1 {
            font-size: 3rem;
            /* border: 4px solid white; */
            /* padding: 22px;
            position: relative; */

        }
.date {
           border: none;
            outline: 0;
            font-size: 2.5rem;
            display: inline-block;
            text-align: center;
}


    /* Section styling */
    section {
padding: 5px;
      /* max-width: 1200px; */
      /* padding: 1rem; */
/* background-color: var(--neutral-800); */
    }

    /* h2 {
      text-align: center;
      font-size: 2.8rem;
      margin-bottom: 2.5rem;
      /* color: #222;
      */


.title .menu {
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

/* Menu Cards */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2.5rem;
      margin-top: 3rem;
    }

    .card {
      background: var(--accent);
      border: none;
      border-radius: 6px;
      /* overflow: hidden; */
      /* height: auto; */
      /* margin: 5px; */
      padding: 2px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: transform 0.25s ease;
    }

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

    .card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border: none;
      border-radius: 5px;
    }

    .card-content {
      padding: 1rem;
      text-align: center;
    }

    .card h3 {
      color: var(--accent-100);
      font-size: 1.6rem;
      margin-bottom: 0.8rem;
    }

    .card .price {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--accent-100);
      margin: 0.6rem 0 1rem;
    }

    .card p {
      color: lightgray;
    }

    /* How to Order */


    .order-section .title {
      width: 100%;
      text-align: center;
      /* margin-bottom: 2.5rem; */
    }
    .steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .step {
      background: var(--text);
      padding: 2.5rem;
      border-radius: 12px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    }

    .step-number {
      display: inline-block;
      background: var(--accent-900);
      color: white;
      width: 48px;
      height: 48px;
      line-height: 48px;
      border-radius: 50%;
      text-align: center;
      font-weight: bold;
      margin-right: 1rem;
      font-size: 1.4rem;
    }

    .phone {
      color: var(--primary-50);
      font-weight: bold;
      font-size: 1.3rem;
    }

    .options-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      justify-content: center;
      margin: 1.8rem 0;
    }

    .options-gallery img {
      width: 180px;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
      border: 4px solid white;
    }

    /* Pickup Instructions */
    .pickup-info {
      background: var(--text);
      border-radius: 16px;
      padding: 1rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      text-align: center;
      /* max-width: 800px; */
      margin: 0 auto;
    }

    .address {
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--accent);
      margin: 1.5rem 0;
    }
 .only-pay {
  margin: 0.5rem 0;
  color: var(--primary);
}


    /* Footer */
    footer {
      background: var(--text);
      color: white;
      text-align: center;
      border: none;
      border-radius: 8px;
      margin: 0.5rem;
      /* padding: 60px 20px 40px; */
    }
footer p {
      margin: 1rem 0;
      font-size: 1.4rem;
}
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 2.5rem;

      /* margin-bottom: 2rem; */
    }
    .social-icons a {
      color: white;
      font-size: 1.7rem;
margin: 1rem;
      transition: color 0.3s;
    }


    .social-icons a:hover {
      color: #e63946;
    }

    @media (max-width: 768px) {
      .hero h1 { font-size: 3.2rem; }
      .hero .date { font-size: 2rem; }
      /* h2 { font-size: 2.4rem; } */
    }