body{
    width: 100%;
    font-family: Raleway;
    margin: 0;
    padding: 0;
}

.price-color{
  font-weight: bold;
}

.container{
  width: 100%;
  
}

/* Scroll Navbar hidden by default */
#scroll-navbar {
  position: fixed;
  top: -80px;
  left: 0;
  width: 100%;
  background: #0b1d26;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.5s ease;
  opacity: 0;
  backdrop-filter: blur(10px);
}

/* When visible */
#scroll-navbar.visible {
  top: 0;
  opacity: 1;
}

/* Navbar content layout */
.nav-content {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
}

.nav-logo {
  font-size: 1.4rem;
  color: #e6f0f5;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #e6f0f5;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #2b8dfc;
}




/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 60px 20px;
  background: #ffffff;
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #002b5c;
  margin-bottom: 40px;
}

/* ===== GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ===== IMAGE CARDS ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: #f2f2f2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3; /* uniform size */
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover effect (desktop only) */
@media (hover: hover) {
  .gallery-item:hover img {
    transform: scale(1.08);
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.85);
  transition: transform 0.45s ease;
  border-radius: 12px;
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

/* ===== CLOSE BUTTON ===== */
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.lightbox-close:hover {
  opacity: 0.7;
}


.floor8 {
  background: #0b1d26; /* Dark blue from your logo */
  padding: 70px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #e6f0f5;
}

.footer-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

/* Logo part */
.footer-logo {
  text-align: center;
}

.footer-logo img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #1da1f2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  margin-bottom: 15px;
}

.footer-logo h2 {
  font-size: 1.6rem;
  color: #d3e6f5;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.footer-logo p {
  color: #b0c7d6;
  font-size: 0.95rem;
}

/* Socials */
.footer-socials {
  text-align: center;
}

.footer-title {
  font-size: 1.2rem;
  color: #d3e6f5;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #112f3c;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.social-link:hover {
  transform: scale(1.1);
}

/* Hover colors */
.instagram:hover { background: #E1306C; color: white; }
.youtube:hover { background: #FF0000; color: white; }
.whatsapp:hover { background: #25D366; color: white; }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  text-align: center;
  color: #9ab8c9;
  font-size: 0.9rem;
}




@media (max-width: 700px) {
  .nav-content {
    flex-direction: column;
  }

  .nav-links {
    gap: 12px;
  }
}



/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 600px) {
  .gallery-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo img {
    width: 90px;
    height: 90px;
  }
}