/* ===========================
   SECTION HEADERS
   =========================== */

section h2 {
  font-size: 2rem;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: .5rem;
}

section p {
  color: var(--muted);
  font-size: 1rem;
}


    /* =========================================
   CLEAN FEATURES
   ========================================= */

.features{
    padding:20px 0;
   background: inherit;
}

.features h2{
    text-align:center;
    margin:0 0 24px;
    font-size:1.75rem;
    font-weight:700;
    color:#1f2937;
    letter-spacing:-0.3px;
    position:relative;
}

/* Soft underline */
.features h2::after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    background:#2b6fe8;
    margin:10px auto 0;
    border-radius:3px;
    opacity:0.85;
}

/* Grid */

.fun-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:8px 28px;
}

/* Item */

.fun-card{
    display:flex;
    align-items:center;
    gap:12px;

    padding:8px 0;

    background:none;
    border:none;
    border-radius:0;
    box-shadow:none;
}

/* No hover */

.fun-card:hover{
    transform:none;
    box-shadow:none;
}

/* Icon */

.feature-icon{
    width:34px;
    height:34px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#2b6fe8;
}

.feature-icon svg{
    width:20px;
    height:20px;
    stroke:currentColor;
    stroke-width:1.7;
    fill:none;
}

/* Text */

.fun-card span:last-child{
    font-size:.96rem;
    font-weight:500;
    color:#374151;
    line-height:1.45;
}

/* Mobile */
@media (max-width:768px){

    .features{
        padding:26px 0;
    }

    .fun-cards{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 16px;
    }

    .fun-card{
        padding:10px 0;
    }

}




/* =========================================
   PARK FACILITIES — FLOWING TICK LIST
   ========================================= */

.park {
    padding: 20px 0;
    background: inherit; /* matches page background */
}

.park h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.7rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: -0.3px;
}

/* Flowing list */
.park-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 4px;
}

/* Each facility item */
.park-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 8px 0;

    background: none;
    border: none;
    box-shadow: none;
}

