/* -----------------------------------
   YOUR ORIGINAL STYLES.CSS (UNCHANGED)
--------------------------------------*/

:root{
  --bg:#1f2224;
  --card:#2a2c2e;
  --muted:#bfc1c3;
  --accent:#ffd400;
  --accent-dark:#e6c200;
  --radius:10px;
  --maxw:1200px;
}
*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:Inter, system-ui;
  background:var(--bg);
  color:#fff;
}
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}
/* --------------------------------------- */
/* UNIVERSAL NAVIGATION FOR ALL PAGES      */
/* --------------------------------------- */

nav{
  width:100%;
  background:rgba(15,15,15,0.70);
  backdrop-filter:blur(10px);
  position:fixed;
  top:0; left:0;
  z-index:999;
  padding:18px 0;
  box-shadow:0 4px 20px rgba(0,0,0,0.4);
}

nav .nav-inner{
  max-width:var(--maxw);
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
}

/* LOGO */
nav .logo img{
  height:58px;
  object-fit:contain;
  filter:drop-shadow(0 0 4px rgba(0,0,0,0.6));
}

/* MENU */
nav ul{
  list-style:none;
  display:flex;
  gap:40px;
}

nav ul li a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:22px;
  letter-spacing:0.5px;
  transition:0.2s;
}

nav ul li a:hover{
  color:var(--accent);
  transform:translateY(-2px);
}

/* MOBILE MENU ICON */
nav .menu-btn{
  display:none;
  font-size:36px;
  color:#fff;
  cursor:pointer;
}

/* ------------------------------------------------ */
/* BOOK NOW BUTTON — THICKER, YELLOW, MORE NOTICEABLE */
/* ------------------------------------------------ */

nav ul li .book-btn-nav{
  background:#ffcc00;
  color:#000 !important;
  padding:12px 26px;
  border-radius:10px;
  font-size:20px;
  font-weight:800;
  box-shadow:0 0 12px rgba(255,230,0,0.5);
  transition:0.3s ease;
  animation:bookPulse 2.5s infinite ease-in-out;
}

nav ul li .book-btn-nav:hover{
  background:#ffe066;
  transform:scale(1.07);
  box-shadow:0 0 18px rgba(255,230,0,0.8);
}

/* Glow animation */
@keyframes bookPulse{
  0% { box-shadow:0 0 8px rgba(255,220,0,0.4); }
  50% { box-shadow:0 0 18px rgba(255,220,0,0.9); }
  100% { box-shadow:0 0 8px rgba(255,220,0,0.4); }
}

/* ------------------------------------------------ */
/* MOBILE RESPONSIVE NAV                            */
/* ------------------------------------------------ */

@media(max-width:900px){
  nav ul{
    display:none;
    position:absolute;
    top:85px;
    right:20px;
    background:#111;
    padding:25px 35px;
    flex-direction:column;
    gap:22px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.55);
  }

  nav ul.show{
    display:flex;
  }

  nav .menu-btn{
    display:block;
  }
}

/* UNIVERSAL HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps perfect clarity */
    filter: brightness(55%) saturate(1.1);
    z-index: 1;
}

