/* ===== GLOBAL ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  background-color: white;
  border-bottom: 2px solid #2d6a97;
  padding: 10px 210px;
  position: relative;
  z-index: 1000;
}

.logo-title {
  display: flex;
  align-items: center;
}

.logo {
  height: 110px;
  margin-right: 15px;
}

.site-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #2d6a97;
}

.title-line1,
.title-line2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2d6a97;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  margin-left: 140px;
  gap: 25px;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #2d6a97;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: #f0f0f0;
}

.book-now-btn {
  background-color: #2d6a97;
  color: white !important;
  padding: 12px 25px;
  border-radius: 5px;
  white-space: nowrap;
}

.book-now-btn:hover {
  background-color: #235577;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  color: #2d6a97;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 500px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-text {
  position: absolute;
  left: 5%;
  top: 10%;
  max-width: 40ch;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 8px;
}

.hero-text h1 {
  margin-top: 0;
}

.hero-subtext {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero-text .btn {
  display: inline-block;
  background-color: #2d6a97;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.hero-text .btn:hover {
  background-color: #235577;
}

/* ===== WHO COMES FOR CUDDLES SECTION ===== */
.cuddles-heading {
  margin-top: 0rem; /* adjust as needed */
}
.info-section {
  background-color: #eff3f7; /* Light blue background */
  padding: 40px 20px;
}

.info-container {
  max-width: 900px;
  margin: 0 auto;
  color: #1b4a70;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
}

.info-container h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: center;
}

.info-container p {
  margin-bottom: 20px;
}

.info-container ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin: 0;
}

/* ===== FOOTER ===== */
footer {
  background-color: #2d6a97;
  color: white;
  text-align: center;
  padding: 15px;
}

footer a {
  color: white;
}

/* ===== LOADING OVERLAY ===== */
#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  height: 120px;
  margin-bottom: 15px;
}

.loading-content p {
  font-size: 1.4rem;
  color: #2d6a97;
  font-weight: bold;
}

/* ===== RESPONSIVE ===== */

/* Tablet & smaller screens */
@media (max-width: 1300px) {
  .navbar {
    padding: 10px 15px;
    justify-content: center;
    gap: 5rem;
  }

  .hamburger {
    display: flex;
    align-items: center;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background-color: white;
    border-top: 1px solid #ccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin: 0;
    padding: 0;
    gap: 0;
    z-index: 2000;
  }

  .nav-links.active {
    max-height: 900px;
  }

  .nav-links li {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
  }

  .nav-links a {
    display: block;
    text-align: center;
    width: 100%;
    padding: 18px 0;
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #2d6a97;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a:hover {
    background-color: #f0f0f0;
  }
}

/* Hero text below image on mobile */
@media (max-width: 900px) {
  .hero-text {
    position: static;
    max-width: 100%;
    background: rgba(45, 106, 151, 0.08);
    color: #1b4a70;
    border-radius: 0;
    text-align: center;
  }
    .hero-text .btn {
    margin-left: auto;
    margin-right: auto;
    display: inline-block; /* Keeps button centered */
  }
  .cuddles-heading {
    margin-top: 0rem; /* adjust as needed */
  }
}