/* Tick icon bubble */
.park-item::before {
    content: "✔";
    display: flex;
    align-items: center;
    justify-content: center;

    width: 26px;
    height: 26px;

    border-radius: 50%;
    background: #eaf2ff;
    color: #2b6fe8;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Text */
.park-item {
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
}

/* Mobile — 2 aside */
@media (max-width: 768px) {
    .park-flow {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 16px;
    }

    .park-item {
        padding: 6px 0;
    }
}

/* =========================================
   FULL WIDTH GALLERY SLIDER
========================================= */

.gallery {
    padding: 15px 0;
}

.gallery-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    width: 100%;
    border-radius: 12px;
    scroll-behavior: smooth;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

/* Counter */
.gallery-counter {
    text-align: center;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

/* Hint */
.gallery-hint {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-slide img {
        height: 270px;
    }
}


/* ===========================
   LIGHTBOX VIEWER
   =========================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

/* Swipe hint for mobile */
@media (max-width: 768px) {
  .lightbox img {
    width: 95%;
  }
}
.gallery img {
  position: relative;
}

.gallery img::after {
  content: "Click to enlarge";
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity .2s ease;
}

.gallery img:hover::after {
  opacity: 1;
}
.gallery-hint {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

/* ===========================
   CONTACT FORM
   =========================== */

form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

input,
textarea {
  padding: 1rem;
  border-radius: var(--radius);
  border: 2px solid var(--blue);
  font-size: 1rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

textarea {
  height: 140px;
  resize: none;
}

button {
  padding: 1rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(46,204,113,0.4);
  transition: 0.2s;
}

button:hover {
  background: #27ae60;
  transform: translateY(-3px);
}

/* ===========================
   LOCATION MAP
   =========================== */

.location iframe {
  margin-top: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===========================
   FAQ (details/summary)
   =========================== */

details {
  background: var(--white);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 6px solid var(--pink);
  margin-bottom: 1rem;
  cursor: pointer;
}

summary {
  font-weight: 700;
  color: var(--blue);
  font-size: 1.1rem;
}

details p {
  margin-top: .6rem;
  color: var(--muted);
}

/* ===========================
   FOOTER
   =========================== */
footer .container{
    padding:0;
}
footer{
    text-align:center;
    padding:1.5rem 0;
    background:var(--blue);
    color:#fff;
}

.site-credit{
    margin-top:1rem;
    padding-top:1rem;
    border-top:1px solid rgba(255,255,255,.15);
    opacity:.75;
    font-size:.85rem;
}

.site-credit a{
    color:#fff;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 700px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .btn {
    padding: .9rem 1.4rem;
    font-size: 1rem;
  }
}

.gallery .grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
}

.modal-box{
  background:white;
  max-width:520px;
  width:100%;
  border-radius:16px;
  padding:2rem;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,0.3);
}

.modal-box h2{
  margin-bottom:1rem;
}

.modal-box p{
  margin-bottom:1rem;
  color:#374151;
}

.modal-box .small{
  font-size:0.85rem;
  opacity:0.7;
}

.modal-box button{
  margin-top:1rem;
  padding:0.9rem 1.4rem;
  border:none;
  border-radius:999px;
  background:#ff4fa3;
  color:white;
  font-weight:700;
  cursor:pointer;
}

.modal-box button:hover{
  background:#ff2f8f;
}
.modal-overlay{
  display:none;
}




/* Section Layout - CHANGED to a deep luxury dark background */
.welcome-section {
  padding: 3rem 1.5rem;
  background-color: #1a2b32; /* Deep oceanic slate for rich contrast */
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.welcome-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Fancy Subheading Tag */
.welcome-tag {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow, #ffc107);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Typing Title Style - CHANGED text to crisp white */
.welcome-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff; 
  margin-bottom: 1.5rem;
  min-height: 3.5rem; /* Prevents layout shifting while typing */
  line-height: 1.3;
}

/* Blinking cursor effect */
.welcome-title::after {
  content: '|';
  color: var(--yellow, #ffc107);
  animation: blink 0.8s infinite;
}

/* Supporting Paragraph - CHANGED to a soft, readable muted white */
.welcome-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8); 
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Mini Feature Tags */
.welcome-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Feature Item - CHANGED background to translucent dark overlay */
.feature-item {
  background: rgba(255, 255, 255, 0.07); 
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  backdrop-filter: blur(4px); /* Trendy glassmorphism effect */
}

/* JS Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes */
@keyframes blink {
  50% { opacity: 0; }
}

/* Small screens adjustments */
@media (max-width: 600px) {
  .welcome-title { font-size: 1.8rem; min-height: 5rem; }
  .welcome-lead { font-size: 1rem; }
}

/* ===========================
   FULLSCREEN CONTACT POPUP
   =========================== */

.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 20px;
}

.popup-box {
  background: #fff;
  width: 100%;
  max-width: 380px;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  animation: popupFade .25s ease;
}

@keyframes popupFade {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 32px;
  cursor: pointer;
  color: #333;
}

.popup-btn {
  display: block;
  background: #ff8c00;
  color: white;
  padding: 12px;
  margin: 12px 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.popup-btn.whatsapp {
  background: #25D366;
   }
#reviews{
    display:grid;
    gap:20px;
    margin-top:20px;
}

.review-card{
    background:#fff;
    border-radius:16px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.review-card h3{
    margin-bottom:8px;
}

.review-card p{
    color:#555;
    line-height:1.6;
}

/* ===========================
   ABOUT
   =========================== */

.about {
  padding: var(--section-space) 0;
}

.about h2{
   margin-top:25px;
   text-align:center;
    margin-bottom:20px;
}

.about p{
    max-width:850px;
    margin:0 auto;
    line-height:1.8;
    font-size:1.05rem;
    color:#4b5563;
   white-space: pre-line;
}

.gallery h2,
.gallery p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#galleryTitle {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#galleryDescription {
  max-width: 800px;
  line-height: 1.6;
  font-size: 1.05rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

#galleryHint {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
.gallery p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.contact-success {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #2ecc71;
  color: white;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}

/* visible state */
.contact-success.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
  pointer-events: auto;
}
