* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #333;
  }
  
  .gallery-header {
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4)), url('./images/stucco-texture-light-color.jpg') no-repeat center/cover;
    color: white;
    padding: 3rem 2rem;
  }
  
  .gallery-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
  }
  
  .gallery-header p {
    font-size: 1.2rem;
  }
  
  .gallery-container {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
  }
  
  .gallery-item img {
    width: 100%;
    height: 400px;
    display: block;
  }
  
  .gallery-item p {
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
  }
  
  .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  
  .gallery-item.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .gallery-footer {
    text-align: center;
    padding: 2rem;
    background: #222;
    color: #aaa;
    font-size: 0.9rem;
  }
  
 .section-buttons button {
  padding: 0.6rem 1.2rem;
  margin: 0 0.5rem;
  background: linear-gradient(135deg, #8b5e3c, #5a3d24); /* Heritage earth tones */
  color: #fff8e1;
  border: 2px solid #d2b48c;
  border-radius: 12px;
  font-family: 'Georgia', serif;
  font-weight: bold;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  cursor: url('cursor.png') 16 16, auto;
  transition: all 0.3s ease-in-out;
}

.section-buttons button:hover {
  background: linear-gradient(135deg, #a97452, #6e4a2b);
  color: #ffe6b3;
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

  .gallery-section h3 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #eee;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .section-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
  }
  
  .hide-btn {
    padding: 0.4rem 0.8rem;
    background: #c0392b;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
  }

  
  .social-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .social-float a img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
  }
  
  .social-float a img:hover {
    transform: scale(1.1);
  }
  @media (max-width: 600px) {
    .social-float {
      bottom: 15px;
      right: 15px;
      gap: 10px;
    }
  
    .social-float a img {
      width: 40px;
      height: 40px;
    }
  }
  
  .hide-btn:hover {
    background: #e74c3c;
  }
  @media (max-width: 768px) {
    .gallery-header {
      padding: 1rem 1rem;
    }

    .navbar .logo {
        margin-bottom: 1rem;
        margin-left: 2%;
      }
  
    .gallery-header h1 {
      font-size: 2rem;
    }
  
    .gallery-header p {
      font-size: 1rem;
    }
  
    .section-buttons {
      flex-direction: column;
      gap: 1rem;
    }
  
    .section-buttons button {
      width: 100%;
      margin: 0.5rem 0;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .gallery-item img {
      height: auto;
      max-height: 300px;
      object-fit: cover;
    }
  
    .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
  
    nav.navbar {
      flex-direction: column;
      align-items: center;
      padding: 1rem;
    }
  
    nav.navbar ul.nav-links {
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-top: 1rem;
    }
  
    nav.navbar ul.nav-links li {
      margin: 0.5rem 0;
    }
  
    .logo img {
      height: 70px;
      width: auto;
    }
  }

  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #ffd700;
  }

  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 1100;
}

  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      margin-top: 1rem;
      background-color: #444;
      border-radius: 8px;
      padding: 1rem 0;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .nav-links li {
      margin: 0.5rem 0;
      text-align: center;
    }
  }
    