/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
.site-header {
  background: #F0ED9A;
  padding: 22px 0;
}

.header-inner {
  width: 92%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img:first-child { 
  height: 50px;     /* logo icon bigger */
}

.logo-area img:last-child { 
  height: 60px;     /* SHANKARAM text bigger */
}

.main-nav {
  display: flex;
  gap: 36px;
}

.main-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.main-nav a.active,
.main-nav a:hover {
  color: #2f7d32;
}

/* ================= HERO ================= */
.hero-slideshow {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.15) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.hero-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
}

.hero-overlay p {
  margin-top: 10px;
  font-size: 18px;
}

/* ===== HERO CALL POP ===== */
.hero-callout {
  position: absolute;
  top: 0%;
  right: 20px;

  background: #ffffff;        
  color: #000000;             

  padding: 10px 18px;         
  border-radius: 22px;        
  z-index: 5;

  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.hero-callout .call-number {
  display: block;
  color: #000000;             
  font-size: 15.5px;          
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

/* ================= ATITHI ================= */
.atithi-section {
  background: #F0ED9A;
  padding: 60px 20px 80px;
  text-align: center;

  /* centering fix */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.atithi-title {
  font-family: 'Dancing Script', cursive;
  font-size: 46px;
  color: #2f7d32;
  margin-top: 0;
  margin-bottom: 26px;
}

.atithi-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;              /* no box padding */
  background: none;        /* remove box */
  border-radius: 0;        /* remove rounded corners */
  box-shadow: none;        /* remove shadow */
  text-align: left;        /* Word-style paragraph */
}

/* ✨ ELEGANT, SUBTLE TEXT STYLING ✨ */
/* ✨ ELEGANT, SUBTLE TEXT STYLING ✨ */
.atithi-content p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 28px;
  color: #2a2a2a;
  letter-spacing: 0.2px;
  font-weight: 500;
  font-style: italic;     /* slant ALL paragraphs */
  text-align: justify;    /* justified alignment */
}

/* GALLERY button – unchanged */
.atithi-btn {
  display: inline-block;
  margin: 30px auto 0;
  padding: 12px 34px;
  background: #b89b5e;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}

.atithi-content .atithi-btn {
  display: table;
}
/* subtle read more link */
.read-more {
  margin-left: 6px;
  font-weight: 500;
  font-style: italic;
  color: #b89b5e;
  text-decoration: none;
  white-space: nowrap;
}

.read-more:hover {
  text-decoration: underline;
}
/* Atithi icon above heading */
.atithi-icon {
  display: block;
  margin: 0 auto 10px;
  height: 220px;
  opacity: 0.95;
}


/* ================= BOOKING STRIP ================= */
.booking-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.booking-call {
  background: #F0ED9A;
  padding: 16px;
  text-align: center;
  font-size: 18px;
  color: #5a4a2e;
}

.booking-call a {
  text-decoration: none;
  font-weight: 600;
  color: #2f3d16;
}

/* POP / BLINK ANIMATION */
@keyframes pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.pop-animation {
  animation: pop 2.5s ease-in-out infinite;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ================= FOOTER ================= */
.site-footer {
  background: #4F8F22;
  padding: 40px 0;
  color: #fff;
}

.footer-inner {
  width: 92%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;      /* centers logo + text */
  text-align: center;
  margin-left: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-logo img:first-child {
  height: 50px;
  margin-right: -2px;
}

.footer-logo img:last-child {
  height: 60px;
}

.footer-right p {
  margin-top: 8px;
  font-size: 13.5px;
  font-weight: 500;
  margin-left: 18px;   /*  shifts ONLY the text right */
}




/* ================================================= */
/* ================= ABOUT PAGE ==================== */
/* ================================================= */

.about-section-full {
  width: 100vw;
  background: #F0ED9A;
}

.about-wrapper {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 90px 0 25px;
}

/* HERO */
.about-hero {
  position: relative;
  height: 40vh;       
  min-height: 300px; 
  overflow: hidden;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.15) contrast(1.05);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.about-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0 4px 14px rgba(0,0,0,0.45);
}

/* HERO BOOKING CALL (GLOBAL – WHITE VERSION) */
.hero-contact {
  position: absolute;
  top: 1px;
  right: 20px;

  background: #ffffff;          
  color: #000000;               

  padding: 10px 20px;           
  border-radius: 30px;          
  font-size: 14.5px;            
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;

  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* phone icon */
.hero-contact i,
.hero-contact .phone-icon {
  color: #000000;               
  font-size: 16px;              
}


/* CONTENT BLOCKS */
.about-block {
  display: flex;
  align-items: flex-start;
  gap: 90px;
  margin-bottom: 30px;
}

.about-block.reverse {
  flex-direction: row-reverse;
  margin-top: 70px;
}

.about-block.reverse .about-image {
  margin-top: 110px;
}

/* TEXT */
.about-text {
  flex: 1.1;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #2f7d32;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 22px;
  font-weight: 500;
  color: #2a2a2a;
  text-align: justify;
  font-style: italic;
}

/* IMAGES */
.about-image {
  flex: 0.9;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* CERTIFICATE */
.certificate-img {
  width: 70%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 80px auto 0;
}

/* LIST */
.why-title {
  margin-top: 30px;
  font-weight: 600;
  color: #2f7d32;
}

.about-list {
  padding-left: 18px;
}

.about-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* EASY ACCESS */
.access-section {
  background: #F0ED9A;
  padding: 15px 0 70px;
}

.access-wrapper {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.access-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #8b5a2b;
  margin-bottom: 24px;
}

.access-box {
  background: rgba(255,255,255,0.45);
  padding: 24px 30px;
  border-radius: 14px;
}

.access-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15.5px;
  color: #5f5145;
  margin-bottom: 14px;
}


/* ================================================= */
/* ============== AMENITIES (FINAL) ================= */
/* ================================================= */

.amenities-section {
  background: #F0ED9A;
}

.amenities-wrapper {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 0 40px;
}

/* ROW LAYOUT */
.amenity-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 35px;
  padding: 12px 0;
}

.amenity-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.amenity-text {
  flex: 1.1;
}

.amenity-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #2f7d32;
  margin-bottom: 14px;
}

.amenity-text p {
  font-size: 17px;         
  line-height: 1.9;       
  margin-bottom: 22px;     
  font-weight: 500;        
  color: #2a2a2a;          
  text-align: justify;
  font-style: italic;
}

/* IMAGE WRAPPER */
.amenity-image {
  flex: 0.9;
  display: flex;
  justify-content: center;
}

.amenity-image img {
  width: 100%;
  max-width: 400px;       /* caps size */
  aspect-ratio: 4 / 3;    /* SAME visual size */
  object-fit: cover;
  border-radius: 14px;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.16),
    0 2px 6px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 900px) {
  .amenity-row,
  .amenity-row.reverse {
    flex-direction: column;
    gap: 24px;
  }

  .amenity-image img {
    max-width: 360px;
    aspect-ratio: 4 / 3;
  }
}



/* ================= RATES PAGE ================= */

.rates-section {
  background: #F0ED9A;
}

.rates-wrapper {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 0 60px;
}

.rates-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #2f7d32;
  margin-bottom: 30px;
}

