body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: #fff;
}

.hero {
  background: url('../images/calabria-hero.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 2rem;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.btn {
  background: #e67e22;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

.intro, .categories, .gems, .testimonials {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.category-card {
  display: inline-block;
  width: 22%;
  margin: 1%;
  background: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: scale(1.05);
}

.category-card img {
  width: 100%;
  height: auto;
}

.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}

.carousel-track div {
  min-width: 300px;
  background: #eee;
  padding: 1rem;
  border-radius: 5px;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .category-card {
    width: 46%;
    margin: 2%;
  }

  .carousel-track {
    overflow-x: scroll;
    flex-wrap: nowrap;
  }

  .carousel-track div {
    min-width: 80%;
  }

  .intro, .categories, .gems, .testimonials {
    padding: 2rem 1rem;
  }

  footer {
    font-size: 0.9rem;
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .category-card {
    width: 96%;
    margin: 2% auto;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.8rem;
  }

  .carousel-track div {
    min-width: 95%;
  }
}
/* Nav Styles */
.navbar {
  background: #ffffffee;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e67e22;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
.history-hero {
  background: url('../images/history-banner.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
}

.history-grid {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.history-card {
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.history-card:hover {
  transform: translateY(-5px);
}

.history-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.history-card h3 {
  margin: 1rem;
  font-size: 1.2rem;
}

.history-card p {
  margin: 0 1rem 1rem;
  font-size: 0.95rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
