:root {
    --gray-dark: #303231;
    --gray-light: #8f9694;
    --orange-dark: #aa8453;
    --white: #ffffff;
    --bg-light: #f5f6f7;
    
}

body {
  
    font-family: 'Barlow Condensed', sans-serif;
    background-color: var(--bg-light);
    color: var(--gray-dark);
    line-height: 1.6;
}



/* Example: override info alerts globally */
.alert-info {
    background-color:var(--gray-light); 
    color: #1a1a1a;         
    border-color:var( --gray-dark) ;   
}



.btn-orange {
    background-color: #FF6F1D;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
}
.btn-orange:hover {
    background-color: #e65c00;
    color: #fff;
}

/* Optional polish for availability table */
.table thead th {
    vertical-align: middle;
  }
  .table tbody td {
    vertical-align: middle;
  }
  


/* HEADINGS */
h1,h2,h3,h4,h5,h6 {
    font-family: 'gilda Display', serif;
}

/* HERO SECTION */
.hero-section {
    background: url("https://ahasgawwa.com/wp-content/uploads/2023/10/ahas-gawwa-view.jpg") center/cover no-repeat;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

/* NAVBAR */
.navbar {
    font-family: 'Barlow Condensed', sans-serif;
    padding: 0.8rem 1rem;
    background-color: var(--gray-dark);
    color: #fff;
}
.navbar.sticky-top {
    transition: all 0.3s;
    z-index: 999;
}
.navbar-brand img {
    max-height: 80px;
}

/* OFFER BUTTON */
.btn-offers {
    background-color: var(--orange-dark);
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}
.btn-offers:hover {
    background-color: var(--gray-dark);
    color: #fff;
}

/* GLASS CARD */
.glass-card {
    background: rgba(255,255,255,0.94);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    padding: 2rem;
}

/* BUTTONS */
.book-btn {
    background: var(--orange-dark);
    color: #fff;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}
.book-btn:hover {
    background: var(--gray-dark);
    color: #fff;
}

/* FORM ELEMENTS */
.form-control, .form-select, textarea {
    border-radius: 12px;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
}


/* ====== FOOTER ====== */
.footer {
    background:  var(--gray-dark);
    color: #fff;
    width: 100%;
}

.footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.footer a:hover {
    color: #ffc107; 
}

/* COPYRIGHT BAR FIXED AT BOTTOM */
.footer-bottom {
    background: var(--gray-dark);
    color: #fff;
    padding: 1rem 0;
    font-size: 0.9rem;
    text-align: center;
}

/* REMOVE EXTRA WHITE SPACE */
body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; 
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }
    .footer .d-flex {
        justify-content: center;
    }
}


/* Remove extra space after footer */
body, html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Optional: Improve footer links layout on mobile */
@media (max-width: 768px) {
    .footer .row {
        text-align: center;
    }
    .footer .d-flex {
        justify-content: center;
    }
}


/* LOADER */
#pageLoader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#pageLoader.hide {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .book-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

.guest-card {
    position: sticky;
    top: 120px;
}

.sticky-wrapper {
    position: sticky;
    top: 120px;
}

.guest-title i {
    color: #495057;
}

.booking-summary,
.cancellation-policy {
    margin-bottom: 1.5rem;
}

/* select room button */
.stay-details-card {
    border-left:var(--orange-dark); /* Theme color */
    background: #f8f9fa;
}

.room-card {
    border: var(--orange-dark);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background: #ffffff;
}

.room-card h6 {
    font-weight: bold;
    color:var(--gray-dark);;
}

.room-card .total-price {
    font-size: 1.25rem;
    font-weight: 700;
    color:var(--orange-dark); /* Price highlight */
}

.offers-list .alert {
    border-radius: 6px;
    margin-bottom: 8px;
}

 
/* Loader hide */
#pageLoader.hide {
    display: none !important;
}
#pageLoader {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(255,255,255,0.9);
    z-index: 9999;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
}

