/* =========================
   Global Styles
========================= */
:root {
  --primary-color: #2c3e50;   /* Dark blue-gray */
  --secondary-color: #3498db; /* Sky blue */
  --light-bg: #f9f9f9;
  --text-color: #333;
  --max-width: 1200px;
}

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

body {
  font-family: "Segoe UI", Roboto, sans-serif;
  color: var(--text-color);
  background: var(--light-bg);
  line-height: 1.6;
}

/* =========================
   Navbar
========================= */
.site-header {
  background: var(--primary-color);
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: var(--max-width);
  margin: auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 45px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

/* =========================
   Hero Section
========================= */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(
      rgba(0, 0, 0, 0.4), 
      rgba(0, 0, 0, 0.4)
    ),
    url("images/hero-bg.jpg") center/cover no-repeat;
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

/* =========================
   Destinations
========================= */
.destinations {
  max-width: var(--max-width);
  margin: auto;
  padding: 3rem 2rem;
}

.destinations h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

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

.card h3 {
  font-size: 1.3rem;
  margin: 0.8rem;
  color: var(--primary-color);
}

.card .score {
  margin: 0 0.8rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.card p {
  margin: 0.8rem;
  font-size: 0.95rem;
}

/* =========================
   Sections
========================= */
section {
  padding: 3rem 2rem;
  max-width: var(--max-width);
  margin: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

/* =========================
   Social Media & Contact
========================= */
.social-media {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-media img {
  width: 28px;
  transition: transform 0.3s ease;
}

.social-media img:hover {
  transform: scale(1.2);
}

/* =========================
   Footer
========================= */
.footer {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: var(--primary-color);
    position: absolute;
    top: 65px;
    right: 0;
    width: 200px;
    padding: 1rem;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

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