/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  font-family: Arial, sans-serif;
  background-color: #faf7f2;
  color: #1b2a41;
}

/* PAGE CONTAINER */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* HEADER */
.header {
  background: linear-gradient(135deg, #1b2a41, #1e6f78);
  color: white;
  text-align: center;
  padding: 35px 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* NAVIGATION */
.navbar {
  display: flex;
  justify-content: center;
  background-color: #1e6f78;
  flex-wrap: wrap;
}

.navbar a {
  color: white;
  padding: 15px 22px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.navbar a:hover {
  background-color: #164f54;
}

/* MAIN CONTENT */
.main-content {
  flex: 1;
  padding: 30px 20px;
}

/* INTRO TEXT */
.intro {
  text-align: center;
  margin-bottom: 35px;
}

.intro h2 {
  color: #1e6f78;
  font-size: 2rem;
  margin-bottom: 10px;
}

/* HERO COVER SECTION */
.hero-cover {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  background-color: #faf7f2;
}

.hero-text {
  max-width: 500px;
  text-align: center;
}

.hero-text h1 {
  font-size: 2.7rem;
  color: #1b2a41;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #333;
}

.hero-sub {
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
}

.hero-image img {
  width: 380px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.25);
}

/* CARD LAYOUT */
.card-section,
.destinations-section,
.gallery-section {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

/* CARD */
.card,
.gallery-card {
  background: white;
  width: 280px;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.card:hover,
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 14px rgba(0,0,0,0.25);
}

.card img,
.gallery-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.card h3,
.gallery-card h3 {
  color: #1e6f78;
  margin-bottom: 8px;
}

.card p,
.gallery-card p {
  font-size: 14px;
  color: #444;
}

/* FOOTER */
.footer {
  background-color: #1b2a41;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 40px;
}

.footer .navbar {
  background-color: transparent;
}

.footer .navbar a:hover {
  background-color: rgba(255,255,255,0.1);
}

/* CONTACT PAGE – LIGHT FRAMED BOX */
.contact-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.contact-box-light {
  background-color: white;
  width: 420px;
  padding: 30px;
  border-radius: 12px;
  border: 3px solid #e8c07d;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-box-light h2 {
  text-align: center;
  color: #1e6f78;
  margin-bottom: 20px;
}

.contact-box-light label {
  font-size: 14px;
  color: #1b2a41;
  margin-bottom: 6px;
  display: block;
}

.contact-box-light label span {
  color: #c73e3e;
}

.name-row {
  display: flex;
  gap: 10px;
}

.contact-box-light input,
.contact-box-light textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background-color: #faf7f2;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-box-light textarea {
  height: 90px;
  resize: none;
}

.submit-btn-light {
  background-color: #1e6f78;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 20px;
  cursor: pointer;
  display: block;
  margin: 10px auto 0;
  font-size: 15px;
  transition: 0.3s;
}

.submit-btn-light:hover {
  background-color: #164f54;
  transform: scale(1.05);
}

/* IMAGE ATTRIBUTION */
.source {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

/* ================================
   INTERACTIVE MAP SECTION
================================ */
.map-section {
  text-align: center;
  margin: 60px 0 40px;
}

.map-section h2 {
  color: #1e6f78;
  font-size: 2rem;
  margin-bottom: 10px;
}

.map-container {
  max-width: 850px;
  margin: 0 auto;
  border: 3px solid #e8c07d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* ================================
   BOOKING BUTTONS (FINAL VERSION)
================================ */
.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  background: #f7f4ef;
  border-top: 4px solid #e8c07d;
}

.booking-buttons h2 {
  width: 100%;
  text-align: center;
  color: #1e6f78;
  font-size: 2rem;
  margin-bottom: 10px;
}

.booking-buttons p {
  width: 100%;
  text-align: center;
  color: #1b2a41;
  margin-bottom: 25px;
}

/* BUTTON STYLE */
.booking-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 2px solid #e8c07d;
  border-radius: 14px;
  padding: 14px 24px;
  text-decoration: none;
  color: #1b2a41;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* ICONS */
.booking-btn img {
  width: 42px;
  height: 42px;
  transition: transform 0.3s ease;
}

/* HOVER EFFECTS */
.booking-btn:hover img {
  transform: scale(1.1);
}

.booking-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* Glow animation */
.booking-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
  transition: all 0.5s ease;
}

.booking-btn:hover::before {
  left: 100%;
}

/* Colour accents */
.booking-btn.visit:hover {
  background: #1e6f78;
  color: white;
}

.booking-btn.tours:hover {
  background: #e8c07d;
  color: white;
}

.booking-btn.tfl:hover {
  background: #1b2a41;
  color: white;
}

/* RESPONSIVE FIXES */
@media (max-width: 600px) {
  .hero-image img {
    width: 90%;
  }

  .contact-box-light {
    width: 90%;
  }

  .booking-btn {
    width: 90%;
    justify-content: center;
  }

  .map-container iframe {
    height: 250px;
  }
}
/* ================================
   CUTE BOOKING BUTTONS (NO ICONS)
================================ */
.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
  background: #fff7f0;
  border-top: 4px solid #f3cba5;
  margin-top: 40px;
}

.booking-buttons h2 {
  width: 100%;
  text-align: center;
  color: #e28b6d;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.booking-buttons p {
  width: 100%;
  text-align: center;
  color: #b06f4e;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* BUTTON STYLE */
.booking-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  color: #5a4a42;
  background: #ffffff;
  border: 3px solid #f3cba5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover bounce */
.booking-btn:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* Soft shimmer */
.booking-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  transition: all 0.6s ease;
}

.booking-btn:hover::before {
  left: 120%;
}

/* Pastel colour themes */
.booking-btn.visit {
  background: #e8f8ff;
  border-color: #a8d8ea;
}

.booking-btn.visit:hover {
  background: #d2f1ff;
}

.booking-btn.tours {
  background: #ffeef1;
  border-color: #f7c5cc;
}

.booking-btn.tours:hover {
  background: #ffdce3;
}

.booking-btn.tfl {
  background: #f4efff;
  border-color: #c7b8ea;
}

.booking-btn.tfl:hover {
  background: #e7ddff;
}

/* Mobile */
@media (max-width: 600px) {
  .booking-btn {
    width: 90%;
    text-align: center;
  }
}
/* ================================
   CUTE BOOKING BUTTONS (NO ICONS)
================================ */
.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 40px 20px;
  background: #fff7f0;
  border-top: 4px solid #f3cba5;
  margin-top: 40px;
}

