@charset "UTF-8";
/* CSS Document */
  /* Global Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Helvetica Neue', sans-serif;
      line-height: 1.6;
      color: #333;
      background: #fff;
    }
    a {
      text-decoration: none;
      color: inherit;
    }

    /* Header */
    header {
      background: #0077b6;
      color: #fff;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    header h1 {
      font-size: 1.5rem;
    }
    nav a {
      margin-left: 1.5rem;
      font-weight: 500;
    }

    /* Hero Section */
    .hero {
      background: url("images/IMG_0359.jpg") center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 6rem 2rem;
      position: relative;
    }
    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .hero h2 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }
    .btn {
      background: #f1faee;
      color: #0077b6;
      padding: 0.75rem 1.5rem;
      border-radius: 30px;
      font-weight: bold;
      transition: 0.3s ease;
    }
    .btn:hover {
      background: #fff;
      transform: translateY(-2px);
    }

    /* About Section */
    .about {
      padding: 4rem 2rem;
      max-width: 1000px;
      margin: auto;
      display: grid;
      grid-template-columns: 2fr 3fr;
      gap: 2rem;
      align-items: center;
    }
    .about img {
      width: 75%;
      border-radius: 12px;
    }
    .about-text h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #0077b6;
    }
    .about-text p {
      margin-bottom: 1rem;
    }

    /* Menu Section */
    .menu {
      background: #f8f9fa;
      padding: 4rem 2rem;
      text-align: center;
    }
    .menu h3 {
      font-size: 2rem;
      color: #0077b6;
      margin-bottom: 2rem;
    }
    .menu-items {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      max-width: 1000px;
      margin: auto;
    }
    .menu-item {
      background: #fff;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .menu-item h4 {
      margin-bottom: 0.5rem;
      color: #333;
    }
    .menu-item p {
      font-size: 0.95rem;
      color: #555;
    }

    /* Contact Section */
    .contact {
      padding: 4rem 4rem;
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: 3fr 6fr;
      gap: 2rem;
      align-items: left;
    }
    .contact h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #0077b6;
    }
    .contact p {
      margin-bottom: 2rem;
    }
    form {
      max-width: 600px;
      margin: auto;
      display: grid;
      gap: 1rem;
    }
   .contact-text h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #0077b6;
    }
    .contact-text p {
      margin-bottom: 1rem;
    }
    

    /* Footer */
    footer {
      background: #333;
      color: #fff;
      text-align: center;
      padding: 1.5rem;
      margin-top: 2rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .about {
        grid-template-columns: 1fr;
      }
      .hero h2 {
        font-size: 2rem;
      }
    }
