/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fffaf3;
    color: #333;
    scroll-behavior: smooth;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  html {
    scroll-behavior: smooth;
  }
  
  /* ===== HEADER / NAV ===== */
  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff0d9ea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    z-index: 1000;
  }
  .logo img {
  height: 50px; /* Adjust size as needed */
  width: auto;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 40px;
}

.logo-text {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}


  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #e67e22;
  }
  
  nav ul {
    display: flex;
    gap: 2rem;
  }
  
  nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #e67e22;
  }
  /* Navigation container */

/* Hamburger menu */
#hamburger {
  cursor: pointer;
  font-size: 24px;
}

/* Menu list */
#nav-list {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff8f0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  text-align: center;
  display: none;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease-in-out;
}

#nav-list.show {
  display: flex;
}

#nav-list a {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  padding: 10px;
  transition: color 0.2s;
}

#nav-list a:hover {
  color: #0073e6;
}

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background: #333;
    margin: 4px 0;
    transition: 0.4s;
  }
  
 
  .map-container {
    width: 100%;
    max-width: 800px; /* Limit size for large screens */
    margin: 20px auto; /* Center it */
    padding: 0 15px; /* Add some space on mobile */
}

.map-container iframe {
    width: 100%;
    height: 400px; /* Default height */
    border: 0;
    border-radius: 12px; /* Rounded corners for a nice look */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .map-container iframe {
        height: 300px; /* Reduce height on mobile */
    }
}

  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background: white;
      display: none;
    }
  
    nav ul.show {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  }
  
  /* ===== HERO SECTION ===== */
  .hero {
    height: 100vh;
    background: url('images/Pasqyrat.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    background: #fff0d9;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #cf711f;
  }
  
  /* ===== SECTIONS ===== */
  section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: auto;
  }
  
  section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #e67e22;
  }
  
  .about-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .about-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .about-box:hover {
    transform: translateY(-5px);
  }
  
  .about-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .about-box h3 {
    font-size: 1.25rem;
    margin: 1rem 0 0.5rem;
    color: #e67e22;
  }
  
  .about-box p {
    padding: 0 1rem 1.5rem;
    font-size: 0.95rem;
    color: #555;
  }
  
  
  .menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
  }
  
  .menu-item {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .menu-item h3 {
    margin-bottom: 0.5rem;
  }
  .menu-tabs {
    position: sticky;
    top: 80px; /* adjust depending on your header height */
    background: #fffaf3;
    padding: 1rem 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
  }
  
  .tab {
    padding: 0.5rem 1rem;
    border: none;
    background: #fdf2e9;
    color: #333;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .tab:hover,
  .tab.active {
    background: #e67e22;
    color: white;
  }
  
  .menu-item {
    transition: transform 0.3s;
  }
  .experience {
    padding: 50px 0;
    background: #fefefe;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .experience-wrapper {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
  }
  
  .card {
    min-width: 300px;
    aspect-ratio: 4/3; /* or 16/9 for widescreen look */
    position: relative;
    scroll-snap-align: start;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  .card p {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0,0,0,0.7);
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  .exp-title {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    background: #fefefe;
    z-index: 10;
    padding: 20px 10px; /* add more vertical padding */
    box-sizing: border-box; /* ensures padding doesn’t overflow */
    white-space: normal; /* allows text to wrap */
  }
  
  
  /* ===== FOOTER ===== */
  footer {
    text-align: center;
    padding: 2rem;
    background: #fdf2e9;
    color: #777;
  }
  