

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Keep content centered like your mockups */
.page {
  max-width: 1100px;
  margin: 0 auto;
}

/* Make all images behave nicely by default */
img {
  max-width: 100%;
  display: block;
}

/* FULL-WIDTH TOP BAR */
.top-bar {
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #a6ceff;   /* dark blue/black like Booking.com */
    color: white;

    border-bottom: 1px solid #000;
}

/* MAKE LOGO BIGGER */
.logo {
    height: 70px;   /* increase for readability */
}

/* CONTACT LINK */
.contact-link {
    font-size: 18px;
    text-decoration: none;
    color: #ffffff;
}

/* KEEP ALL MAIN CONTENT CENTERED */
.page {
    max-width: 1100px;
    margin: 0 auto;
}
/* SECTION TITLES */
.section-title {
  margin-left: 40px;
  margin-top: 30px;
  font-size: 18px;
}

/* HERO (LARGE GREY BOX) */
.hero {
  margin: 20px 40px;
  background: #dcdcdc;
  height: 260px;          /* fixed height like the mockup */
  border-radius: 6px;
  overflow: hidden;       /* IMPORTANT: big images are clipped, not stretching the box */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* crops the image to fill the grey box */
}

/* FEATURED DESTINATIONS */
.destination-row {
  display: flex;
  justify-content: space-between;
  padding: 0 40px 40px;
  gap: 30px;
}

.destination-box {
  flex: 1;
  background: #dcdcdc;
  height: 160px;          /* fixed height like your three small boxes */
  border-radius: 6px;
  overflow: hidden;       /* clip large images */
}

.destination-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* crop to fit box */
}

/* BOTTOM SECTION */
.bottom-section {
  padding: 60px 40px 80px;
}

.special-offers {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 70px;
}

/* Bottom navigation row (centered links) */
.bottom-nav {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

.bottom-nav a {
  text-decoration: none;
  color: #555;
  font-size: 16px;
}

