/* =========================
   Base Styles
   ========================= */
   body {
    background-color: #d32f2f;
    color: #fef4e8;
    font-family: 'Libre Baskerville', serif;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  
  a {
    color: #d32f2f;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  
  /* silver jet plane and slogan */
  #header {
    position: relative;
    background: url("backgrounds/background plane.jpg") no-repeat center center;
    background-size: cover;
    padding: 60px 20px;
    border-bottom: 4px solid #ffeb3b;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    overflow: hidden;
  }
  
  #header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #1797d2;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  }
  
  #header p {
    font-size: 1.1rem;
    color: #b71c1c;
    font-style: italic;
    margin-top: 5px;
    text-shadow: -2px -2px 0 #ccc, 2px -2px 0 #ccc, -2px 2px 0 #ccc, 2px 2px 0 #ccc,
                 -2px 0 0 #ccc, 2px 0 0 #ccc, 0 2px 0 #ccc, 0 -2px 0 #ccc;
  }
  
  
  /* navigation bar */
  #navbar {
    background-color: #ffeb3b;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    margin-bottom: 40px;
  }
  
  #navbar a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  #navbar a:hover {
    background-color: #fef4e8;
    color: #212121;
    padding: 8px 12px;
    border-radius: 4px;
  }
  
  
  /* intro box */

  #home-intro h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #e65100;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  #home-intro {
    background-color: #e7c96e;
    color: #1a237e;
    padding: 20px 30px;
    margin: 40px auto;
    width: fit-content;
    max-width: 90%;
    text-align: center;
    border: 2px solid #1797d2;
    border-radius: 8px;
  }
  
  /* slideshow section */
  #slideshow {
    max-width: 550px;
    margin: 40px auto;
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background-color: #3b4d2e;
  }
  
  .slide {
    display: none;
  }
  
  .slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
  }
  
  .slideshow-caption {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #212121;
    padding: 8px 2px;
    border-radius: 8px;
    margin: 10px auto 20px auto;
    width: fit-content;
    text-align: center;
    font-style: italic;
  }
  
  
  /* featuring miss emily */
  #artist-section {
    background-color: #1797d2;
    border-top: 4px solid #ffeb3b;
    border-bottom: 4px solid #ffeb3b;
    margin: 60px auto;
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  #artist-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: #d32f2f;
  }
  
  #artist-section button {
    background-color: #d32f2f;
    color: #ccc;
    border: none;
    padding: 12px 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  
  #artist-section button:hover {
    background-color: #b71c1c;
  }
  
  #emily-info {
    display: none;
    margin-top: 20px;
  }
  
  #emily-info img,
  #emily-info video {
    width: 90%;
    max-width: 500px;
    margin: 15px auto;
    border: 3px solid #ffeb3b;
    border-radius: 10px;
    display: block;
  }
  
  #emily-info p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    margin-top: 10px;
    color: #212121;
  }
  
  #emily-art-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  #emily-art-row img {
    width: 45%;
    max-width: 400px;
    height: auto;
    border: 3px solid #ffeb3b;
    border-radius: 10px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
  }
  
  
  /* about page */
  
    .about-section.our-story {
      background-color: #3b4d2e;
      color:#e7c96e;
      padding: 10px 20px;
      margin: 40px auto;
      max-width: 600px;
      border: 2px solid #ffeb3b;
      border-radius: 12px;
      box-shadow: 2px 2px 12px rgba (0,0,0,0.1);
      font-family: 'Libre Baskerville', serif;
      line-height: 1.7;
      text-align: center;
      white-space: pre-wrap;
      
    }
   .about-section.our-story h2 {
      font-family: 'Bebas Neue', san-serif;
      font-size: 3rem;
      color: #d32f2f;
      margin-bottom: 0px;
      text-align: center;
      margin-top: 1px;
  
    }
  
  .about-photo {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  }
  
  
  
  .signatures {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.5rem;
    text-align: right;
    margin-top: 40px;
    color: #d32f2f;
  }
  

  
  /* floorplan zoom ordeal */
   .floorplan-section {
      background-color: #1797d2;
      padding: 40px 20px;
      margin: 40px auto;
      text-align: center;
      border: 2px solid #ffeb3b;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      width: 60%;
      border-radius: 12px;
      box-shadow: 2px 2px 12px rgba (0,0,0,0.1);
    }
    
    .floorplan-section h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: #d32f2f;
      margin-bottom: 2px;
    }
    
   
    
    .floorplan-image {
      width: 250px; 
      height: auto;
      cursor: zoom-in;
      transition: transform 0.3s ease;
      border-radius: 12px;
      box-shadow: 2px 2px 12px rgba(0,0,0,0.2);
      margin-top: 20px;
      position: relative;
      z-index: 1;
    }
    
    .floorplan-image:hover {
      transform: scale(1.2);
      z-index: 10;
    }
    
    #lightbox {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.9);
    }
    
    #lightbox img {
      display: block;
      margin: 5% auto;
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
    }
    
.location-section { 
  background-color: #212121;
  padding: 40px 20px;
  margin: 40px auto;
  text-align: center;
  border: 2px solid #ffeb3b;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 90%;
  border-radius: 12px;
  box-shadow: 2px 2px 12px rgba (0,0,0,0.1);
}

.location-section h2 { 
color: #ffeb3b
}
  /* events */
  
  .event-block {
    margin-bottom: 50px;
    text-align: center;
  }
  
  .event-block h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #ffeb3b;
    margin-bottom: 12px;
  }
  
  .event-block img {
    width: 220px;
    height: auto;
    border: 3px solid #ffeb3b;
    border-radius: 6px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .event-block img:hover {
    transform: scale(1.05);
  }
  
  .events-note {
    color: #ffeb3b ;
   
  }
  .events-heading {
    color: #212121;
  }
  /* contact*/
  #contact-page {
    padding: 60px 20px;
    background-color: #fef4e8;
    color: #212121;
    font-family: 'Libre Baskerville', serif;
    text-align: center;
  }
  
  .contact-section {
    max-width: 700px;
    margin: 0 auto 40px auto;
    padding: 0 10px;
  }
  
  .contact-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #d32f2f;
  }
  
  .contact-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  form {
    margin-top: 20px;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    border-radius: 4px;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-family: 'Libre Baskerville', serif;
  }
  
  button[type="submit"] {
    background-color: #d32f2f;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    padding: 10px 20px;
    border: none;
    font-size: 1.2rem;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #b71c1c;
  }
  
  .contact-box {
    background-color: #fef4e8;
    max-width: 700px;
    margin: 40px auto;
    padding: 30px 20px;
    border-top: 4px solid #ffeb3b;
    border-bottom: 4px solid #ffeb3b;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
  }
  
  .contact-box form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-box form label {
    display: block;
    margin-bottom: 4px;
    font-weight: bold;
    text-align: left;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  
 /* menu paaaaaaage */
.menu-category {
  background-color: #1797d2;
  border: 3px solid #ffeb3b;
  border-radius: 10px;
  margin: 30px auto;
  padding: 20px;
  max-width: 700px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.menu-category h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #d32f2f;
  cursor: pointer;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.menu-category h2:hover {
  color: #b71c1c;
}

.menu-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: #e7c96e;
  line-height: 1.8;
}

.menu-list li {
  padding: 4px 0;
  border-bottom: 1px dotted #ccc;
}

.menu-list li:last-child {
  border-bottom: none;
}
  