/* ====== Base & Typography ====== */
:root{
  --bg:#faf7f4;
  --card:#ffffff;
  --muted:#7b7b7b;
  --accent:#b8860b; /* gold accent */
  --accent-2:#f08f00;
  --text:#111;
  --container:1200px;
  --radius:12px;
  --glass: rgba(255,255,255,0.7);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  margin:0;
}

/* container util */
.container{max-width:var(--container); margin:0 auto; padding:0 18px}

/* utility */
.reveal{opacity:0; transform:translateY(18px); transition:all 0.6s ease}

/* ====== Header (keep your header markup) ====== */
.header{position:fixed; top:0; left:0; right:0; background: rgba(255,255,255,0.95); backdrop-filter: blur(6px); z-index:10000; box-shadow:0 6px 18px rgba(30,30,30,0.06)}
.header .header-inner{display:flex; align-items:center; justify-content:space-between; gap:20px; padding:14px 18px; max-width:var(--container); margin:0 auto}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:var(--text)}
.brand-logo{background:linear-gradient(135deg,var(--accent),var(--accent-2)); color:white; width:44px; height:44px; border-radius:8px; display:flex; align-items:center; justify-content:center; font-weight:800}
.brand h1{margin:0;font-family:"Playfair Display", serif; font-size:18px}
.brand p{margin:0;font-size:12px;color:var(--muted)}

/* nav */
.nav a{margin-left:16px; color:var(--text); text-decoration:none; font-weight:600}
.cta{margin-left:18px}

/* mobile menu button */
.menu-btn{background:none;border:none;font-size:22px}

/* ====== HERO (light) ====== */
.hero{padding:110px 0 40px; position:relative; overflow:hidden}
.hero-inner{display:grid; grid-template-columns: 1fr 480px; gap:30px; align-items:center}
.hero-media img{width:100%; border-radius:16px; box-shadow:0 14px 40px rgba(30,30,30,0.08); display:block; object-fit:cover; height:420px}
.hero-copy{padding:12px 6px}
.hero-title{font-family:"Playfair Display", serif; font-size:44px; margin:0 0 10px}
.hero-sub{color:var(--muted); margin:0 0 18px; font-size:18px}
.hero-cta .btn-primary{margin-right:10px}

