@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@600&family=Manrope:wght@400&display=swap");

:root{
  --primary:#0077b6;--secondary:#00b4d8;--light:#f8f9fa;--dark:#212121;
  --accent:#f4a261;--white:#fff;--muted:#667085;--shadow:0 10px 30px rgba(0,0,0,.10);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:"Manrope",sans-serif;font-weight:400;color:#222;background:var(--light);line-height:1.6}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1120px,92%);margin:auto}
header{position:sticky;top:0;z-index:1000;background:rgba(255,255,255,.97);box-shadow:0 2px 12px rgba(0,0,0,.08)}
.nav{min-height:72px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.logo{font-size:1.15rem;font-weight:800;color:var(--primary);line-height:1.15}
.logo span{display:block;color:var(--dark);font-size:.72rem;letter-spacing:2px}
.nav-links{display:flex;align-items:center;gap:24px;list-style:none}
.nav-links a{font-weight:700;font-size:.94rem}
.nav-links a:hover,.nav-links a.active{color:var(--primary)}
.menu-toggle{display:none;border:0;background:none;font-size:1.7rem;cursor:pointer}
.btn{display:inline-block;background:var(--accent);color:#fff;padding:12px 22px;border-radius:8px;font-weight:800;border:0;cursor:pointer;transition:.2s}
.btn:hover{transform:translateY(-2px);filter:brightness(.95)}
.btn.primary{background:var(--primary)}
.hero{min-height:620px;display:grid;place-items:center;text-align:center;color:#fff;background:linear-gradient(rgba(0,70,105,.62),rgba(0,30,50,.65)),url("images/home.jpg") center/cover}
.hero h1{font-size:clamp(2.2rem,6vw,4.8rem);line-height:1.05;margin-bottom:18px}
.hero p{font-size:1.15rem;max-width:720px;margin:0 auto 28px}
.page-hero{padding:110px 0;color:#fff;text-align:center;background:linear-gradient(rgba(0,70,105,.62),rgba(0,30,50,.65)),url("images/info.jpg") center/cover}
.page-hero1{padding:110px 0;color:#fff;text-align:center;background:linear-gradient(rgba(0,70,105,.62),rgba(0,30,50,.65)),url("images/rooms.jpg") center/cover}
.page-hero2{padding:110px 0;color:#fff;text-align:center;background:linear-gradient(rgba(0,70,105,.62),rgba(0,30,50,.65)),url("images/events.jpg") center/cover}
.page-hero3{padding:110px 0;color:#fff;text-align:center;background:linear-gradient(rgba(0,70,105,.62),rgba(0,30,50,.65)),url("images/restaurant.jpg") center/cover}
.page-hero4{padding:110px 0;color:#fff;text-align:center;background:linear-gradient(rgba(0,70,105,.62),rgba(0,30,50,.65)),url("images/contact us.jpg") center/cover}
.page-hero h1{font-size:clamp(2.2rem,5vw,3.8rem)}
section{padding:80px 0}
.section-title{text-align:center;margin-bottom:42px}
.section-title h2{font-size:2.2rem;color:var(--dark);margin-bottom:8px}
.section-title p{color:var(--muted)}
.grid{display:grid;gap:24px}
.cards-3{grid-template-columns:repeat(3,1fr)}
.cards-4{grid-template-columns:repeat(4,1fr)}
.card{background:#fff;border-radius:14px;overflow:hidden;box-shadow:var(--shadow)}
.card-body{padding:22px}
.card h3{margin-bottom:8px;color:var(--primary)}
.card p{color:var(--muted)}
.room-card img,.event-card img,.food-card img{width:100%;height:220px;object-fit:cover}
.price{font-size:1.25rem;font-weight:800;color:var(--primary);margin:12px 0}
.features{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.feature{background:#fff;padding:25px;text-align:center;border-radius:12px;box-shadow:var(--shadow)}
.feature .icon{font-size:2rem;margin-bottom:10px}
.promo{background:var(--primary);color:#fff;text-align:center}
.promo h2{font-size:2.4rem}
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.gallery img{height:250px;width:100%;object-fit:cover;border-radius:10px;cursor:pointer;transition:.2s}
.gallery img:hover{transform:scale(1.02)}
.info-list{display:grid;gap:16px}
.info-item{background:#fff;padding:22px;border-left:5px solid var(--secondary);border-radius:8px;box-shadow:var(--shadow)}
table{width:100%;border-collapse:collapse;background:#fff;box-shadow:var(--shadow);border-radius:10px;overflow:hidden}
th,td{padding:15px;text-align:left;border-bottom:1px solid #eee}
th{background:var(--primary);color:#fff}
.form{background:#fff;padding:28px;border-radius:14px;box-shadow:var(--shadow)}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.form-group{display:flex;flex-direction:column;gap:7px}
.form-group.full{grid-column:1/-1}
input,textarea,select{padding:13px;border:1px solid #ddd;border-radius:7px;font:inherit}
textarea{min-height:140px;resize:vertical}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px}
.contact-item{display:flex;gap:14px;margin-bottom:22px}
.contact-item .icon{font-size:1.5rem}
.map-box{min-height:360px;border-radius:14px;background:#e9ecef;display:grid;place-items:center;color:var(--muted);text-align:center;padding:30px}
footer{background:var(--dark);color:#fff;padding:55px 0 20px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:40px}
footer h3{margin-bottom:15px}
footer p,footer li{color:#ccc}
footer ul{list-style:none;display:grid;gap:8px}
.social{display:flex;gap:10px;margin-top:14px}
.social a{width:38px;height:38px;border:1px solid #555;border-radius:50%;display:grid;place-items:center}
.copyright{text-align:center;border-top:1px solid #444;margin-top:35px;padding-top:18px;color:#aaa;font-size:.9rem}
.modal{position:fixed;inset:0;background:rgba(0,0,0,.85);display:none;place-items:center;z-index:2000;padding:30px}
.modal.show{display:grid}
.modal img{max-height:85vh;max-width:90vw;border-radius:10px}
.modal-close{position:absolute;top:18px;right:28px;color:#fff;font-size:2.4rem;background:none;border:0;cursor:pointer}
.toast{position:fixed;bottom:25px;right:25px;background:var(--dark);color:#fff;padding:15px 20px;border-radius:8px;display:none;z-index:3000}
.toast.show{display:block}
@media(max-width:850px){
 .menu-toggle{display:block}.nav-links{position:absolute;top:72px;left:0;right:0;background:#fff;display:none;flex-direction:column;padding:20px}.nav-links.open{display:flex}
 .cards-3,.cards-4,.features,.contact-grid,.footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
 section{padding:55px 0}.cards-3,.cards-4,.features,.contact-grid,.footer-grid,.form-grid{grid-template-columns:1fr}
 .gallery{grid-template-columns:repeat(2,1fr)}.gallery img{height:180px}.hero{min-height:560px}.page-hero{padding:80px 0}
 .form-group.full{grid-column:auto}
}

.restaurant-video{max-width:950px;margin:auto;background:#fff;padding:16px;border-radius:14px;box-shadow:var(--shadow)}
.restaurant-video video{width:100%;display:block;max-height:560px;border-radius:10px;background:#111}
.video-note{text-align:center;color:var(--muted);padding:14px 5px 2px;font-size:.92rem}
.restaurant-gallery img{height:230px}
@media(max-width:600px){.restaurant-gallery img{height:180px}}

.site-logo{width:190px;height:auto;display:block;max-height:58px;object-fit:contain}
header .logo{display:flex;align-items:center}
.footer-brand{max-width:360px}
.footer-logo{width:260px;max-width:100%;height:auto;display:block;margin-bottom:14px}
.footer-tagline{color:#fff!important;font-weight:700;margin-bottom:14px}
.footer-contact{display:grid;gap:7px}
.footer-contact p{margin:0;color:#ccc}
@media(max-width:600px){
  .site-logo{width:155px;max-height:52px}
  .footer-logo{width:230px}
}

/* Google Fonts: primary and secondary typography */
h1,h2,h3,h4,h5,h6,
.logo,.nav-links a,.btn,
.section-title h2,.price,
.feature h3,.card h3,
.footer-brand strong{
  font-family:"Figtree",sans-serif;
  font-weight:600;
}

/* Testimonials-section */
.testimonials {
  width: 100%;
  padding: 80px 20px;
  background: #f7f9fc;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Header */

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.testimonials-header span {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  color: #007bff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonials-header h2 {
  font-size: 42px;
  margin: 0 0 15px;
  color: #222;
}

.testimonials-header p {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
}


/* ==============================
   SLIDER
================================ */

.testimonial-slider {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}


/* ==============================
   TESTIMONIAL CARD
================================ */

.testimonial-card {
  flex: 0 0 100%;
  box-sizing: border-box;

  background: white;
  padding: 40px;
  border-radius: 20px;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

  min-height: 300px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* Guest */

.guest {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.guest img {
  width: 65px;
  height: 65px;

  object-fit: cover;

  border-radius: 50%;

  border: 4px solid #0077b6;
}

.guest h3 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #222;
}

.guest p {
  margin: 0;
  color: #777;
  font-size: 14px;
}


/* Stars */

.stars {
  color: #ffc107;
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}


/* Review */

.review {
  font-size: 19px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin: 0;
}


/* ==============================
   SLIDER BUTTONS
================================ */

.slider-btn {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;

  background: #0077b6;
  color: white;

  font-size: 25px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.slider-btn:hover {
  background: #0077b6;
  transform: translateY(-50%) scale(1.1);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}


/* ==============================
   DOTS
================================ */

.slider-dots {
  text-align: center;
  margin-top: 30px;
}

.dot {
  display: inline-block;

  width: 11px;
  height: 11px;

  background: #0077b6;

  border-radius: 50%;

  margin: 0 5px;

  cursor: pointer;

  transition: 0.3s;
}

.dot.active {
  width: 30px;
  border-radius: 10px;
  background: #0077b6;
}


/* ==============================
   MOBILE
================================ */

@media (max-width: 768px) {

  .testimonials {
    padding: 60px 15px;
  }

  .testimonials-header h2 {
    font-size: 32px;
  }

  .testimonials-header p {
    font-size: 15px;
  }

  .testimonial-card {
    padding: 30px 25px;
    min-height: 350px;
  }

  .review {
    font-size: 16px;
    line-height: 1.7;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .prev {
    left: 8px;
  }

  .next {
    right: 8px;
  }
}

/* =====================================
   MAP
===================================== */

.map-section {
    padding: 80px 20px;
    background: #fafafa;
}

.map-title {
    text-align: center;
    margin-bottom: 35px;
}

.map-title span {
    color: #f4775c;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}

.map-title h2 {
    font-size: 38px;
    margin-top: 8px;
}

.map-container {
    max-width: 1150px;
    height: 400px;

    margin: auto;

    overflow: hidden;

    border-radius: 12px;
}

.map-container iframe {
    width: 100%;
    height: 100%;

    border: 0;
}