/* TEXT */
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-inner h1 {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.hero-inner p {
    font-size: 20px;
    font-weight: 300;
    color: #ffffffd9; /* slight transparency */
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px){
    .hero {
        min-height: 300px;
	padding-top: 60px;
	padding-bottom: 20px;
    }

    .hero-inner h1 {
        font-size: 34px;
    }

    .hero-inner p {
        font-size: 16px;
    }
}

/* BOOK BUTTON WITH IMAGE */
.btn.book-image{
  display: inline-block;
  margin-top: 28px;
  width: auto;
  padding: 10px 22px; 
  background-image:url('button-bg-placeholder.jpg');
  background-size:cover;background-position:center;color:#fff;border:none;
}

/* SERVICES */
.services{margin-top:80px}
.services h2{font-size:36px;margin-bottom:6px;font-weight:700}
.muted{color:var(--muted)}
.service-grid{margin-top:26px;display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:26px}
.card{background:var(--card);padding:28px;border-radius:12px;text-align:center;box-shadow:0 8px 26px rgba(0,0,0,0.45);transition:0.2s}
.card:hover{transform:translateY(-4px)}
.card.highlight{background:var(--accent);color:#111;font-weight:700}
.icon{font-size:40px;margin-bottom:12px}

/* ROOMS SECTION */
.rooms-section{
  background-image:url('comfort-bg-placeholder.jpg');
  background-size:cover;background-position:center;background-repeat:no-repeat;
  padding:110px 0;border-radius:14px;margin-top:70px;
  box-shadow:0 12px 40px rgba(0,0,0,0.5);
}
.rooms{
  display:grid;grid-template-columns:1fr 450px;gap:70px;align-items:center;
}
.rooms img{width:100%;border-radius:14px;box-shadow:0 12px 40px rgba(0,0,0,0.5)}
.rooms-section .rooms div .btn{
  display: inline-block;
  margin-top: 28px;
  width: auto;
}
.rooms-section .muted{margin-top:12px;display:block}

/* ROOMS IMAGE SLIDER */
.rooms-slider {
    position: relative;
    width: 100%;
    margin: 40px 0;
    display: flex;
    align-items: center;
}

.rooms-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.rooms-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.room-card {
    flex: 0 0 calc(33.33% - 20px);
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrows */
.rooms-slider .arrow {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 10px;
    z-index: 10;
    transition: 0.2s;
}

.rooms-slider .arrow:hover {
    background: rgba(0,0,0,0.7);
}

@media (max-width: 768px) {

    /* STACK TEXT ABOVE IMAGE */
    .rooms {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    /* REMOVE DESKTOP WIDTH CONSTRAINT */
    .rooms img {
        width: 100%;
    }

    /* ADJUST SECTION PADDING FOR MOBILE */
    .rooms-section {
        padding: 70px 20px;
        margin-top: 40px;
        border-radius: 12px;
    }

    /* BUTTON FULL WIDTH (OPTIONAL BUT NICE UX) */
    .rooms-section .btn {
        width: 100%;
        text-align: center;
    }

    /* SLIDER CARDS — FULL WIDTH */
    .room-card {
        flex: 0 0 100%;
        aspect-ratio: 1 / 1;
        border-radius: 12px;
    }

    .rooms-track {
        gap: 12px;
    }

    .rooms-slider .arrow {
        padding: 8px 12px;
        font-size: 18px;
        border-radius: 8px;
    }
}

/* --------------------------------------- */
/*         ABOUT SECTION(homepage)         */
/* ----------------------------------------*/

.about h2,
.values h2,
.gallery h2,
.contact-box h2,
.map-section h2 {
    font-size: 38px;
    margin-bottom: 14px; /* reduced */
}

.about-grid .btn{
  display: inline-block;
  margin-top: 28px;
  width: auto;
}

/* Generic About Text */
.about p {
    max-width: 900px;
    font-size: 18px;
    margin-bottom: 18px;
}

/* Generic about-grid fallback */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* reduced from 50 */
    margin-top: 20px; /* reduced */
}

.about-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* ===============================
   ABOUT SECTION(Homepage) — MOBILE FIXES
================================ */
@media (max-width: 600px) {

  /* Headings */
  .about h2,
  .values h2,
  .gallery h2,
  .contact-box h2,
  .map-section h2 {
      font-size: 30px;
      margin-bottom: 12px;
      text-align: center;
  }

  /* About text */
  .about p {
      font-size: 16px;
      max-width: 100%;
      text-align: center;
  }

  /* Grid → Stack */
  .about-grid {
      grid-template-columns: 1fr;
      gap: 28px;
      margin-top: 16px;
      text-align: center;
  }

  /* Images */
  .about-grid img {
      max-width: 100%;
      height: auto;
      border-radius: 14px;
  }

  /* Button */
  .about-grid .btn {
      margin-top: 22px;
      align-self: center;
  }
}

/* ----------------------------------- */
/*       ABOUT PAGE SPECIFIC CSS       */
/* ----------------------------------- */

.hero-inner {
     padding-top: 100px;
     padding-bottom: 50px;
}

.about-page {
    background-color: #1f2224;
    color: #eaeaea;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.about-page .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 45px 0; /* reduced from 70 */
}

/* Headings */
.about-page h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 16px; /* reduced */
    border-left: 4px solid #f7d500;
    padding-left: 15px;
}

.about-page h3 {
    font-weight: 700;
    margin-bottom: 12px;
}

/* About Grid (Our Story) */
.about-page .about-grid {
    grid-template-columns: 5fr 4fr;
    gap: 30px;
    margin-top: 10px; /* key fix */
    align-items: center;
}

/* Our Story Text */
.about-page .about-grid .about-text h3 {
    font-size: 34px;
    margin-bottom: 12px;
}

.about-page .about-grid .about-text p {
    font-size: 18px;
    line-height: 1.75;
}

/* Our Story Image */
.about-page .about-grid .slot {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

/* Gallery Images */
.about-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.about-page .gallery-grid .slot {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(247,213,0,0.15);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.about-page .gallery-grid .slot:hover {
    transform: scale(1.02);
}

/* ----------------------------- */
/*        MOBILE OPTIMIZATION    */
/* ----------------------------- */

@media(max-width:900px){

    .about-page .container {
        padding: 35px 0;
    }

    .about-page .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-page h2 {
        font-size: 32px;
    }

    .about-page .about-grid .about-text h3 {
        font-size: 28px;
    }

    .about-page .about-grid .slot,
    .about-page .gallery-grid .slot {
        height: 220px;
    }
}



/* Values */
.about-page .values {
    margin-top: 70px;
}

.about-page .value-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 30px;
}

.about-page .card {
    background: #2a2d31;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(247,213,0,0.08);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: .3s;
}

.about-page .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.6);
}

.about-page .card h3 {
    color: #f7d500;
}

/* Values */
.about-page .values {
    margin-top: 70px;
}

.about-page .value-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 30px;
}