/* hero welcome badge */
.hero-welcome{margin-top:12px; display:inline-block; background:linear-gradient(90deg,#fff8e6,#fff3db); color:#7a4d00; padding:6px 12px; border-radius:8px; font-weight:600; font-size:14px}

/* ====== Cards / general elements ====== */
.card-light{background:var(--card); border-radius:var(--radius); box-shadow:0 8px 30px rgba(30,30,30,0.04); padding:22px; margin:30px auto}
.section-title{font-size:26px; margin:0}
.lead{color:var(--muted); margin-top:6px}

/* ====== Quick booking form ====== */
.quick-booking .booking-form{display:block}
.grid-4{display:grid; grid-template-columns: repeat(4, 1fr); gap:14px}
.form-group label{display:block; margin-bottom:6px; color:var(--muted); font-size:14px}
.form-group input, .form-group select{width:100%; padding:10px; border-radius:8px; border:1px solid #e7e3df; background:white; font-size:14px}
.form-actions{margin-top:12px; text-align:right}

/* ====== Rooms grid ====== */
/* ./* ROOM SECTION */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.room {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: .35s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp .8s forwards;
}

.room:nth-child(1) { animation-delay: .1s; }
.room:nth-child(2) { animation-delay: .2s; }
.room:nth-child(3) { animation-delay: .3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.room-media {
    height: 210px;
    background-size: cover;
    background-position: center;
}

.room-body {
    padding: 20px;
}

.room-title {
    font-size: 22px;
    font-weight: 700;
}

.room-desc {
    margin: 8px 0 15px;
    color: #555;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.room-actions {
    display: flex;
    justify-content: space-between;
}

.btn-ghost {
    background: none;
    border: 2px solid #007bff;
    padding: 8px 16px;
    border-radius: 8px;
    color: #007bff;
    font-weight: 600;
    transition: .3s;
}

.btn-ghost:hover {
    background: #007bff;
    color: #fff;
}

.btn-primary {
    background: #007bff;
    border: none;
    padding: 8px 16px;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    background: #005fcc;
}

/* ====== Facilities ====== */
.facility-grid{display:grid; grid-template-columns:repeat(4, 1fr); gap:20px; margin-top:18px}
.facility-card{background:var(--card); border-radius:12px; padding:12px; text-align:center; box-shadow:0 8px 22px rgba(20,20,20,0.03)}
.facility-card img{width:100%; height:160px; object-fit:cover; border-radius:8px}

/* ====== Footer ====== */
.site-footer{margin-top:50px; padding:30px 0}
.footer-grid{display:flex; gap:40px; justify-content:space-between; align-items:flex-start}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:18px; border-top:1px solid #f0edea; margin-top:16px}
.footer-links a{margin-left:12px; color:var(--muted); text-decoration:none}

/* ====== Small screens ====== */
@media (max-width:1024px){
  .hero-inner{grid-template-columns: 1fr 360px}
  .rooms-grid{grid-template-columns:repeat(2, 1fr)}
  .facility-grid{grid-template-columns:repeat(2, 1fr)}
  .grid-4{grid-template-columns: repeat(2,1fr)}
}

@media (max-width:700px){
  .hero-inner{grid-template-columns: 1fr}
  .hero-media img{height:220px}
  .rooms-grid{grid-template-columns: 1fr}
  .facility-grid{grid-template-columns: 1fr}
  .grid-4{grid-template-columns: 1fr}
  .hero{padding:90px 0 20px}
  body{padding-top:100px} /* keep content below fixed header */
}

/* reveal animation when class .show is added by JS */
.reveal.show{opacity:1; transform:none}





/* ROOM DETAILS PAGE */
.room-details {
  margin-top: 40px;
  margin-bottom: 60px;
}

.room-details h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.room-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.room-image img {
  width: 100%;
  border-radius: 15px;
}

.room-info h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.room-info p {
  margin-bottom: 12px;
  color: #ddd;
}

.room-info .cta {
  padding: 12px 22px;
  background: #4a9eff;
  border-radius: 10px;
  display: inline-block;
  font-weight: 600;
  color: white;
  margin-top: 15px;
}

@media (max-width: 720px) {
  .room-details-grid {
    grid-template-columns: 1fr;
  }
}


/* Desktop Login/Register links */
.nav .login-link,
.nav .register-link {
  color: #333;
  margin-left: 15px;
  transition: 0.2s;
}

.nav .login-link:hover,
.nav .register-link:hover {
  color: #000;
}

/* Mobile nav version */
.mobile-nav a {
  padding: 12px;
  border-bottom: 1px solid #2a2a2a;
}

.mobile-nav .login-link,
.mobile-nav .register-link {
  color: #ccc;
}


.welcome-hero {
    color: #fff;
    font-size: 24px;
    margin-top: 15px;
    font-weight: 500;
    animation: fadeIn 1.3s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}



.welcome-text {
    color: #fff;
    margin-left: 15px;
    font-weight: 500;
}

.welcome-text-mobile {
    display: block;
    padding: 12px;
    color: #ddd;
    font-size: 16px;
}

.logout-link {
    color: #ff8080;
    margin-left: 15px;
}

.welcome-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    background: #222;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid #333;
}


.book-room-image {
    width: 100%;
    max-width: 500px;   /* controls maximum size */
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 20px auto;
}

/* 7yNlu4JeIr8eQrWPi@ */




/* WRAPPER */
.book-section {
    display: flex;
    gap: 50px;
    padding: 40px 20px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 40px auto;
    margin-top: 120px; 
}

/* LEFT COLUMN */
.book-left {
    flex: 1;
}

.room-image-wrapper {
    width: 100%;
    max-width: 550px;
    overflow: hidden;
    border-radius: 16px;
}

.book-room-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* ROOM TEXT */
.room-title {
    margin-top: 20px;
    font-size: 32px;
    font-weight: 700;
}

.room-description {
    margin: 12px 0 20px;
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    max-width: 550px;
}

.room-price {
    font-size: 24px;
    font-weight: bold;
    color: #111;
}
.room-price span {
    font-size: 16px;
    color: #777;
}

/* RIGHT COLUMN – BOOK FORM */
.book-right {
    flex: 1;
    background: #111;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    color: #fff;
}

.form-title {
    font-size: 26px;
    margin-bottom: 20px;
}

/* FORM STYLE */
.booking-form label {
    display: block;
    margin: 14px 0 6px;
    font-size: 14px;
    color: #bbb;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #222;
    color: #fff;
    outline: none;
    margin-bottom: 12px;
    font-size: 15px;
}

.booking-form input:focus,
.booking-form select:focus {
    border: 2px solid #4a9eff;
}

.book-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 17px;
    border-radius: 10px;
    background: #4a9eff;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.2s;
}

.book-submit-btn:hover {
    background: #1d7ae6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .book-section {
        flex-direction: column;
        padding: 20px;
    }

    .book-right, 
    .book-left {
        width: 100%;
    }

    .book-room-image {
        height: 280px;
    }
}


/* premium style */

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.book-section {
    display: flex;
    gap: 50px;
    padding: 40px 20px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 130px auto 60px;
    margin-top: 200px;
    animation: fadeInUp 0.7s ease-in-out;
}

/* LEFT IMAGE */
.room-image-wrapper {
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    backdrop-filter: blur(4px);
}

.book-room-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: 0.4s ease;
}

