:root{
  --royal-blue:#0f2b5b;
  --royal-gold:#d4af37;
  --light-bg:#f5f7fb;
}

/* =========================
   GLOBAL
========================= */
body {
    font-family: Arial, sans-serif;
    background: var(--light-bg);
    padding: 30px;
}

/* =========================
   NAVBAR
========================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items:center;
    padding: 15px 40px;
    background: var(--royal-blue);
    overflow: hidden;
    
}


.logo {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    display: none; /* IMPORTANT */
}

.logo span {
    color: var(--royal-gold);
}





/* =========================
   ROOM CONTAINER
========================= */
.room-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 70px;
}

/* =========================
   ROOM CARD
========================= */
.room-card{
    width:320px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    transition:.35s ease;
    position:relative;
}

.room-card:hover{
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 20px 45px rgba(0,0,0,.20);
}

/* IMAGE */
.room-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    transition:.5s;
}

.room-card:hover img{
    transform:scale(1.08);
}

/* =========================
   CARD CONTENT
========================= */
.room-content {
    padding: 15px 20px;
}

.room-content h2 {
    text-align: center;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.room-details p {
    margin: 10px 0;
    cursor: pointer;
}

/* =========================
   BED OPTIONS
========================= */
.bed-options{

    display:none;

    margin-top:10px;

    padding:10px;

    background:#eef4ff;

    border-radius:10px;

    animation:fade .35s ease;
}

@keyframes fade{

from{

opacity:0;
transform:translateY(-8px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.bed-options span {
    display: block;
    padding: 6px;
    margin: 5px 0;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
}

/* =========================
   BUTTON
========================= */
button {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border: none;
    border-radius:30px;
    background:#0d6efd;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;

}

button:hover {
    transform:translateY(-3px);
    background:#084298;
    box-shadow:0 12px 25px rgba(13,110,253,.35);
}





.testimonial-card{
    background: linear-gradient(180deg,#071020 0%, #08122a 40%, #021022 100%);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 10px 30px rgba(2,6,23,0.45);
    border: 1px solid rgba(255,255,255,0.03);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(2,6,23,0.5);
}

/* Stars */
.stars{
    color: #facc15;
    font-size: 18px;
    letter-spacing: 1px;
}

/* Name */
.name{
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(90deg,#7dd3fc,#60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 6px 0 0;
}


/* Date */
.date{
    font-size: 13px;
    color: #9aa6bb;
    margin-bottom: 6px;
}

.testimonial-card p{
    color: #bfcfe6;
    line-height: 1.6;
    margin-top: 6px;
    font-size: 14px;
}

/* Make sure cards match their container */
.carousel-inner .card{ border-radius: 16px; overflow: hidden; }

/* Swiper testimonials styles (white, 3-per-view) */
:root { --testimonial-bg: #fbfbff; } /* soft white - change this to suit your preferred white */
.testimonials-swiper { padding: 20px 12px; background: var(--testimonial-bg); border-radius: 12px; border: 1px solid rgba(0,0,0,0.04); }
.testimonials-swiper .swiper-slide { display: flex; justify-content: center; }

/* Base card styling - white background, shadow, border, increased inner padding */
.testimonials-swiper .swiper-slide { padding: 8px 6px; margin-right: 24px; }
.testimonials-swiper .testimonial-card {
  width: 459px;
  max-width: 459px;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px 15px; /* user requested padding */
  box-shadow: 0 10px 30px rgba(7,12,20,0.08);
  border: 1px solid #000; /* user requested solid black border */
  background: #ffffff;
  transition: transform .28s ease, box-shadow .28s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #111;
  font-size: 15px; /* user requested 15px */
  font-weight: 700; /* interpret 'bold' */
}
.testimonials-swiper .testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(7,12,20,0.14); }

/* Uniform neutral look - consistent white cards */
.testimonials-swiper .swiper-slide .testimonial-card { background: #ffffff; color: #111; }

/* Content styles */
.testimonials-swiper .testimonial-card .stars{ color: #f5a623; font-weight: 700; font-size: 18px; }
.testimonials-swiper .testimonial-card .date{ color: rgba(0,0,0,0.55); font-size: 13px; }
.testimonials-swiper .testimonial-card .name{ font-weight: 800; font-size: 18px; color: inherit; }
.testimonials-swiper .testimonial-card p{ color: rgba(0,0,0,0.72); line-height: 1.6; margin: 0; }

/* Navigation - smaller, subtle buttons */
.testimonials-swiper .swiper-button-prev, .testimonials-swiper .swiper-button-next {
  color: #0b2240;
  background: rgba(255,255,255,0.95);
  width:36px; height:36px; border-radius:8px;
  box-shadow: 0 6px 14px rgba(2,6,23,0.08);
  border: 1px solid rgba(2,6,23,0.04);
  background-size: 14px 14px; background-position: center; background-repeat: no-repeat;
  transition: transform .18s ease, box-shadow .18s ease;
}
.testimonials-swiper .swiper-button-prev::after, .testimonials-swiper .swiper-button-next::after { font-size: 14px; width: 14px; height: 14px; color: #0b2240; opacity: 0.95; }
.testimonials-swiper .swiper-button-prev:hover, .testimonials-swiper .swiper-button-next:hover{ transform: translateY(-2px); box-shadow: 0 10px 20px rgba(2,6,23,0.10); }

.testimonials-swiper .swiper-pagination-bullet { background: rgba(0,0,0,0.22); opacity: 1; }





@media (max-width: 1024px){
  .testimonials-swiper .testimonial-card{ max-width: 320px; }
}



@media (max-width: 768px){
  .testimonials-swiper .testimonial-card{ max-width: 260px; padding: 22px; }
  .testimonials-swiper .swiper-button-prev, .testimonials-swiper .swiper-button-next { width:34px; height:34px; }
  
  /* Arrows */
  .carousel-control-prev,
  .carousel-control-next{
      width: 50px;
    }
    
} 
    
    /* =========================
    FOOTER
    ========================= */
    .footer {
        background-color: #0c9af3;
        margin-top: 50px;
        padding: 20px;
    }
    
    .copy {
        background-color: #032c57e7;
        color: white;
        margin-top: 20px;
    }
    




@media (max-width: 576px){

/* =========================
   ROOM CONTAINER
========================= */
.room-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 70px;
}

/* =========================
   ROOM CARD
========================= */
.room-card {
    width: 320px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform:translateY(-12px) scale(1.02);
    box-shadow:0 20px 45px rgba(0,0,0,.20);
}
.room-card:hover img{
    transform:scale(1.08);
}
/* IMAGE */
.room-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition:.5s;
}

/* =========================
   CARD CONTENT
========================= */
.room-content {
    padding: 15px 20px;
}

.room-content h2 {
    text-align: center;
    color: var(--royal-blue);
    margin-bottom: 10px;
}

.room-details p {
    margin: 10px 0;
    cursor: pointer;
}

/* =========================
   BED OPTIONS
========================= */
.bed-options{

    display:none;

    margin-top:10px;

    padding:10px;

    background:#eef4ff;

    border-radius:10px;

    animation:fade .35s ease;
}

@keyframes fade{

from{

opacity:0;
transform:translateY(-8px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.bed-options span {
    display: block;
    padding: 6px;
    margin: 5px 0;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
}

/* =========================
   BUTTON
========================= */
button {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    border: none;
    border-radius: 30px;
    background:#0d6efd;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
}

button:hover {
    transform:translateY(-3px);
    background:#084298;
    box-shadow:0 12px 25px rgba(13,110,253,.35);
}





}