<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>

  <title>Peconic Diner</title>

  <style>

    body {

      font-family: sans-serif;

      margin: 0;

      padding: 0;

      background: #f9f9f9;

    }

    nav {

      background: #292929;

      color: white;

      display: flex;

      flex-wrap: wrap;

      justify-content: center;

      padding: 15px;

    }

    nav a {

      color: white;

      text-decoration: none;

      margin: 10px 15px;

      font-weight: bold;

    }

    header, section {

      padding: 30px 20px;

      text-align: center;

    }

    h1, h2 {

      color: #2e2e2e;

    }

    .gallery {

      display: flex;

      flex-wrap: wrap;

      justify-content: center;

    }

    .gallery img {

      width: 300px;

      margin: 10px;

      border-radius: 10px;

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

    }

    form input, form textarea, form button {

      width: 100%;

      max-width: 400px;

      margin: 10px auto;

      padding: 10px;

      display: block;

      border: 1px solid #ccc;

      border-radius: 5px;

    }

    iframe {

      border: none;

      border-radius: 10px;

    }

    @media (max-width: 768px) {

      .gallery img {

        width: 90%;

      }

      nav {

        flex-direction: column;

      }

    }

  </style>

</head>

<body>

 

  <nav>

    <a href="#order">Order Online</a>

    <a href="#hours">Hours</a>

    <a href="#gallery">Gallery</a>

    <a href="#reserve">Reservations</a>

    <a href="#location">Find Us</a>

    <a href="#instagram">Instagram</a>

  </nav>

 

  <header>

    <h1>Welcome to Peconic Diner</h1>

    <p>Classic American comfort with a twist — served fresh daily!</p>

  </header>

 

  <section id="order">

    <h2>Order Online</h2>

    <p><a href="https://www.doordash.com/store/peconic-diner" target="_blank">Click here to order on DoorDash</a></p>

  </section>

 

  <section id="hours">

    <h2>Hours</h2>

    <p>Monday – Friday: 8:00 AM – 9:00 PM<br>Saturday – Sunday: 7:00 AM – 10:00 PM</p>

  </section>

 

  <section id="gallery">

    <h2>Gallery</h2>

    <div class="gallery">

      <img src="https://via.placeholder.com/300x200?text=Dish+1" alt="Dish 1">

      <img src="https://via.placeholder.com/300x200?text=Dish+2" alt="Dish 2">

      <img src="https://via.placeholder.com/300x200?text=Dish+3" alt="Dish 3">

    </div>

  </section>

 

  <section id="reserve">

    <h2>Make a Reservation</h2>

    <form action="https://formspree.io/f/your-form-id" method="POST">

      <input type="text" name="name" placeholder="Your Name" required>

      <input type="email" name="email" placeholder="Your Email" required>

      <input type="text" name="date" placeholder="Reservation Date & Time" required>

      <textarea name="message" placeholder="Special Requests"></textarea>

      <button type="submit">Reserve Now</button>

    </form>

  </section>

 

  <section id="location">

    <h2>Find Us</h2>

    <iframe

      src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d96782.12249246242!2d-72.62326672453974!3d40.96981251630005!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89e89d32c926c5f3%3A0x6c650dcfdd48396!2sPeconic%2C%20NY!5e0!3m2!1sen!2sus!4v1719876543210!5m2!1sen!2sus"

      width="100%" height="300" allowfullscreen="" loading="lazy">

    </iframe>

  </section>

 

  <section id="instagram">

    <h2>Instagram Feed</h2>

    <iframe src="https://snapwidget.com/embed/1071833"

      class="snapwidget-widget"

      allowtransparency="true"

      frameborder="0"

      scrolling="no"

      style="border:none; overflow:hidden; width:100%; height:300px"></iframe>

  </section>

 

</body>

</html>