/* 
IMPORT GOOGLE FONT (Fredoka)
*/
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap');


/* 🔷 GLOBAL RESET */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  font-family: 'Fredoka', sans-serif;
  background-color: #f3f3f3;
  overflow-x: hidden;

  display: flex;
  flex-direction: column;
}


/* 🔷 TOP NAV BAR */
.top-nav {
  background-color: #0047c7;
  color: white;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 20px;

  flex-wrap: wrap;
  gap: 10px;
}


/* 🔷 LOGO */
.nav-left {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.nav-left a {
  text-decoration: none;
  color: white;
}

.nav-left a:visited {
  color: white;
}

.nav-left a:hover {
  color: #dddddd;
}


/* 🔷 NAV LINKS */
.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}


/* 🔷 BOOK NOW BUTTON */
.nav-button {
  background-color: white;
  color: #0047c7;

  padding: 10px 16px;
  border-radius: 25px;

  text-decoration: none;
  font-weight: 700;
  font-size: 16px;

  white-space: nowrap;
}


/* 🔷 PAGE LAYOUT */
.page-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  padding: 20px;
}

.content {
  text-align: center;
}


/* 🔷 MAIN TITLE */
.content h1 {
  color: #0047c7;
  font-weight: 700;
  margin: 0;

  font-size: clamp(36px, 10vw, 120px);
}


/* 🔷 IMAGE SAFETY */
img {
  max-width: 100%;
  height: auto;
}


/* 🔷 MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .top-nav {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 10px;
  }

  .nav-left {
    font-size: 24px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .nav-button {
    width: 100%;
    text-align: center;
  }

  .content h1 {
    font-size: clamp(32px, 12vw, 60px);
  }
}