.booking-buttons h2 {
  width: 100%;
  text-align: center;
  color: #e28b6d;
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.booking-buttons p {
  width: 100%;
  text-align: center;
  color: #b06f4e;
  margin-bottom: 25px;
  font-size: 1rem;
}

/* BUTTON STYLE */
.booking-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  color: #5a4a42;
  background: #ffffff;
  border: 3px solid #f3cba5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover bounce */
.booking-btn:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

/* Soft shimmer */
.booking-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
  transition: all 0.6s ease;
}

.booking-btn:hover::before {
  left: 120%;
}

/* Pastel colour themes */
.booking-btn.visit {
  background: #e8f8ff;
  border-color: #a8d8ea;
}

.booking-btn.tours {
  background: #ffeef1;
  border-color: #f7c5cc;
}

.booking-btn.tfl {
  background: #f4efff;
  border-color: #c7b8ea;
}

/* NEW BUTTONS */
.booking-btn.observatory {
  background: #fff4d6;
  border-color: #f5d28b;
}

.booking-btn.observatory:hover {
  background: #ffe9b3;
}

.booking-btn.cutty {
  background: #e9ffe8;
  border-color: #b7e6b5;
}

.booking-btn.cutty:hover {
  background: #d4ffd2;
}

/* Mobile */
@media (max-width: 600px) {
  .booking-btn {
    width: 90%;
    text-align: center;
  }
}
/* ABOUT PAGE – OUR MISSION SECTION (CENTERED + WIDE) */
.mission-section {
  width: 90%;              /* takes most of the page */
  max-width: 900px;        /* but not too wide */
  margin-left: auto;       /* centers horizontally */
  margin-right: auto;      /* centers horizontally */
  margin-top: 40px;
  margin-bottom: 40px;

  background: #ffffff;
  padding: 35px 40px;
  border-radius: 14px;
  border: 3px solid #e8c07d;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  text-align: center;
}
.main-content {
  width: 100%;
  display: block;
}