.about-page .card {
    background: #2a2d31;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(247,213,0,0.08);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: .3s;
}

.about-page .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.6);
}

.about-page .card h3 {
    color: #f7d500;
}

/* Contact CTA */
.about-page .contact-box {
    background: linear-gradient(145deg,#2a2d31,#232528);
    padding: 50px 30px;
    text-align:center;
    border-radius: 14px;
    margin-top: 80px;
    border:1px solid rgba(247,213,0,0.1);
    box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.about-page .btn {
  display: inline-block;
  margin-top: 28px;
  width: auto;
}

/* Map */
.about-page .map-section {
    padding:80px 0;
}

.about-page .map-wrapper {
    margin-top:30px;
    border-radius:12px;
    overflow:hidden;
    border:1px solid rgba(247,213,0,0.15);
    box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.about-page .map-wrapper iframe {
    width:100%;
    height:350px;
}

/* Responsive */
@media(max-width:850px){

  .about-page .hero{height:300px;}
  .about-page .hero-overlay{padding:30px;}
  .about-page .hero-overlay h1{font-size:34px;}
  .about-page .hero-overlay p{font-size:16px;}

  .about-page .about-grid{grid-template-columns:1fr;}
  .about-page .value-cards{grid-template-columns:1fr;}
  .about-page .map-wrapper iframe {height:280px;}
}


/* -----------------------------------
   CONTACT PAGE – MODERN DARK THEME
--------------------------------------*/

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #1f2224;
    color: #eaeaea;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* -------------------------
   CONTACT SECTION
----------------------------*/
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* LEFT INFO SIDE */
.contact-info h2 {
    border-left: 4px solid #f7d500;
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 30px;
}

.contact-info p {
    margin-bottom: 25px;
    color: #cfcfcf;
    line-height: 1.6;
    font-size: 16px;
}

.info-item {
    margin-bottom: 18px;
    font-size: 16px;
    color: #e0e0e0;
}

/* WhatsApp button */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #25D366;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* BOOK BUTTON */
.book-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 32px;
    border: 2px solid #f7d500;
    color: #f7d500;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.book-btn:hover {
    background: #f7d500;
    color: #1f2224;
    box-shadow: 0 6px 20px rgba(247,213,0,0.35);
}

/* -------------------------
   CONTACT FORM SECTION
----------------------------*/
.contact-form {
    background: #2a2d31;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(247,213,0,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #1f2224;
    color: #fff;
    border: 1px solid #383838;
    border-radius: 7px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Focus */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #f7d500;
}

/* -------------------------
   INPUT VALIDATION STYLES
----------------------------*/

/* Neutral state before typing */
.validated-form input:placeholder-shown,
.validated-form textarea:placeholder-shown {
    border-color: #383838;
}

/* Invalid input */
.validated-form input:invalid,
.validated-form textarea:invalid {
    border-color: #e74c3c;
}

/* Valid input */
.validated-form input:valid,
.validated-form textarea:valid {
    border-color: #2ecc71;
}

/* Invalid + focus */
.validated-form input:focus:invalid,
.validated-form textarea:focus:invalid {
    box-shadow: 0 0 6px rgba(231, 76, 60, 0.35);
}

/* Valid + focus */
.validated-form input:focus:valid,
.validated-form textarea:focus:valid {
    box-shadow: 0 0 6px rgba(46, 204, 113, 0.35);
}

/* Disable submit if form invalid */
.validated-form:has(input:invalid, textarea:invalid) .btn {
    opacity: 0.55;
    pointer-events: none;
}

/* -------------------------
   BUTTON
----------------------------*/
.btn {
    background: #f7d500;
    color: #1f2224;
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #ffdf3b;
    transform: translateY(-2px);
}

/* -------------------------
   MAP SECTION
----------------------------*/
.map-section {
    padding: 70px 0;
}

.map-section h2 {
    border-left: 4px solid #f7d500;
    padding-left: 15px;
    font-size: 30px;
}

.map-wrapper {
    margin-top: 25px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(247,213,0,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.map-wrapper iframe {
    width: 100%;
    height: 380px;
    border: none;
}

/* -------------------------
   RESPONSIVE DESIGN
----------------------------*/

@media (max-width: 900px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* TEXT SIDE */
    .contact-info {
        text-align: center;
    }

    .contact-info h2 {
        border-left: none;
        border-bottom: 3px solid #f7d500;
        padding-left: 0;
        padding-bottom: 10px;
        display: inline-block;
        margin: 0 auto 20px;
    }

    .contact-info p {
        font-size: 16px;
        max-width: 100%;
    }

    .info-item {
        font-size: 15px;
    }

    /* BUTTONS STACK */
    .whatsapp-btn,
    .book-btn {
        display: block;
        width: 100%;
        margin: 12px 0 0;
        text-align: center;
    }

    /* FORM */
    .contact-form {
        padding: 24px;
        margin-top: 0;
    }

    .btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }

    /* MAP */
    .map-wrapper iframe {
        height: 280px;
    }
}





/* ----------------------------- */
/*        VALUES SECTION         */
/* ----------------------------- */

.values {
    text-align: center;
}

.value-cards {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #161616;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.06);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 15px rgba(255,204,0,0.4);
}

.card h3 {
    color: var(--accent);
    margin-bottom: 10px;
}


/* ----------------------------- */
/*         GALLERY SECTION       */
/* ----------------------------- */

.gallery p {
    margin-bottom: 25px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* ROOMS BUTTON*/
.rooms-slider .btn {  
  display: inline-block;
  margin-top: 28px;
  width: auto;
}

