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

html, body {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  width: 100%;
  color: #222;
  position: relative;
}

:root{
    --hero-link-color: #000;
    --hero-link-hover-color: blue;
}

/*--Hero Section--*/

/* Base Navigation Styles */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 12%;
    background-color: #fff;
    padding: 16px 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Logo */
.top-nav img {
    width: 140px;
    height: auto;
}

/* Navigation Links */
#nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

#nav-links a {
    text-decoration: none;
    color: var(--hero-link-color, #222);
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 8px 14px;
    transition: color 0.3s ease;
}

#nav-links a:hover {
    color: var(--hero-link-hover-color, #007bff);
}

/* CTA (Book Now) */
#nav-links .deco {
    border: 2px solid #007bff;
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #007bff;
    color: #fff;
    transition: all 0.3s ease;
}

#nav-links .deco:hover {
    background-color: #e0ecff;
    color: #000;
    border-color: #000;
}

/* Hamburger Icon (Mobile only) */
.top-nav .icon {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 975px) {
    /* Structure shift for small screens */
    .top-nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
    }

    /* Hamburger visible */
    .top-nav .icon {
        display: block;
    }

    /* Hide links initially */
    #nav-links {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 16px 0;
        transition: max-height 0.3s ease;
    }

    /* Shown state */
    #nav-links.responsive {
        display: flex;
    }

    #nav-links a {
        color: #222;
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
        font-size: 1rem;
    }

    #nav-links a:last-child {
        border-bottom: none;
    }

    /* Book Now button */
    #nav-links .deco {
        margin-top: 8px;
        align-self: center;
    }
}

/*--Home Section--*/
.home {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  overflow: hidden;
  color: white;
}

/* Background + tint layer */
.home-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/gallery-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

 /*Add the blue tint as a layer on top of the image */
.home-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 130, 0.3);  /*blue tint */
}

/* Heading text */
.overlay-heading {
  position: relative;
  z-index: 3;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
  color: #fff;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .home {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }

  .overlay-heading {
    text-align: center;
  }
}

/*Gallery */

.gallery-section {
  padding: 60px 5%;
  background-color: #dae7ec;
  text-align: center;
}

.gallery-section span {
  color: #007bff;
  font-weight: 800;
  font-size: 1rem;
  font-family: Arial;
  border: 1px solid #fff;
  background-color: white;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 20px;
}

.gallery-section h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
}

/* Masonry style gallery */
.masonry-gallery {
  column-count: 3;
  column-gap: 16px;
  max-width: 1500px;
  margin: 0 auto;
}

.gallery-item {
  margin-bottom: 16px;
  break-inside: avoid;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.02);
}

/* Modal Styling */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.caption {
  color: #f1f1f1;
  text-align: center;
  padding: 16px;
  font-size: 1.1rem;
}

.nav-btn {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 3rem;
  padding: 12px;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
  z-index: 10000;
}

.nav-btn.left {
  left: 20px;
}

.nav-btn.right {
  right: 20px;
}

.counter {
  color: #ccc;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
  .masonry-gallery {
    column-count: 1;
  }

  .close-btn {
    top: 20px;
    right: 30px;
    font-size: 30px;
  }
}


/*--Footer Section--*/
footer {
  color: azure;
  font-family: Arial, Helvetica, sans-serif;
}

/* Container */
.foot {
  padding: 80px 10%;
  background: rgb(45, 45, 218);
  color: #efefef;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* Columns */
.foot > div {
  flex: 1 1 250px;
  text-align: center;
}

/* Icons */
footer i {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

/* Section Titles */
.foot div h3 {
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-size: 1.2rem;
}

/* Links */
.col-1 a {
  display: block;
  text-decoration: none;
  color: #efefef;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.col-1 a:hover {
  color: #cfd3ff;
}

/* Center column grows more */
.col-2 {
  flex-grow: 2;
}

/* Form */
form input {
  width: 100%;
  max-width: 400px;
  height: 45px;
  border-radius: 4px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  outline: none;
  border: none;
}

form button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

form button:hover {
  background: #fff;
  color: #2d2dda;
}

/* Footer Bottom Line */
.dev {
  background-color: rgb(45, 45, 218);
  text-align: center;
  padding: 16px 10px;
  font-size: 1rem;
}

.dev a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.dev a:hover {
  color: #cfd3ff;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .foot {
    padding: 60px 5%;
    gap: 24px;
  }

  .foot > div {
    text-align: center;
  }

  form input {
    max-width: 100%;
  }

  form button {
    width: 100%;
    max-width: 300px;
  }

  .dev {
    font-size: 0.9rem;
  }
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
}

.circle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #007bff;
  color: white;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.2s;
}

.circle-btn:hover {
  background: #005bb5;
  transform: scale(1.05);
}

.whatsapp-btn {
  background: #25d366;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}
