
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@500;600;700;900&display=swap');


/* ===================== #012034 primary color ===================== */
/* ===================== #265675 text ===================== */

/* ===== BASIC RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

html, body{
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a{
  text-decoration: none;
  color: var(--primary-color);
}

:root{
  --primary-color:#012034;
  --secondary-color:#265675;
  --text-color:#555;
  

}
/* ===== HERO BACKGROUND ===== */
.hero {
  height: 50vh;
  background: url('gallery-bg.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  position: relative;
}



/* ===== HEADER / NAVBAR ===== */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 15px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  z-index: 999;
  height: 4rem;
  
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  
}

/* ===== LOGO SECTION ===== */
.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-circle {
  width: 35px;
  height: 35px;
  border-radius: 10%;
  background-image: url("logo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.logo {
   font-size:25px;
  color: #012034;
  font-weight: 900;
}


/* ===== DESKTOP MENU ===== */
nav.menu ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav.menu ul li a {
  color: #012034;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

nav.menu ul li a:hover {
  color: #196ea7;
}

/* ===== HAMBURGER (HIDDEN IN DESKTOP) ===== */
.hamburger, #menu-toggle {
  display: none;
}

/* ===== RESPONSIVE STYLES (ONLY MOBILE) ===== */
  @media (max-width: 830px) {

    /* Show hamburger */
    .hamburger {
      display: block;
      font-size: 24px;
      color: #003049;
      cursor: pointer;
    }

    .logo{
      font-size:20px;
    }

    .logo-circle {
      width: 28px;
      height: 28px;
      margin-bottom:4px;
    }


    /* Convert nav to sliding drawer */
    nav.menu {
      position: fixed;
      top: 0; left: -260px;
      width: 260px;
      height: 100vh;
      background: white;
      padding-top: 80px;
      transition: 0.3s ease;
    }

    nav.menu ul {
      flex-direction: column;
      padding-left: 30px;
      gap: 25px;
    }

    nav.menu ul li a {
      font-size: 17px;
    }

    /* Slide menu when checkbox checked */
    #menu-toggle:checked + .hamburger + nav.menu {
      left: 0;
    }

    /* Hide desktop nav spacing issues */
    header {
      padding: 12px 20px;
    }
  }

/* ===== HERO TEXT ===== */
.hero h1, .hero p, .btn {
  position: relative;
  z-index: 1;

}



.hero h1 { font-size: 65px; font-weight: 800; }
.hero p { margin-top: 14px; font-size: 18px; max-width: 650px; color: white; }

.btn {
  margin-top: 30px;
  padding: 14px 35px;
  background: #003049;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s;
}

.btn:hover { background: #03395d; }

@media (max-width: 768px) {

   .hero{
    height: 50vh;
  }
  .hero h1 { 
    font-size:20px;
    padding-top: 5rem;
  
  }
  .hero p{
    font-size: 15px;
  }
  .btn{
    font-size: 10px; 
  }
}

@media (max-width: 1024px){
  .hero {
    background-attachment: scroll; /* Prevent lag / glitch on phones */
  }
}







/* ===================================================================
                         GALLERY PAGE
=================================================================== */
/* ===================== PREMIUM GALLERY ===================== */

.premium-gallery {
  padding: 40px 80px 100px;
  background: #fff;
}

/* Calm editorial grid */
.premium-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Image tiles */
.premium-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  cursor: pointer;
  background: #f3f3f3;
  transition: 
    transform .6s ease,
    box-shadow .6s ease,
    filter .6s ease;
}

/* Premium hover */
.premium-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  filter: brightness(92%);
}

/* ===================== TITLE REFINEMENT ===================== */

.gallery-title {
  text-align: center;
  margin-top: 20px;

}
.gallery-title h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #012034;
}

.gallery-title p {
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.6;
  color: #666;
}

/* ===================== LIGHTBOX (PREMIUM FEEL) ===================== */

.lightbox {
  backdrop-filter: blur(6px);
}
.lightbox.active {
  display: flex;
}