/* TABLE */
.rates-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: #fffdf6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.rates-table th,
.rates-table td {
  padding: 14px 12px;
  text-align: center;
  font-size: 14.5px;
}

.rates-table thead th {
  background: #2f7d32;
  color: #fff;
  font-weight: 600;
}

.rates-table tr:nth-child(even) td {
  background: #f6f2e8;
}

/* GROUP SEPARATORS */
.rates-table th:nth-child(2),
.rates-table td:nth-child(2),
.rates-table th:nth-child(4),
.rates-table td:nth-child(4),
.rates-table th:nth-child(6),
.rates-table td:nth-child(6),
.rates-table th:nth-child(8),
.rates-table td:nth-child(8) {
  border-left: 3px solid rgba(47, 125, 50, 0.35);
}

/* BOX STYLE */
.rates-box {
  background: #f8f2e6;
  border-left: 5px solid #b89b5e;
  padding: 26px 30px;
  border-radius: 12px;
  margin-top: 35px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.rates-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #2f7d32;
  margin-bottom: 16px;
}

.rates-box ul {
  padding-left: 20px;
}

.rates-box li {
  margin-bottom: 22px;     
  font-size: 17px;      
  line-height: 1.9;        
  font-weight: 500;        
  color: #2a2a2a;          
  font-style: italic;      
}

