/* Reset and base styles */
body {
  font-family: Arial, sans-serif;
  font-size: 12px; 
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

/* Navigation Menu */
.top-nav {
  background-color: #222;
  padding: 15px 0; 
}

.top-nav .container {
  width: 100%;
  margin: 0 auto;
}

.top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.top-nav ul li {
  display: inline-block;
  margin-left: 10px; /* reduced from 90px */
}

.top-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem; 
  font-weight: 600;
  transition: color 0.3s ease;
}

.top-nav ul li a:hover {
  color: #ddd;
}

/* Main container */
.container {
  width: 100%;
  max-width: auto;
  margin: 60px 20px 60px 20px; /* TOP RIGHT BOTTOM LEFT;*/
  text-align: center;
}

/* Header */
.main-header h1 {
  font-size: 2.5rem; 
  margin-bottom: 60px; /* reduced from 60px */
  font-weight: 700;
}



/* Destinations section */
.destinations {
  display: flex;
  justify-content: center;  /* centers the row */
  align-items: flex-start;  /* aligns top of each item */
  gap: 60px;                /* space between destination boxes */
  flex-wrap: wrap;          /* wraps on smaller screens */
  margin-top: 60px;
}

.destination {
  width: 300px;             
  text-align: center;
}

.destination img {
  width: 100%;              /* fills .destination */
  height: 200px;            /* fixed height */
  object-fit: cover;        /* ensures images stay same size and crop nicely */
  border-radius: 30px; 
  box-shadow: 0 12px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.destination img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  font-size: 1rem; 
  text-align: center;
  padding: 60px 15px; /* reduced from 90px 30px */
  margin-top: 40px; /* reduced from 240px */
}

footer a {
  color: #4ea1d3;
  text-decoration: none;
  margin: 0 9px; /* reduced from 15px */
  font-weight: 600;
}

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