@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #0f1a2c;
  --secondary-color: #f6ac0f;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --extra-light: #f8fafc;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Playfair Display", serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.section__header {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.section__description {
  margin-top: 1rem;
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--secondary-color);
  outline: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.section__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section__nav span {
  padding: 10px 15px;
  font-size: 1.25rem;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.section__nav span:hover {
  background-color: var(--secondary-color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 50px;          /* increase size */
  height: 50px;         /* same as width for circle */
  border-radius: 50%;   /* makes it circular */
  object-fit: cover;
  border:2px solid #e6e6e6;
}

.logo div {
  padding: 0;
  background: none;
}
.nav__logo span {
  font-family: "Cinzel", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2e4f3a;
  line-height: 1.2;
  text-transform: uppercase;
}

.logo div {
 
  color: white;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 20px;
  font-weight: bold;
}

img,
video {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 0;   
}

.nav__bar {
  position: relative;
  isolation: isolate;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: auto;
  margin-top: 0;
  border-radius: 12px;
}

.nav__header {
   height: 60px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

.nav__menu__btn {
 display: none;
}

.nav__links {
  list-style: none;
  position: static;
  padding: 0;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  background-color: transparent;
  transform: none;
  transition: 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  color: var(--text-light);
  transition: 0.3s;
  position: relative;
  font-weight: 500;
}
.nav__links a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: var(--secondary-color);
  transition: 0.3s;
}

.nav__links a:hover {
  color: var(--secondary-color);
}

.header {  /* space for navbar */
  height: 100vh;   /* full screen hero */
  padding: 0;      /* remove gap */
  
  background-image: linear-gradient(
      rgba(15, 26, 44, 0.3),
      rgba(15, 26, 44, 0.3)
    ),
    url("assets/header_img.png");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;  
}

.header__container .section__subheader {
  color: var(--white);
}

.header__container h1 {
  margin-bottom: 2rem;
  font-size: 6rem;
  font-weight: 800;
  line-height: 7rem;
  font-family: var(--header-font);
  color: var(--white);
}

.booking {
  background-color: var(--primary-color);
}

.booking__container form {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  align-items: end;
}

.input__group {
  display: flex;
  flex-direction:column;
  gap: 6px;
}

.input__group label {
  font-size: 14px;
  color: white;
  font-weight: 600;
}

.input__group input{
  padding: 10px 5px;
  font-size: 14px;
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  color: white;
  transition:0.3s;
}

.input__group input::placeholder{
  color: rgba(255,255,255,0.6);
}
.input__group input:focus {
  border-bottom: 2px solid #f6ac0f;
}
.booking__container .btn{
  padding: 12px 20px;
  background: #f6a800;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.booking__container .btn:hover{
  background: #d99300;
}
@media (max-width:900px){

.booking__container form{
grid-template-columns: 1fr 1fr;
}

}

@media (max-width:500px){

.booking__container form{
grid-template-columns: 1fr;
}

}

.about {
  position: relative;
  isolation: isolate;
}

.about::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  height: 75%;
  width: 100%;
  background-image: url("assets/about_3.jpeg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: -1;
}

.about__container {
  display: grid;
  gap: 4rem 2rem;
}

.about__grid {
  display: grid;
  gap: 1rem;
}

.about__card {
  height: 100%;
  padding: 2rem;
  display: grid;
  place-content: center;
  text-align: center;
}

.about__card span {
  margin-bottom: 1rem;
  font-size: 3rem;
  color: var(--secondary-color);
}

.about__card h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.about__card p {
  color: var(--text-light);
}

.about__card:nth-child(4) {
  background-color: var(--primary-color);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.about__card:nth-child(4) :is(h4, p) {
  color: var(--white);
}

.about__image img {
  height: 100%;
  object-fit: cover;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.about__content .section__description {
  margin-bottom: 2rem;
}

.room__container {
  padding-block: 5rem;
}

.room__container :is(.section__subheader, .section__header) {
  padding-inline: 1rem;
  text-align: center;
}

.room__grid {
  max-width: 1500px;
  margin-inline: auto;
  margin-top: 4rem;
  display: grid;
  gap: 0 1rem;
}

.room__card img {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.room__card__details {
  margin-inline: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--white);
  transform: translateY(-50%);
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.room__card__details h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.room__card__details p {
  color: var(--text-light);
}

.room__card__details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.room__card__details h3 span {
  font-size: 0.8rem;
}

.intro {
  position: relative;
  isolation: isolate;
  background-color: var(--primary-color);
}

.intro::before {
  position: absolute;
  content: "";
  right: 0;
  height: 100%;
  width: calc(100vw / 4);
  background-color: var(--secondary-color);
  z-index: -1;
}

.intro__container {
  display: grid;
  gap: 4rem 2rem;
}

.intro__container .section__subheader {
  color: var(--secondary-color);
}

.intro__container :is(.section__header, .section__description) {
  margin-bottom: 1rem;
  color: var(--white);
}

.intro__video {
  max-width: 450px;
  margin: auto;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.feature__container :is(.section__subheader, .section__header) {
  text-align: center;
}

.feature__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.feature__card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.feature__card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--header-font);
  counter-reset: var(--text-dark);
}

.feature__card p {
  color: var(--text-light);
}


.news__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;
}

.news_card img,
.news_card video {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
}
.news__card video{
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.2);
}

.news__card__title {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news__card__title p {
  font-weight: 500;
  color: var(--text-light);
}

.news__card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.news__card p {
  color: var(--text-light);
}

.footer {
  background-color: var(--primary-color);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__container {
  padding: 3rem 1rem;   /* reduced from 5rem */
  display: grid;
  gap: 2rem;
}
.footer__col p {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 350px;
  margin: 0 auto 1.5rem auto;
}

.footer__logo {
  margin-bottom: 2rem;
  color: var(--white);
}

.footer__logo div {
  background-color: transparent;
}

.footer__socials {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  padding: 5px 8px;
  font-size: 1rem;
  color: var(--text-light);
  background-color: var(--white);
  border-radius: 100%;
  cursor: pointer;
  transition: 0.3s;
}
.footer__logo img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: var(--secondary-color);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--white);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content:center;
}

.footer__links a {
  color: var(--text-light);
  transition: 0.3s;
}

.footer__links a:hover {
  color: var(--secondary-color);
}

.footer__col:last-child .footer__links li {
  margin-bottom: 0.8rem;
}

.footer__links span {
  font-size: 2rem;
  color: var(--secondary-color);
}

.footer__links h5 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--white);
}