/* PAYMENT */
.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.payment-options span {
  padding: 10px 22px;
  border: 2px solid #b89b5e;
  border-radius: 10px;
  background: #fffdf7;
  font-size: 14.5px;
  font-weight: 600;
  color: #4a3b1f;
}

.availability-note {
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
  color: #2a2a2a;
  font-style: italic;
}

/* MOBILE */
@media (max-width: 900px) {
  .rates-title {
    font-size: 32px;
  }

  .rates-box h3 {
    font-size: 22px;
  }
}



/* ================= GALLERY PAGE ================= */

.gallery-section {
  background: #F0ED9A;
}

.gallery-wrapper {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 0 60px;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #2f7d32;
  margin-bottom: 35px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.gallery-item {
  background: #fffdf6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.1);
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ================= LIGHTBOX ================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

/* FIXED VIEWPORT FOR IMAGE */
.lightbox-img {
  width: 80vw;
  height: 80vh;
  object-fit: contain;     /* ⭐ ensures consistent size */
  border-radius: 14px;
  background: #000;
}

/* CLOSE BUTTON */
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* ARROWS */
.lightbox-arrow {
  position: absolute;
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.lightbox-arrow.left {
  left: 30px;
}

.lightbox-arrow.right {
  right: 30px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lightbox-img {
    width: 92vw;
    height: 75vh;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= ATTRACTIONS ================= */

@import url("gallery.css");

/* Lightbox content layout */
.lightbox-content {
  display: flex;
  gap: 30px;
  width: 80vw;
  height: 80vh;
  align-items: center;
}

.lightbox-text {
  max-width: 420px;
  color: #fff;
}

.lightbox-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 12px;
}

.lightbox-text p {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  line-height: 1.8;
  font-size: 15px;
}

/* Mobile layout */
@media (max-width: 768px) {
  .lightbox-content {
    flex-direction: column;
    height: auto;
  }
}

/* Make links visible inside lightbox text */
.lightbox-text a {
  color: #F0ED9A;              /* soft yellow from your palette */
  text-decoration: underline;
  font-weight: 500;
}

.lightbox-text a:hover {
  color: #ffffff;              /* bright white on hover */
}



/* ================= CONTACT PAGE ================= */

.contact-page {
  background: #F0ED9A;
  padding: 80px 20px;
}

.contact-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* HEADINGS */
.contact-page h2 {
  font-family: 'Playfair Display', serif;
  color: #2f7d32;
  margin-bottom: 22px; /* ✅ space after headings */
}

.contact-page h3 {
  font-family: 'Playfair Display', serif;
  color: #2f7d32;
}

/* ================= FORM ================= */

.contact-form-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.55);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.contact-form-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #d6cfae;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
}

.contact-form-box textarea {
  height: 120px;
  resize: none;
}

.contact-form-box button {
  background: linear-gradient(135deg, #b89b5e, #a2874f);
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.22);
}

/* ================= DETAILS ================= */

.contact-info-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.45);
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.contact-info-box p {
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 18px;
}

.contact-info-box i {
  color: #2f7d32;
  margin-right: 8px;
}

.contact-info-box a {
  color: #2f7d32;
  text-decoration: underline;
}

.contact-socials a {
  font-size: 22px;
  margin-right: 14px;
  color: #2f7d32;
}

/* MAP */
.contact-map {
  margin-top: 30px;
}

.contact-map iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* ================= CALL BAR ANIMATION ================= */

.pop-animation {
  animation: callPulse 2.8s infinite ease-in-out;
}

@keyframes callPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,255,255,0);
  }

  50% {
    transform: scale(1.015); /* 🔥 extremely subtle */
    box-shadow: 0 0 8px rgba(255,255,255,0.25);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255,255,255,0);
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .contact-wrap {
    flex-direction: column;
  }
}


