/* ========== GENERAL STYLES ========== */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    line-height:1.6em;
}
.header img {
    width: 100vw;     /* Full viewport width */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Optional: Remove any global container margin/padding for this section */
.header {
    margin: 0;
    padding: 0;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== NAVBAR ========== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 15px 20px;
    position: relative;
}

.logo img {
    max-height: 50px;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.nav-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

.contact-options {
    display: flex;
    gap: 10px;
}

.contact-item i {
    color: #fff;
    font-size: 18px;
}

/* ========== CONTENT SECTIONS ========== */
.container.header {
    max-width: 100%;
    height:600px;
    padding: 0;
}


.info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px auto;
    max-width: 1300px;
    padding: 0 20px;
}

.info-box {
    flex: 1 1 30%;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 280px;
    max-width: 380px;
}

.info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 1300px;
    padding: 0 20px;
}

.info-box {
    flex: 1 1 30%;
    max-width: 380px;
    min-width: 280px;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;         /* ensures all boxes stretch */
}

/* Make all boxes the same height in a row */
.info-section > .info-box {
    display: flex;
    flex-direction: column;
}

/* Ensure content grows inside */
.info-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    /*margin-bottom: 15px;*/
}

.info-box h2 {
    font-family: Roboto;
    font-size: 24px;
    margin: 10px 0;
    line-height: 24px;
    font-weight: normal;
}

.info-box p {
    font-size: 14px;
    flex-grow: 1;
    margin-bottom: 20px;
    color:#5a5a5a;
    line-height:1.6em;
}

/* Align button to bottom */
.info-box .btn {
    text-decoration: none;
    padding: 10px 15px;
    background-color: #002356;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s;
    margin-top: auto;
}

.info-box .btn:hover {
    background-color: #002356;
}

.promo-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.promo-bg {
    width: 100%;
    height: auto;
    display: block;
}

.promo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 20px;
    width: 100%;
    max-width: 700px;
}

.promo-content h2 {
    font-size: 16px;
    color: black;
    margin-top: 0px;
    font-weight:normal;
    line-height: 1.2;
}
.promo-content .highlight {
    font-weight: bold;
    display: inline-block;
    margin-top: 10px; /* Pull text closer */
}
.promo-content span {
    color: black;
    font-size: 30px;
    font-weight:bold;
    font-family:Roboto;
}
.promo-circle {
  height: 245px;
  width: 245px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* Glassmorphism effect */
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);

  padding: 20px;
  margin: auto;
}
.promo-circle:hover {
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.35);
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
}
.promo-content p {
    font-size: 16px;
    margin-bottom: 10px;
    color: black;
     margin-top: 9px;
}

.promo-content .btn {
    background-color: #002356;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
}

/*.why-stay h2{*/
/*    font-size:40px;*/
/*    font-family:Roboto;*/
/*    font-weight:normal;*/
/*    word-break: normal;*/
/*}*/
/*.why-stay {*/
/*    color:#5a5a5a;*/
/*    flex-wrap: wrap;*/
/*    justify-content: center;*/
/*    gap: 30px;*/
/*    margin: 40px auto;*/
/*    max-width: 1300px;*/
/*    padding: 0 145px;*/
/*}*/
/*.why-stay .btn{*/
/*    text-decoration: none;*/
/*    padding: 10px 15px;*/
/*    background-color: #4B0082;*/
/*    color: white;*/
/*    border-radius: 5px;*/
/*    font-size: 14px;*/
/*    transition: background 0.3s;*/
/*    margin-top: auto;*/
/*}*/

/*.why-heading {*/
/*  text-align: center;*/
/*  color: black;*/
/*  font-family: 'Georgia', serif;*/
/*  font-weight: 500;*/
  
/*  line-height: 1.3;*/
/*  padding: 0 10px;*/
  
/*  width: 100%;*/
/*  display: block;*/
/*}*/
.hidden-text {
    display: none;
}

.icon-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:60px;
    padding: 60px 20px;
  background-color: #fafafa;
}

.icon-box {
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-box img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
  align:center;
}

.icon-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222;
}

.icon-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.section, .instagram-section {
    text-align: center;
    padding: 20px;
}

.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px;
}
.ig-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  /*grid-template-columns: repeat(3, 1fr);*/
  gap: 10px;           /* modern */
  grid-gap: 10px;      /* fallback for older engines */
}

@media (max-width: 900px) {
  /*.ig-grid { grid-template-columns: repeat(2, 1fr); }*/
}

@media (max-width: 520px) {
  /*.ig-grid { grid-template-columns: 1fr 1fr; }*/
}

.ig-item { border: 2px solid #e5e5e5; border-radius: 4px; overflow: hidden; background: #fff; }
.ig-item a { display: block; position: relative; aspect-ratio: 1 / 1; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* ========== MEDIA QUERIES FOR RESPONSIVENESS ========== */
@media (max-width: 1024px) {
    .info-box {
        flex: 1 1 45%;
    }

    .icon-box {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 20px;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .info-box {
        flex: 1 1 100%;
    }

    .icon-section {
    flex-direction: column;
    align-items: center;
  }

  .icon-box {
    max-width: 100%;
  }

    .intro h2, .promo-content h2 {
        font-size: 20px !important;
    }
    .promo-circle {
        height: 140px;
        width: 140px;
        padding: 15px;
    }

  .promo-content h2 {
    font-size: 14px;
  }

  .promo-content span {
    font-size: 20px;
  }

  .promo-content p {
    font-size: 12px;
  }

  .promo-content .btn {
    font-size: 10px;
    padding: 8px 16px;
  }
  
}

@media (max-width: 480px) {
    .icon-box h3 {
        font-size: 60%;
    }

    .promo-content h2 {
        font-size: 18px;
    }

    .footer {
        font-size: 14px;
    }
     .nav-menu a {
        font-size: 11px;
    }
    .promo-circle {
    width: 180px;
    height: 180px;
    padding: 15px;
  }

  .promo-circle h2 {
    font-size: 0.9rem !important;
  }

  .promo-circle .highlight {
    font-size: 1.2rem;
  }

  .promo-circle p {
    font-size: 0.75rem;
  }

  .promo-circle .btn {
    font-size: 0.7rem;
    padding: 6px 12px;
  }
}
/* ==== HEADER ==== */
.main-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Georgia', serif;
}

.logo img {
  height: 50px;
}

.logo span {
  font-size: 16px;
  font-weight: bold;
  color: #001b44;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
    font-size: 13px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    padding: 5px 10px;
    display: inline-block;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}

.contact-info a {
  color: #888;
  font-size: 16px;
}

/* ==== MOBILE HEADER ==== */
.mobile-menu-icon {
  display: none;
  font-size: 18px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #fff;
  padding: 15px 20px;
  border-top: 1px solid #ddd;
}

.mobile-nav.show {
  display: flex;
}

.mobile-nav a {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.contact-icons {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.contact-icons a {
  font-size: 18px;
  color: #000;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }
   .nav-menu a {
        font-size: 12px;
    }
}
