html, body {
  height: 100%;
  overflow-x: clip;
  margin: 0;
  padding: 0;
}

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

body {
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  min-height: 100vh;
  font-family: Roboto, sans-serif;
  display: flex;
  flex-direction: column;
}

@font-face {
  font-family: 'MikadoMedium';
  src: url('assets/fonts/MikadoMedium.woff2') format('woff2'),
       url('assets/fonts/MikadoMedium.woff') format('woff'),
       url('assets/fonts/MikadoMedium.ttf') format('truetype'),
       url('assets/fonts/MikadoMedium.otf') format('opentype');
  font-style: normal;
}

@font-face {
  font-family: 'Mikado Bold';
  src: url('assets/fonts/Mikado-Bold.woff2') format('woff2'),
       url('assets/fonts/Mikado-Bold.woff') format('woff'),
       url('assets/fonts/Mikado-Bold.ttf') format('truetype'),
       url('assets/fonts/Mikado-Bold.otf') format('opentype');
  font-style: normal;
  font-weight: bold;
}

header {
  background-image: url("assets/header-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 150px;
  width: 100%;
  position: relative;
  z-index: 1000;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
}

.logo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  padding: 20px 0;
}

.desktop-logo {
  display: block;
  width: 250px;
  margin-top: 20px;
  margin-left: 20px;
}

.mobile-logo {
  display: none;
}

/* Mobile view overrides */
@media (max-width: 768px) {
  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: block;
    width: 150px;
    margin-top: 5px;
    margin-left: 20px;
  }
}

.nav-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 20px;
  margin-top: 20px;
}

.nav-wrapper a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 20px 20px;
  text-transform: capitalize;
  font-family: 'MikadoMedium', sans-serif;
}

.nav-wrapper a:hover {
  background-color: #13244b;
}

.image-wrapper {
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}

.centered-image {
  width: 100%;
  max-width: 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.menu-toggle {
  display: none;
  font-size: 35px;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 50px;
  right: 35px;
  z-index: 1001;
}

.close-menu {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  margin-bottom: 20px;
  text-align: right;
}

.nav-wrapper.active .close-menu {
  display: block;
}

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

.social-links a {
  color: white;
  font-size: 20px;
  transition: color 0.3s ease;
}

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

.header-social {
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 0px 35px;
  z-index: 999;
}

.mobile-social {
  display: none;
  justify-content: flex-end;
  gap: 20px;
  margin-top: auto;
  padding-top: 30px;
}

/* --- MOBILE STYLES --- */
@media (max-width: 768px) {
  .logo-nav {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
  }

  .nav-wrapper {
    display: flex;
    position: fixed;
    top: 0px;
    right: -500px;
    width: 330px;
    height: 100vh !important;
    background-color: rgba(19, 36, 75, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    overflow-y: auto;
    z-index: 2000;
    transition: right 0.3s ease;
    margin: 0 0;
  }

  .nav-wrapper.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrapper.active ~ .menu-toggle {
    display: none !important;
  }

  .header-social {
    display: none;
  }

  .mobile-social {
    display: flex;
  }

  .social-links a {
    font-size: 22px;
  }

  .nav-wrapper a {
    display: block;
    font-size: 18px;
    margin: 0 0;
    text-align: right;
  }
}

/* --- DESKTOP STYLES --- */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.content-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

footer {
  width: 100%;
}

.footer-top,
.footer-bottom {
  height: 40px;
  display: flex;
  align-items: center;
  color: white;
  padding: 0 20px;
}

.footer-top {
  background-color: #13244b;
}

.footer-bottom {
  background-color: #6a5281;
  font-size: 14px;
  color: white;
  padding: 15px 20px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom .container div {
  flex: 1;
  min-width: 200px;
}

.footer-bottom .container div:last-child {
  text-align: right;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.hidden {
  display: none !important;
}

.zoom-hover {
  transition: transform 0.3s ease;
}

.zoom-hover:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  table tr {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  table td {
    width: 100% !important;
    display: block;
    text-align: center;
    padding: 15px 0;
  }

  table td a img {
    max-width: 120px;
  }

  table td a h2 {
    font-size: 16px;
  }
}

div[style*="display: flex;"] {
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

div[style*="text-align: center;"] {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  max-width: 180px;
  border-radius: 150px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.desktop-logo img,
.mobile-logo img {
  max-width: none;
  border-radius: 0;
  box-shadow: none;
}

.title-image {
  border-radius: 0px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.important-updates-image {
  border-radius: 0px;
  box-shadow: 0 0px 0px rgba(0,0,0,0.0);
}

h3 {
  color: #13244b;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
}

.important-updates {
  margin-top: 60px;
  margin: 0px 20px 40px 20px;
  background-color: white;
  padding: 30px 20px;
  border-radius: 20px;
  max-width: 1150px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .responsive-table-container {
    width: 50% !important;
  }
}

a img[src="assets/button-book-now.svg"] {
  display: block;
  background: none;
  box-shadow: none;
  border: none;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.image-grid img {
  width: 150px;
  height: 175px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  margin-bottom: 35px;
}

/* Mobile: 2 per row */
@media (max-width: 768px) {
  .image-grid img {
    width: calc(50% - 10px);
  }
}

.event-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background-color: white;
  margin: 0px 20px 20px 20px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  flex: 1 1 75%;
}

.event-image {
  flex: 0 0 120px;
}

.event-image img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .event-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .event-image {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .event-box h3,
  .event-box h4,
  .event-box p {
    text-align: left;
  }
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery img {
  width: calc(33.333% - 10px);
  border-radius: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery img {
    width: calc(50% - 10px);
  }
}