/* Arrangement header inside table TH */
.arr-th{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    font-weight: 800;
    font-size: .85rem;
  }
  
  .arr-th > div:not(:last-child){
    border-right: 1px solid rgba(48,50,49,0.20);
  }
  
  .arr-age{
    font-size: .75rem;
    font-weight: 700;
    color: var(--gray-light);
    margin-left: .25rem;
  }
  
  /* Arrangement body cell (each row) */
  .arr-td{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(48,50,49,0.16);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }
  
  .arr-part{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: .45rem .4rem;
    font-weight: 800;
    min-height: 38px;
  }
  
  .arr-part i{
    font-size: 1.05rem;
  }
  
  /* vertical borders between the 3 parts */
  .arr-part:not(:last-child){
    border-right: 1px solid rgba(48,50,49,0.16);
  }
  
  .arr-part.is-zero{
    opacity: .45;
  }

  .booking-mail-body{
    margin:0;
    padding:0;
    background:#f5f5f5;
    font-family:Arial, Helvetica, sans-serif;
    color:#2f2f2f;
    line-height:1.7;
}

.booking-mail-wrapper{
    max-width:760px;
    margin:0 auto;
    padding:24px 14px;
}

.booking-mail-card{
    background:#ffffff;
    border:1px solid #d7d7d7;
    border-radius:14px;
    overflow:hidden;
}

.booking-mail-header{
    background:#4e6b63;
    padding:24px;
    color:#ffffff;
}

.booking-mail-title{
    margin:0;
    font-size:24px;
    font-weight:700;
    letter-spacing:.2px;
}

.booking-mail-content{
    padding:24px;
}

.booking-mail-section-title{
    margin:24px 0 10px;
    font-size:18px;
    font-weight:700;
    color:#4e6b63;
}

.booking-mail-info-box,
.booking-mail-summary-box{
    background:#f8faf9;
    border:1px solid #d8dfdc;
    border-radius:10px;
    padding:14px 16px;
}

.booking-mail-offer-list{
    margin:0;
    padding-left:18px;
}

.booking-mail-muted{
    color:#6c757d;
}

.booking-mail-bank-box{
    margin-top:12px;
    border:1px solid #d8dfdc;
    border-radius:10px;
    background:#f8faf9;
    overflow:hidden;
}

.booking-mail-bank-row{
    display:flex;
    justify-content:space-between;
    gap:16px;
    padding:10px 14px;
    border-bottom:1px solid #e3e8e5;
}

.booking-mail-bank-row:last-child{
    border-bottom:none;
}

.booking-mail-bank-label{
    font-weight:600;
    color:#495057;
    min-width:140px;
}

.booking-mail-bank-value{
    text-align:right;
    color:#2f2f2f;
    flex:1;
}

.booking-mail-btn{
    display:inline-block;
    padding:10px 18px;
    background:#4e6b63;
    color:#ffffff !important;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
}

.booking-mail-help{
    background:#fcfcfc;
    border:1px solid #ececec;
    border-radius:10px;
    padding:14px 16px;
}

.booking-mail-footer{
    padding:18px 24px 24px;
    font-size:13px;
    color:#6c757d;
    border-top:1px solid #ececec;
    background:#fcfcfc;
}

.mail-table{
    width:100%;
    border-collapse:collapse;
}

.mail-table__th,
.mail-table__td{
    border:1px solid #dcdcdc;
    padding:10px;
    font-size:14px;
}

.mail-table__th{
    background:#f1f4f3;
    color:#2f2f2f;
    text-align:left;
    font-weight:700;
}

.text-center{
    text-align:center;
}

.text-end{
    text-align:right;
}

.mb-0{
    margin-bottom:0;
}

.mb-2{
    margin-bottom:.5rem;
}

.mb-3{
    margin-bottom:1rem;
}

.mt-3{
    margin-top:1rem;
}

.mt-4{
    margin-top:1.5rem;
}

  
  /* offers.css – modern, readable UI for offers page */

body {
    background: #f8f9fa;
}

/* Glass card style */
.glass-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

/* Offer card hover effect */
.offer-card {
    transition: all 0.2s ease-in-out;
    border-radius: 16px;
    overflow: hidden;
}
.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.offer-name {
    font-weight: 700;
    font-size: 1rem;
}

/* Night‑by‑night table */
.night-table {
    font-size: 0.9rem;
}
.night-table th {
    background-color: #f1f3f5;
    font-weight: 600;
}
.night-table td:first-child {
    font-weight: 600;
    background-color: #faf9f7;
}

/* Header glow */
.bg-offer-glow {
    background: linear-gradient(135deg, #fef5e7 0%, #fff9f0 100%);
    border-left: 5px solid #f5b042;
}

/* Badges and tooltips */
.badge-offer {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 50px;
}
.tooltip-icon {
    cursor: help;
    border-bottom: 1px dashed #aaa;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .night-table td,
    .night-table th {
        font-size: 0.75rem;
    }
    .offer-name {
        font-size: 0.9rem;
    }
}