* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fix footer positioning by removing full height from html/body */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: black;
  color: #333333;
}

@media (max-width: 768px) {
  .full-moon-content {
    flex-direction: column;
  }

  .video-container {
    max-width: 100%;
  }
}

body {
    font-family: Arial, sans-serif;
    background: black;
    color: #333333;
}

/* Navifation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 86px;
    width: 100%;
    position: fixed;
    top: 0;
    background: #033457;
    z-index: 1000;
}

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

.logo img {
    height: 70px; /* Adjust as needed */
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 24px; /* Adjust icon size */
    color: white; /* Default color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #00659C; /* Change color on hover */
}

/* HERO CONTAINER */
.hero-mosaic {
  background: #000000;
  padding-top: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px; /* lock each row to 240px */
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  padding: 10px;
  box-sizing: border-box;
  background: #000000;
}

.tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* Left tall image */
.tile1 {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Remaining tiles (regular grid cells) */
.tile2 {
  grid-column: 2;
  grid-row: 1;
}

.tile3 {
  grid-column: 3;
  grid-row: 1;
}

.tile4 {
  grid-column: 2;
  grid-row: 2;
}

.tile5 {
  grid-column: 3;
  grid-row: 2;
}

@media (max-width: 768px) {
  .hero-mosaic {
    height: auto;
    padding-top: 70px;
  }

  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
  }

  .mosaic-tile {
    aspect-ratio: 1 / 1;
  }
}

/* Intro Section */
.intro-section {
  background: #f7f7f7;
  padding: 20px;
  margin: 20px;
}

.intro-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  color: #033457;
  margin-bottom: 40px;
  text-align: center;
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.intro-text {
  flex: 1 1 500px;
}

.intro-images {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: center;
}

.intro-images img {
  width: 100%;
  height: auto;
  max-height: 300px; /* adjust to match your text height visually */
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.intro-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #033457;
}

.intro-section h2 {
  font-size: 1.3rem;
  margin-top: 30px;
  color: #00659C;
}

.intro-section .subhead {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333333;
}

.intro-section p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
  }

  .section-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

.intro-cta {
  text-align: center;
  margin-top: 30px;
}

.book-button {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  color: #033457;
  border: 2px solid #033457;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.book-button:hover {
  background: #033457;
  color: white;
}

/* Suites Section */
.suite-section {
  padding: 20px;
  margin: 20px;
  max-width: 1200px;
  box-sizing: border-box;
}

.suite-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.suite-text {
  flex: 1 1 50%;
  padding: 0 20px;
}

.suite-title {
  font-size: 1.8rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.suite-description {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  font-weight: 400;
}

.suite-gallery {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-image {
  width: 100%;
  max-width: 500px;
  height: 320px; /* Force consistent height */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.thumbnail-row img {
  width: calc(25% - 7.5px); /* 4 images with 10px gaps */
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.thumbnail-row img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .suite-row {
    flex-direction: column;
  }

  .suite-text, .suite-gallery {
    flex: 1 1 100%;
  }
}

.suite-row-reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.blue-bg {
  background-color: #033457;
}

@media (max-width: 768px) {
  .suite-row-reverse {
    flex-direction: column;
  }
}

.suite-features ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.suite-features li {
  margin-bottom: 8px; /* reduced from 15px */
  line-height: 1.4;
  font-size: 1rem;
  color: #e0e0e0;
}

.suite-features li ul {
  margin-top: 4px; /* tighter grouping under headings */
  margin-left: 20px;
  padding-left: 0;
}

.suite-features li ul li {
  font-size: 0.95rem;
  color: #cccccc;
  margin-bottom: 4px;
}

/* Information Section */
.info {
    width: 50%;
}

.button {
    background: #00659C;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.button:hover {
    background: #033457;
}

.suite-cta {
  margin-top: 60px;
  text-align: center;
}

.book-suite-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #033457;
  border: 2px solid #033457;
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.book-suite-button:hover {
  background-color: #033457;
  color: #ffffff;
}
/* Full Moon Section Container */
.full-moon-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  font-family: inherit;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.full-moon-section h2 {
  font-size: 2rem;
  color: #033457;
  text-align: center;
  margin-bottom: 30px;
}

/* Content Layout: Table + Video */
.full-moon-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}

.schedule-container,
.video-container {
  flex: 1 1 48%;
  min-width: 300px;
  max-width: 600px;
}

/* Moon Table */
.moon-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  text-align: center;
}

.moon-table th,
.moon-table td {
  padding: 12px;
  border-bottom: 1px solid #ccc;
  color: #333;
  vertical-align: middle;
}

.moon-table th {
  background: #eaeaea;
  font-weight: 600;
}

/* Video Embed Styling */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}

/* Responsive Stack on Mobile */
@media (max-width: 768px) {
  .full-moon-content {
    flex-direction: column;
  }

  .schedule-container,
  .video-container {
    max-width: 100%;
  }
}


/* Footer Content */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px;
    background: #033457;
    color: white;
    flex-wrap: wrap;
    text-align: center;
}

.footer-column {
    flex: 1;
    padding: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
    color: #ffcc00;
}

.recent-content iframe {
    width: 100%;
    max-width: 300px;
    height: 200px;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter input[type="email"] {
    padding: 10px;
    width: 80%;
    margin-bottom: 10px;
    border: 1px solid #00659C;
    border-radius: 5px;
    text-align: center;
}

.newsletter button {
    padding: 10px 15px;
    background: #00659C;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: bold;
    border-radius: 5px;
}

.newsletter button:hover {
    background: #ffcc00;
    color: #033457;
}

.contact-social {
    text-align: right;
}

.contact-social p {
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: right;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: #ffcc00;
}