.footer__links p {
  color: var(--text-light);
}

.footer__bar {
  padding: 0.7rem;
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 480px) {
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__image:nth-child(1) {
    grid-area: 1/2/2/3;
  }

  .about__image:nth-child(1),
  .about__card:nth-child(4) {
    transform: translateY(2rem);
  }

  .feature__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__images {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__banner {
    grid-template-columns: repeat(2, 1fr);
  }

  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  }

  .footer__col:first-child {
    grid-column: 1/3;
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding-inline: 1rem;
    background-color: var(--primary-color);
  }

  .nav__bar {
    max-width: var(--max-width);
    margin: auto;
    padding: 0.3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: 5px;
    transform: translateY(50%);
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    width: fit-content;
    padding: 0;
    position: static;
    flex-direction: row;
    transform: none;
    background-color: transparent;
  }

  .booking__container form {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }

  .about::before {
    height: 75%;
    width: 75%;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .feature__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__header {
    flex-direction: row;
  }

  .menu__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__images {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__banner {
    grid-template-columns: repeat(4, 1fr);
  }

  .news__header {
    flex-direction: row;
  }

  .news__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: 2fr repeat(2, 1fr);
  }

  .footer__col:first-child {
    grid-column: unset;
  }
}

@media (width > 1024px) {
  .about__grid {
    gap: 2rem;
  }

  .room__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .menu__images {
    gap: 2rem;
  }

  .news__grid {
    gap: 2rem;
  }
}
@media (max-width:768px){

.footer__container{
  padding: 2rem 1rem;
  gap: 1.5rem;
}
.footer__col p{
  font-size:0.85rem;
  line-height:1.4;
  max-width:100%;
}
.footer__col h4{
  margin-bottom:1rem;
  font-size:1.1rem;
}

.footer__links li{
  margin-bottom:0.5rem;
}

}
/* ================= MOBILE ONLY FIX ================= */
@media (max-width: 768px) {

  /* 1. Fix navbar overlap */
  body {
    padding-top: 90px;
  }

  /* 2. Enable hamburger menu */
  .nav__menu__btn {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  .nav__links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    display: none;
    z-index: 999; 
  }

  .nav__links.open {
    display: flex;
  }

  /* 3. Fix logo size */
  .logo img {
    width: 35px;
    height: 35px;
  }

  .nav__logo span {
    font-size: 16px;
  }

  /* 4. Fix BIG heading text */
  .header__container h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  /* 5. Fix booking form layout */
  .booking__container form {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .booking__container {
    padding: 2rem 1rem;
  }

  /* 6. Fix input width issue */
  .input__group input {
    width: 100%;
    padding: 10px;
  }

  /* 7. Fix section spacing */
  .section__container {
    padding: 3rem 1rem;
  }

  /* 8. Fix videos */
  video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
@media (max-width: 768px) {

  nav {
    padding-top: 0;
  }

  .nav__bar {
    margin-top: 0;
  }

}
/* ================= ABOUT SECTION MOBILE FIX ================= */
@media (max-width: 768px) {

  /* 1. Stack full section vertically */
  .about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* 2. Fix grid layout (images + cards) */
  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;   /* 👈 2 columns */
    gap: 1rem;
  }

  /* 3. Remove weird shifting */
  .about__image:nth-child(1),
  .about__card:nth-child(4) {
    transform: none;
  }

  /* 4. Fix image size */
  .about__image img {
    width: 100%;
    height: 150px;         /* fixed height for uniform look */
    object-fit: cover;
    border-radius: 12px;
  }

  /* 5. Fix cards */
  .about__card {
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
  }

  /* 6. Center content nicely */
  .about__content {
    text-align: center;
  }

  .about__content .section__header {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .about__content .section__description {
    font-size: 0.95rem;
  }

  /* 7. Button alignment */
  .about__content .btn {
    margin-top: 1rem;
  }
}
/* ================= MOBILE TEXT + SPACING FIX ================= */
@media (max-width: 768px) {

  /* 1. Section headings (Core Features etc.) */
  .section__header {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }

  .section__subheader {
    font-size: 0.7rem;
  }

  /* 2. Feature cards (MAIN ISSUE) */
  .feature__card {
    text-align: left;
    padding: 1rem 0;
  }

  .feature__card span {
    font-size: 2rem;   /* smaller icon */
  }

  .feature__card h4 {
    font-size: 1.2rem; /* smaller title */
    margin-bottom: 0.5rem;
  }

  .feature__card p {
    font-size: 0.9rem; /* smaller paragraph */
    line-height: 1.4rem;
  }

  /* 3. Reduce spacing between feature items */
  .feature__grid {
    gap: 1rem;
  }

  /* 4. Fix large empty spaces */
  .section__container {
    padding: 2.5rem 1rem;
  }

  /* 5. Reduce all paragraph sizes globally */
  p {
    font-size: 0.95rem;
  }
  .feature__grid {
    gap: 0.8rem; /* reduced spacing */
  }

  /* ===== FEATURE CARD ===== */
  .feature__card {
    padding: 0.6rem 0; /* reduce vertical space */
  }

  /* ICON */
  .feature__card span {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
  }

  /* TITLE */
  .feature__card h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  /* DESCRIPTION */
  .feature__card p {
    font-size: 0.8rem;
    line-height: 1.2rem;
  }

  /* ===== REMOVE EXTRA SPACE BETWEEN ITEMS ===== */
  .feature__card + .feature__card {
    margin-top: 0.5rem;
  }

  /* ===== GLOBAL PARAGRAPH CONTROL ===== */
  p {
    font-size: 0.85rem;
    line-height: 1.3rem;
  }

  /* ===== SECTION PADDING FIX ===== */
  .section__container {
    padding: 2rem 1rem;
  }

}
/* ================= REMOVE TOP GAP (FINAL FIX) ================= */
@media (max-width: 768px) {

  /* Remove browser default spacing */
  body {
    margin: 0;
    padding-top: 0 !important;
  }

  /* Remove nav spacing */
  nav {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  /* Remove extra gap from navbar container */
  .nav__bar {
    margin-top: 0 !important;
  }

  /* Ensure navbar sticks to top */
  nav {
   position: absolute;
    top: 0;
  }

}
/* ================= ABOUT SECTION CLEAN MOBILE DESIGN ================= */

  @media (max-width: 768px) {

  /* 1. Make 2-column layout (IMPORTANT) */
  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* 2. Remove desktop transforms */
  .about__image:nth-child(1),
  .about__card:nth-child(4) {
    transform: none !important;
  }

  /* 3. Equal size for all blocks */
  .about__image,
  .about__card {
    width: 100%;
    height: 160px;
  }

  /* 4. Image styling */
  .about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  /* 5. Card styling */
  .about__card {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Dark card */
  .about__card:nth-child(4) {
    background: #0f1a2c;
    color: white;
  }

  .about__card:nth-child(4) h4,
  .about__card:nth-child(4) p {
    color: white;
  }

  /* 6. Smaller icon */
  .about__card span {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }

  /* 7. Smaller heading */
  .about__card h4 {
    font-size: 1rem;
    margin-bottom: 3px;
  }

  /* 8. Smaller paragraph */
  .about__card p {
    font-size: 0.75rem;
    line-height: 1.1rem;
  }
    /* ABOUT SECTION TEXT FIX (MOBILE ONLY) */

/* Small label: ABOUT US */
.section__subheader {
  font-size: 0.7rem;
  margin-bottom: 0.3rem;
}

/* Main heading */
.section__header {
  font-size: 1.2rem;
  line-height: 1.6rem;
  margin-bottom: 0.8rem;
}

/* Paragraph text */
.section__description {
  font-size: 0.85rem;
  line-height: 1.4rem;
  padding: 0 10px;
}

/* Button size */
.btn {
  font-size: 0.85rem;
  padding: 10px 18px;
}
    

}
@media (max-width: 768px) {

  .header {
   height: 100vh;              /* remove fixed height */        /* proper screen fit */
    display: flex;
    align-items: center;   /* move content to top */
    padding-top:0; 
    padding: 0;
    margin: 0;
    
    /* side spacing */
  }

  .header__container {
    padding: 0 1.5rem;
    margin: 0;
    text-align: left; 
  }
  .header__container .section__subheader {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: left;
  }

  .header__container h1 {
   font-size: 2.6rem;          /* BIG like 2nd image */
    line-height: 3rem;
    font-weight: 700;
    text-align: left;           /* LEFT align */
    margin: 0;
  }

  .header__container p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .booking {
    margin-top: 0 !important;
  }

  .booking__container {
    padding-top: 1.5rem;   /* reduce gap */
  }

}
@media (max-width: 768px) {

  /* ✅ Remove unwanted global spacing */
  body {
    margin: 0;
    padding: 0 !important;
  }

  nav {
    position: absolute;
    top: 0;
  }

  /* ✅ PERFECT HERO SECTION */
  .header {
    height: 100vh;                 /* full screen */
    padding: 0;
    margin: 0;

    display: flex;
    align-items: center;           /* 👈 center (NOT bottom) */
    justify-content: flex-start;
  }

  /* ✅ TEXT POSITION (SLIGHTLY LOWER LIKE DESIGN) */
  .header__container {
    padding: 0 1.5rem;
    margin-top: 80px;              /* 👈 pushes text slightly down */
  }

  /* ✅ TEXT SIZE */
  .header__container h1 {
    font-size: 2.8rem;
    line-height: 3.2rem;
    font-weight: 700;
    margin: 0;
  }

  .header__container .section__subheader {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  /* ✅ REMOVE GAP BELOW IMAGE */
  .booking {
    margin-top: 0 !important;
  }

  .booking__container {
    padding-top: 1.2rem;
  }

}
   
