/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: White;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  color: Royal blue;
  font-weight: bold;
}

.nav a {
  margin-left: 25px;
  color: #333;
  font-weight: 500;
}

.hero {
  background: url('assets/images/hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 20px;
}

.hero-content h2 {
  colour:white;
  font-size: 3rem;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: royalblue;
  color: white;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #2a50a7;
}

section {
  padding: 60px 10%;
  background-color: #fff;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #222;
}

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

.card {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

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

.card h3 {
  padding: 15px 20px 5px;
  font-size: 1.3rem;
  color: royalblue;
}

.card p {
  padding: 0 20px 20px;
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.planner-box {
  text-align: center;
  margin-bottom: 30px;
}

.planner-box select, .planner-box button {
  padding: 10px 15px;
  margin-top: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
  font-size: 1rem;
}

.planner-box button {
  background-color: royalblue;
  color: white;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.3s;
}

.planner-box button:hover {
  background-color: #2a50a7;
}

.map {
  display: block;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 10px;
  margin-top: 20px;
}

.footer {
  background-color: #111;
  color: #eee;
  text-align: center;
  padding: 30px 10%;
  font-size: 0.95rem;
}

.footer a {
  color: #eee;
  text-decoration: underline;
}
