/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
  }
  
  /* Header */
  header {
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    flex-wrap: wrap;
  }
  
  header h1 {
    font-family: 'Allison', cursive;
    font-size: 50px;
    color: orange;
  }
  
  nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0 15px;
    font-size: 16px;
  }
  
  nav a:hover {
    color: orange;
  }
  
  /* Hero Section */
  #hero {
    height: 60vh;
    background-color: black;
    overflow: hidden;
  }
  
  #hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
  }
  
  /* Features Section */
  #features {
    text-align: center;
    padding: 40px 5%;
  }
  
  h3 {
    font-family: 'Allison', cursive;
    font-size: 50px;
    color: orange;
  }
  
  .feature-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
  }
  
  article {
    background-color: purple;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    flex-grow: 1;
  }
  
  article i {
    font-size: 40px;
    color: orange;
    margin-bottom: 10px;
  }
  
  article a {
    display: inline-block;
    background-color: white;
    color: #4B0082;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 15px;
    margin-top: 10px;
  }
  
  /* Gallery */
  #gallery {
    background-color: black;
    text-align: center;
    padding: 40px 5%;
  }
  
  h2 {
    font-family: 'Allison', cursive;
    font-size: 40px;
    color: white;
    margin-bottom: 20px;
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    max-width: 1200px;
    margin: auto;
  }
  
  #gallery img {
    width: 100%;
    height: auto;
  }
  
  /* Footer */
  footer {
    background-color: orange;
    padding: 20px 5%;
    text-align: center;
  }
  
  .footer-container h4 {
    font-family: 'Allison', cursive;
    font-size: 60px;
    color: white;
    text-align: left;
  }
  
  .footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  h5 {
    font-size: 16px;
    color: #4B0082;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .social-icons i {
    font-size: 24px;
    color: white;
    margin: 5px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      text-align: center;
    }
  
    header h1 {
      font-size: 40px;
    }
  
    nav a {
      margin: 0 10px;
    }
  
    .feature-container {
      flex-direction: column;
      gap: 10px;
    }
  
    article {
      width: 100%;
    }
  
    .gallery-container {
      grid-template-columns: 1fr;
    }
  
    h2 {
      font-size: 30px;
    }
  
    footer h4 {
      font-size: 40px;
    }
  
    .footer-info {
      flex-direction: column;
      align-items: center;
    }
  
    h5 {
      font-size: 14px;
    }
  
    .social-icons i {
      font-size: 20px;
    }
  }
  
  /* Tablet Styles */
  @media (max-width: 825px) {
    body {
      background-color: #614705 !important;
    }
  }
  
  /* Mobile Styles */
  @media (max-width: 450px) {
    body {
      background-color: #e9f0a1 !important;
    }
  
    header h1 {
      font-size: 36px;
    }
  
    h2 {
      font-size: 28px;
    }
  
    footer h4 {
      font-size: 36px;
    }
  }