/* ================= HERO CENTER TITLE (REMOVED) ================= */

.about-hero-text {
  display: none;
}

/* REMOVE underline from social icons */
.contact-socials a {
  text-decoration: none;   /* ✅ this removes the line */
}


/* ===== HERO CENTER CONTENT ===== */
.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
}

.hero-center h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #00FFFF;
  text-shadow: 0 4px 14px rgba(0,0,0,0.65);
  margin-bottom: 22px;
}

.hero-btn {
  display: inline-block;
  padding: 12px 34px;
  border: 2px solid #00FFFF;   /* CYAN border */
  color: #00FFFF;              /* CYAN text */
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #00FFFF;   /* CYAN fill */
  color: #000000;        
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-center h1 {
    font-size: 42px;
    letter-spacing: 2px;
  }
}


.highlight-gold {
  font-weight: 700;
  color: #000;   /* pure black */
}

/* ================================================= */
/* =============== HOME MOBILE CSS ================= */
/* ================================================= */

@media (max-width: 768px) {

  /* HEADER */
  .header-inner {
    flex-direction: column;
    gap: 14px;                 
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .main-nav a {
    font-size: 13px;           /* slightly smaller */
  }

  /* HERO */
  .hero-slideshow {
    height: 45vh;              /* reduce height for mobile */
  }

  .hero-center h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .hero-callout {
    left: 12%;
    right: auto;
    transform: translateX(-50%);
    top: 12px;  
    max-width: calc(100% - 24px);
  }
 
  .hero-callout .call-number {
    font-size: 14px;
    text-align: center;
    white-space: normal;             
  }

  /* ATITHI */
  .atithi-icon {
    height: 180px;
    margin-bottom: 14px;
  }

  .atithi-title {
    font-size: 34px;
  }

  .atithi-content p {
    font-size: 15.5px;
    line-height: 1.7;
  }

  /* FOOTER */
  .footer-inner {
    flex-direction: column;
    gap: 22px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .footer-right {
    margin-left: 0;
  }

  .footer-right p {
    margin-left: 0;
  }
}

/* ================================================= */
/* ============ ABOUT PAGE – MOBILE FIX ============ */
/* ================================================= */

@media (max-width: 768px) {

  /* BOOKING CALL BUTTON */
  .hero-contact {
    left: 10%;
    right: auto;
    transform: translateX(-50%);
    top: 14px;
    max-width: calc(100% - 24px);
    justify-content: center;
    text-align: center;
  }

  .about-wrapper {
    padding-top: 40px;
  }

  /* Stack text first, image after */
  .about-block,
  .about-block.reverse {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 50px;
  }

  /* Reset image offset used on desktop */
  .about-block.reverse .about-image {
    margin-top: 0;
  }

  /* Headings */
  .about-text h2 {
    font-size: 32px;
    margin-bottom: 18px;
    text-align: left;
  }

  /* Paragraphs */
  .about-text p {
    font-size: 15.5px;
    line-height: 1.75;
  }

  /* Images */
  .about-image img,
  .certificate-img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

}

/* ================================================= */
/* ========== ATTRACTIONS – MOBILE FIX ============= */
/* ================================================= */

@media (max-width: 768px) {

  /* 🔑 Remove height restriction */
  .lightbox-content {
    height: auto;        /* IMPORTANT */
    max-height: none;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
  }

  /* ✅ FIX: contain image inside viewport */
  .lightbox-img {
    width: 100%;
    max-height: 40vh;     /* 👈 THIS is the key line */
    object-fit: contain; /* no cropping */
  }

  /* Make text scroll instead of cutting */
  .lightbox-text {
    max-height: 50vh;    /* readable area */
    overflow-y: auto;
    padding-bottom: 20px;
  }

  /* Keep image visible */
  .lightbox-img {
    height: auto;
    max-height: 45vh;
  }

}


