/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #333;
  }
  
  header {
    background: #333;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  /* Logo container styling */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
  }
  
  /* Logo image styling */
  .logo img {
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-right: 12px;
  }
  
  /* Scrolling logo text */
  .logo-text {
    width: 400px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  
  .logo-text span {
    display: inline-block;
    font-size: 1.0rem;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
  }
  
  @keyframes scroll-text {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Navigation links */
  nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    padding: 8px 16px;
    border-radius: 12px;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  nav a:hover {
    background: #D4AF37;
    color: #fff;
  }
  
  .hero {
    background: url('images/hero.jpg') center/cover no-repeat;
    color:black;
    padding: 100px 20px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
    margin-bottom: 60px; /* 👈 Adds space before the footer */
  }
  
  .contact-btn {
    background-color: #3b3b39;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  
  .contact-btn:hover {
    background-color: #b8932e;
  }
  
  .btn {
    background: #D4AF37;
    color: #fff;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #b8932e;
  }
  /* About Section Styling */
#about {
    background-color: #f9f9f9;
    padding: 60px 20px;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  #about h2 {
    color: #D4AF37;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
  }
  
  #about h3 {
    color: #b8860b;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
  }
  
  #about ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: disc;
  }
  
  #about ul li {
    margin-bottom: 10px;
  }
  
  #about p em {
    font-style: italic;
    font-weight: 600;
  }
  
  section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .card {
    background: #f5f5dc;
    padding: 20px;
    border-radius: 12px;
    width: 200px;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  
  .gallery img {
    width: 100%;
    height: 250px; /* Fixed height for uniform display */
    object-fit: cover; /* Crop images to fill the box evenly */
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  
  .gallery img:hover {
    transform: scale(1.05);
  }
  
  form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button {
    background: #D4AF37;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #b8932e;
  }
  
  footer {
    background: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
  }
  
  /* GENERAL RESPONSIVENESS */
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      align-items: flex-start;
    }
  
    nav {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .cards {
      flex-direction: column;
      align-items: center;
    }
  
    .gallery img {
      width: 90%;
    }
  
    form {
      width: 90%;
    }
  }
  
  /* MOBILE-SPECIFIC */
  @media (max-width: 480px) {
    .hero {
      padding: 60px 10px;
    }
  
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .btn {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
  
    header, footer {
      text-align: center;
    }
  
    nav {
      justify-content: center;
    }
  
    .card {
      width: 90%;
    }
  }
  