/* Lightbox base: hidden by default and full-screen overlay */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  z-index: 10000;
  padding: 20px;
}

.lightbox .lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
}

.lightbox .close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
}

.lightbox .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  user-select: none;
}
.lightbox .prev { left: 18px; }
.lightbox .next { right: 18px; }

.lightbox-img {
  max-width: 72%;
  max-height: 78%;
  border-radius: 6px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.arrow {
  font-size: 38px;
  opacity: 0.6;
}

.arrow:hover {
  opacity: 1;
}

/* ===================== RESPONSIVE ===================== */

/* Tablets */
@media (max-width: 1024px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-grid img {
    height: 230px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .premium-gallery {
    padding: 30px 20px 80px;
  }

  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .premium-grid img {
    height: 180px;
  }

  .gallery-title h1 {
    font-size: 30px;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .premium-grid {
    grid-template-columns: 1fr;
  }

  .premium-grid img {
    height: 220px;
  }
}







/* Floating contact buttons */
.float-container {
  position: fixed;
  right: 20px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  align-items: flex-end;
  pointer-events: auto;
}

/* Individual button base */
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 56px;
  height: 56px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s;
  opacity: 1;
  will-change: transform, opacity;
}

/* icons */
.float-btn i {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
}

/* small text label */
.float-label {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

/* specific colors */
.float-btn.whatsapp {
  background: linear-gradient(180deg,#25d366,#1da851);
}
.float-btn.call {
  background: linear-gradient(180deg,#0b56a3,#064a8a);
}

/* hover/focus */
.float-btn:hover,
.float-btn:focus {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  text-decoration: none;
  outline: none;
}

/* accessible focus */
.float-btn:focus-visible {
  outline: 3px solid rgba(255,255,255,0.16);
  outline-offset: 3px;
}

/* small round icon-only variant when space is tight */
.float-container.compact .float-btn {
  padding: 0;
  width: 56px;
  border-radius: 50%;
  justify-content: center;
}

.float-container.compact .float-label {
  display: none;
}

/* RESPONSIVE: on narrow screens, center horizontally and show icons only */
@media (max-width: 520px) {
  .float-container {
    right:20%;
    transform: translateX(100%);
    bottom: 18px;
    flex-direction: column;
    gap: 12px;
    align-items:right;
  }

  /* show smaller buttons */
  .float-btn {
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
  }

  .float-label { display: none; }
}

/* OPTIONAL: hide on print */
@media print {
  .float-container { display: none !important; }
}









.main-footer {
  background: var(--primary-color);
  padding: 70px 50px 25px;
  color: #ddd;
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  text-align: center;
  flex-wrap: wrap;
}

.footer-box h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-box h4 {
  margin-top: 12px;
  font-size: 15px;
  color: white;
}

.footer-box p, .footer-box a {
  display: block;
  margin: 6px 0;
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  line-height: 1.5;
}

.footer-box p i { color: #ccc; margin-right: 6px; }
.footer-box a:hover, .footer-box p:hover { color: var(--secondary-color); }

.footer-socials { margin-top: 10px; }
.footer-socials a {
  display: inline-block;
  font-size: 18px;
  margin: 0 6px;
  color: #ccc;
  transition: .3s;
}
.footer-socials a:hover { color: var(--secondary-color); }

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 45px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  font-size: 13px;
  color: #aaa;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover { color: var(--secondary-color); }

/* RESPONSIVE FOOTER */
@media (max-width: 992px) {
  .footer-container { gap: 50px; }
  .footer-box p, .footer-box a { font-size: 13px; }
}

@media (max-width: 768px) {
  .main-footer { padding: 50px 25px 25px; }
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
  .footer-box h3 { font-size: 17px; }
  .footer-box p, .footer-box a { font-size: 13px; }
}

@media (max-width: 450px) {
  .footer-socials a { font-size: 17px; margin: 0 4px; }
  .footer-bottom p { font-size: 12px; }
}