.book-room-image:hover {
    transform: scale(1.04);
}

/* ROOM TEXT */
.room-title {
    margin-top: 20px;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1px;
}

.room-description {
    margin: 16px 0 22px;
    color: #444;
    font-size: 17px;
    line-height: 1.7;
}

.room-price {
    font-size: 26px;
    font-weight: bold;
    color: #111;
}
.room-price span {
    font-size: 15px;
    color: #777;
}

/* BOOKING FORM — GLASS CARD */
.book-right {
    flex: 1;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.5);
    color: #fff;
    animation: fadeInUp 1s ease;
}

.form-title {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

/* FLOATING LABEL EFFECT */
.booking-form label {
    margin: 0;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 6px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #333;
    background: rgba(20,20,20,0.9);
    color: #fff;
    margin-bottom: 20px;
    transition: all 0.25s ease;
}

.booking-form input:focus,
.booking-form select:focus {
    border: 2px solid #5ab4ff;
    box-shadow: 0 0 8px rgba(90,180,255,0.6);
}

/* LUXURY GRADIENT BUTTON */
.book-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e90ff, #0466c8);
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(30,144,255,0.45);
    transition: 0.25s ease;
}

.book-submit-btn:hover {
    background: linear-gradient(135deg, #0f7df0, #004c9e);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(30,144,255,0.6);
}

/* MOBILE */
@media (max-width: 900px) {
    .book-section {
        flex-direction: column;
        margin-top: 150px;
    }

    .book-room-image {
        height: 250px;
    }

    .book-right {
        margin-top: 20px;
    }
}

/* Push page content below fixed header */
.page-offset {
    height: 120px; /* adjust if your header is taller/shorter */
}

@media (max-width: 700px) {
    .page-offset {
        height: 140px; /* more space on small screens */
    }
}



/* FORCE style on BOOK NOW button */
nav #bookNowTop,
.header .cta,
.nav .cta {
    background: #007bff !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    transition: .3s ease !important;
}

nav #bookNowTop:hover,
.nav .cta:hover {
    background: #005fcc !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
}


.status.paid { background: #c8ffd1; color:#006b1b; }
.status.approved { background:#b3e5ff; color:#005f99; }
.status.rejected { background:#ffb3b3; color:#8b0000; }
.status.cancelled { background:#ddd; color:#555; }
.status.pending { background:#ffe9b3; color:#a87300; }

/* TESTIMONIALS SECTION */
.testimonials {
  padding: 80px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
}

.t-text {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* USER REVIEWS */
.reviews {
  padding: 80px 0;
}

.review-form textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  resize: none;
  margin-bottom: 10px;
}

.review-form .btn-primary {
  margin-top: 5px;
}

.recent-reviews {
  margin-top: 40px;
}

.review-item {
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  margin-bottom: 15px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.07);
}

.r-text {
  font-size: 15px;
  margin-bottom: 8px;
}


/* CONTACT SECTION */
.contact {
  padding: 60px 0;
}
.contact-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.map-wrapper {
  margin-top: 30px;
}
.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 12px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}



/* MOBILE NAV */
.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.menu-btn {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
     position: absolute;
     top: 70px;
     right: 0;
     background: #021d33;
     flex-direction: column;
     width: 220px;
     display: none;
     padding: 20px;
     border-radius: 0 0 0 12px;
  }

  .nav a, 
  .nav .login-link,
  .nav .register-link,
  .nav .logout-link {
     color: white !important;
     font-size: 16px;
     padding: 10px 0;
  }

  .nav-open {
     display: flex !important;
  }

  .menu-btn {
     display: block;
     color: #021d33;
     font-weight: bold;
  }
}










