/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fdfdfd;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* LOGO STYLING */
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c2c2c;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Golden gradient text for a classy touch */
.logo {
  background: linear-gradient(90deg, #c0a062, #e3d8b5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Underline flourish */
.logo::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: #c0a062;
  margin: 6px auto 0;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Hover effect */
.logo:hover::after {
  width: 90%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #c59d5f;
}

/* Hero Section */
.hero {
  background: url("images/hero.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

/* Hero Section */
.sicily-hero {
  background: url("../images/destinations/Sicily/hero.jpg") no-repeat center
    center/cover;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #c59d5f;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.btn-primary:hover {
  background-color: #b38a4c;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

/* Destinations */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.destination-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-card h3 {
  margin: 15px 0 5px;
}

.destination-card p {
  padding: 0 15px 15px;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.footer a {
  color: #c59d5f;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Collaborations Section */
.collaborations {
  padding: 80px 20px;
  text-align: center;
  background: #fafafa;
}

.collaborations h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #222;
}

.collaborations p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Logos grid */
.collab-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}

.collab-logos img {
  max-width: 160px;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.4s ease;
}

.collab-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .collaborations h2 {
    font-size: 2rem;
  }

  .collaborations p {
    font-size: 1rem;
  }

  .collab-logos {
    gap: 20px;
  }

  .collab-logos img {
    max-width: 120px;
  }
}

/* ABOUT SECTION */
.about {
  margin: 2rem auto;
  padding: 40px 20px;
  text-align: center;
  background: #fafafa; /* light, clean background */
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.about h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #2c2c2c;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c0a062; /* classy gold accent */
  margin: 12px auto 0;
  border-radius: 2px;
}

.about p {
  font-family: "Lora", serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 22px;
}

.about p:last-child {
  margin-bottom: 0;
}

/* Subtle hover effect for elegance */
.about:hover {
  transform: translateY(-3px);
  transition: all 0.3s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* ------------------- */
/* HAMBURGER NAV STYLES */
/* ------------------- */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100; /* above menu */
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #2c2c2c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 65%;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}

/* Animate hamburger into X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* About Destination (Overview) */
.about-destination {
  margin: 3rem auto;
  padding: 60px 30px;
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  text-align: center;
}

.about-destination h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.about-destination p {
  font-family: "Lora", serif;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.8;
}

/* Experiences */
.experiences {
  padding: 80px 20px;
  background: #fff;
}

.experiences h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  font-family: "Playfair Display", serif;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.experience-card {
  background: #fafafa;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.experience-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 15px;
  color: #2c2c2c;
}

.experience-card p {
  font-family: "Lora", serif;
  font-size: 1rem;
  color: #555;
  padding: 0 15px 20px;
  line-height: 1.6;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Luxury Stays */
.luxury-stays {
  padding: 80px 20px;
  background: #fafafa;
}

.luxury-stays h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  font-family: "Playfair Display", serif;
  color: #2c2c2c;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.stay-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stay-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.stay-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 15px 0 10px;
  color: #2c2c2c;
}

.stay-card p {
  font-family: "Lora", serif;
  font-size: 1rem;
  color: #555;
  padding: 0 20px 20px;
  line-height: 1.6;
}

.stay-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
