* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  color: #333;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: #f3f3f3;
  position: sticky;
  top: 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}

.menu-btn {
  font-size: 26px;
}

/* HERO */
.hero {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.hero h1 {
  font-family: 'Playfair Display';
  font-size: 36px;
  letter-spacing: 4px;
}

.tag {
  font-size: 12px;
  letter-spacing: 3px;
}

.line {
  width: 60px;
  height: 2px;
  background: white;
  margin: 10px auto;
}

/* WELCOME */
.welcome {
  padding: 40px 20px;
  text-align: center;
}

.welcome h2 {
  font-family: 'Playfair Display';
  font-size: 32px;
  margin-bottom: 20px;
}

.welcome p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* TRAVEL */
.travel {
  padding: 40px 20px;
  text-align: center;
}

.travel h2 {
  font-family: 'Playfair Display';
  margin-bottom: 20px;
}

.card {
  background: #0d3b56;
  color: white;
  padding: 20px;
  border-radius: 6px;
}

/* ACCOMMODATION */
.accommodation {
  background: #a87442;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.accommodation .small {
  font-size: 12px;
  opacity: 0.8;
}

.accommodation h2 {
  font-family: 'Playfair Display';
  margin: 20px 0;
}

/* REVIEWS */
.reviews {
  padding: 40px 20px;
  text-align: center;
}

.review-card {
  background: white;
  padding: 20px;
  margin: 20px 0;
}

.btn {
  padding: 12px 20px;
  background: #0d3b56;
  color: white;
  border: none;
}

/* FOOTER */
.footer {
  background: #0d3b56;
  color: white;
  padding: 40px 20px;
}

/* FLOAT BUTTON */
.chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #b07a45;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
}

.menu-btn {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.menu-btn span {
  height: 3px;
  width: 100%;
  background: #555;
  border-radius: 2px;
  transition: 0.3s;
}

/* ANIMATION → turns into X */
.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* DARK BACKGROUND */
.overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 998;
}

.overlay-bg.active {
  opacity: 1;
  visibility: visible;
}

/* MENU PANEL */
.menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  height: 100%;
  background: #f5f5f5;
  transition: 0.4s cubic-bezier(.77,0,.18,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-overlay.active {
  left: 0;
}

.menu-content {
  padding: 30px 20px;
}

.menu-top {
  font-size: 13px;
  letter-spacing: 2px;
  color: #777;
  margin-bottom: 20px;
}

.menu-item {
  font-size: 20px;
  padding: 14px 0;
  color: #555;
}

.menu-item.active {
  color: #a87442;
  border-bottom: 2px solid #a87442;
}

/* BOOK NOW */
.menu-footer {
  background: #a87442;
  color: white;
  padding: 18px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 2px;
}

.menu-item {
  display: block;
  text-decoration: none;
  color: #555;
  font-size: 20px;
  padding: 14px 0;
}

.menu-close {
  font-size: 24px;
  padding: 20px;
  cursor: pointer;
}

.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slider {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT OVERLAY */
.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.overlay p {
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 10px;
}

.overlay h1 {
  font-size: 36px;
  letter-spacing: 5px;
  font-family: 'Playfair Display', serif;
}

.line {
  width: 60px;
  height: 2px;
  background: white;
  margin: 15px auto;
}

/* CONTROLS */
.controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
}

.controls button {
  background: transparent;
  border: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.divider {
  width: 1px;
  height: 30px;
  background: white;
}

/* SECTION BACKGROUND */
.travel-section {
  padding: 80px 20px;
  background: #f2f2f2;
}

.travel-bg {
  text-align: center;
  position: relative;
}

/* BIG TITLE */
.travel-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #0d3b56;
  margin-bottom: 40px;
}

/* CARD */
.travel-card {
  background: white;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* HEADER */
.card-header {
  padding: 30px 20px;
}

.card-logo {
  width: 60px;
  margin-bottom: 10px;
}

.card-header h3 {
  font-size: 22px;
  color: #0d3b56;
  margin-bottom: 10px;
}

.card-header p {
  font-size: 14px;
  color: #777;
  max-width: 500px;
  margin: auto;
}

/* BLUE BODY */
.card-body {
  background: #0d3b56;
  color: white;
  padding: 30px 20px;
}

/* ITEMS */
.item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  text-align: left;
}

.item img {
  width: 50px;
  height: 50px;
  background: white;
  padding: 10px;
  border-radius: 50%;
}

.item p {
  font-size: 16px;
}

/* FOOTER */
.card-footer {
  padding: 25px 20px;
  text-align: center;
}

.card-footer p {
  font-style: italic;
  margin-bottom: 10px;
}

.card-footer small {
  color: #666;
}

.accommodation {
  background: #a87442;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

/* FIND OUT MORE */
.find-more {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
}

.find-more:hover {
  opacity: 1;
}

/* TITLE */
.accommodation h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

/* PARAGRAPH */
.accommodation p {
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.8;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* SMALL LINE */
.accommodation .line {
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  margin: 0 auto;
}

.reviews {
  padding: 80px 20px;
  text-align: center;
  background: #f5f5f5;
}

.reviews h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: #0d3b56;
  margin-bottom: 10px;
}

.sub {
  font-size: 12px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 40px;
}

/* SLIDER */
.review-slider {
  position: relative;
}

.review {
  display: none;
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.review.active {
  display: flex;
  gap: 30px;
}

/* LEFT SIDE (NAME ONLY) */
.review-left {
  min-width: 120px;
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.review-left h4 {
  font-size: 14px;
  letter-spacing: 2px;
  color: #0d3b56;
}

/* RIGHT SIDE */
.review-right {
  flex: 1;
}

.review-right .date {
  font-size: 12px;
  color: #aaa;
  display: block;
  margin-bottom: 10px;
}

.review-right h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.review-right p {
  line-height: 1.8;
  color: #555;
}

/* ARROWS */
.review-controls {
  margin-top: 30px;
}

.review-controls button {
  background: #ccc;
  border: none;
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
}

.footer {
  background: #0d3b56;
  color: #cbd5e1;
  padding: 60px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  color: #c89b5e;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 2px;
}

.footer-section .line {
  width: 40px;
  height: 3px;
  background: #c89b5e;
  margin: 10px 0 20px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #9fb3c8;
}

.footer-section a {
  color: #9fb3c8;
  text-decoration: none;
}

.footer-section a:hover {
  color: #fff;
}

/* SOCIAL ICONS */
.socials {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.social {
  width: 40px;
  height: 40px;
  background: #082c40;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-decoration: none;
  color: white;
}

/* DIVIDER */
.footer-divider {
  margin: 40px 0;
  border-top: 1px dashed #7fa1b8;
}

/* COPYRIGHT */
.copyright {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #082c40;
  color: white;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 4px;
}

.casitas {
  padding: 40px 20px;
  text-align: center;
}

.casitas h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 30px;
}

.casita-card {
  margin-bottom: 40px;
}

/* IMAGE */
.image-container {
  position: relative;
  cursor: pointer;
}

.image-container img {
  width: 100%;
  display: block;
}

/* CAPACITY OVERLAY */
.capacity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  color: white;

  display: flex;
  justify-content: space-between;
  padding: 15px;

  opacity: 0;
  transition: 0.3s;
}

/* ACTIVE STATE */
.image-container.active .capacity-overlay {
  opacity: 1;
}

/* TITLE */
.casita-title {
  background: #f3f3f3;
  padding: 20px;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
}

/* BUTTON */
.see-details {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #0d3b56;
  color: white;
  text-decoration: none;

  padding: 15px 20px;
  font-size: 14px;
  letter-spacing: 2px;
}

.explore {
  padding: 60px 20px;
  text-align: center;
  background: #f7f7f7;
}

/* TITLE */
.explore h2 {
  font-size: 28px;
  letter-spacing: 2px;
  color: #0e3a53;
  margin-bottom: 30px;
}

/* IMAGE */
.explore-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 4px;
}

/* SMALL LINE UNDER IMAGE */
.explore-line {
  width: 60px;
  height: 3px;
  background: #dcdcdc;
  margin: 20px auto;
}

/* LINK */
.explore-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #a67845;
  text-decoration: none;
  font-weight: 500;
}

/* ARROW */
.explore-link span {
  margin-left: 10px;
  transition: 0.3s;
}

/* HOVER EFFECT */
.explore-link:hover span {
  margin-left: 18px;
}

.about-text-section {
  background: #f7f7f7;
  padding: 60px 20px;
}

.about-container {
  max-width: 850px;
  margin: auto;
  background: #ffffff;
  padding: 50px 30px;
  text-align: left;
}

/* MAIN TITLE */
.about-title {
  font-size: 28px;
  line-height: 1.5;
  color: #444;
  font-weight: 500;
  margin-bottom: 30px;
}

/* PARAGRAPHS */
.about-container p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

/* SEE MORE BUTTON */
.see-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 30px;
  background: #a67845;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

/* BOOK LINK */
.book-link {
  display: block;
  margin-top: 30px;
  color: #a67845;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
}

.book-link span {
  margin-left: 10px;
  transition: 0.3s;
}

.book-link:hover span {
  margin-left: 18px;
}
.extra-text {
  display: none;
}

.services {
  text-align: center;
  padding: 60px 20px;
  background: #f5f5f5;
}

.services h2 {
  font-size: 32px;
  letter-spacing: 2px;
  color: #1f3d4d;
  margin-bottom: 40px;
}

.services-slider {
  position: relative;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding-bottom: 30px;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(176, 130, 83, 0.85);
  color: white;
  padding: 12px;
  font-size: 14px;
  letter-spacing: 1px;
}

.slide h3 {
  margin: 20px 0 10px;
  color: #9c6b3c;
  font-size: 26px;
}

.slide p {
  max-width: 700px;
  margin: auto;
  color: #555;
  line-height: 1.6;
  padding: 0 20px;
}

/* CONTROLS */
.controls {
  position: absolute;
  top: 20px;
  right: 20px;
}

.controls button {
  background: #777;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-left: 5px;
  cursor: pointer;
  font-size: 18px;
}

.controls button:hover {
  background: #555;
}

.rooms-page{
  background:#f7f7f7;
  padding-bottom:80px;
}

.room-block{
  margin-bottom:100px;
}

/* IMAGE SLIDER */

.room-slider{
  position:relative;
  overflow:hidden;
}

.room-images{
  display:flex;
  transition:0.5s ease;
}

.room-image{
  min-width:100%;
  height:430px;
  object-fit:cover;
}

/* BUTTONS */

.slider-buttons{
  position:absolute;
  top:25px;
  right:25px;
  display:flex;
  gap:10px;
}

.slider-buttons button{
  width:60px;
  height:60px;
  border:none;
  background:rgba(0,0,0,0.45);
  color:white;
  font-size:40px;
  cursor:pointer;
}

/* ROOM TAG */

.room-tag{
  position:absolute;
  bottom:35px;
  left:30px;
  color:white;
  font-size:18px;
  letter-spacing:5px;
  font-weight:600;
}

/* RATE */

.rate-note{
  font-size:14px;
  color:#999;
  font-style:italic;
  margin:15px 30px 0;
}

/* INFO */

.room-info{
  padding:70px 30px 0;
  text-align:center;
}

.promo-line{
  color:#b4b4b4;
  letter-spacing:4px;
  font-size:15px;
  margin-bottom:20px;
}

.room-info h1{
  font-size:72px;
  font-weight:400;
  color:#444;
  line-height:1.1;
  margin-bottom:25px;
}

.divider{
  width:100%;
  height:2px;
  background:#ececec;
  margin-bottom:40px;
}

.room-details h3{
  color:#ab7a3e;
  font-size:22px;
  line-height:1.8;
  font-weight:700;
}

.capacity{
  margin:35px 0;
  font-size:24px;
  color:#555;
}

.room-details h4{
  font-size:24px;
  color:#444;
  margin-bottom:25px;
}

.room-details ul{
  list-style:none;
  padding:0;
}

.room-details li{
  font-size:22px;
  color:#555;
  line-height:1.9;
}

/* BUTTON */

.book-btn{
  background:#003b67;
  color:white;
  text-decoration:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:28px 30px;
  margin-top:50px;
  font-size:28px;
  font-weight:600;
  letter-spacing:2px;
}

/* EXPERIENCE PAGE FIX */

.experience-hero {
  min-height: 55vh;
  background: linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
  url("images/beach.PNG") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 80px 20px;
}

.experience-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 70px;
  font-weight: 400;
}

.experience-hero p {
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.experience-intro {
  background: #f8f4ec;
  text-align: center;
  padding: 70px 20px;
}

.experience-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #23382c;
  margin-bottom: 20px;
}

.experience-intro p {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
}

.experience-list {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 20px;
}

.experience-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  margin-bottom: 80px;
  background: #fff;
  padding: 25px;
}

.experience-card.reverse img {
  order: 2;
}

.experience-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.experience-info {
  padding: 20px;
}

.experience-info .hours {
  color: #947b45;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 15px;
}

.experience-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 400;
  color: #23382c;
  margin-bottom: 18px;
}

.experience-info p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.experience-info a {
  display: inline-block;
  margin-top: 10px;
  color: #23382c;
  font-weight: 600;
  text-decoration: none;
}

.experience-cta {
  background: #23382c;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.experience-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 15px;
}

.experience-cta p {
  margin-bottom: 30px;
}

.experience-cta a {
  background: #fff;
  color: #23382c;
  padding: 15px 35px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

/* MOBILE */

@media (max-width: 768px) {
  .experience-hero {
    min-height: 45vh;
  }

  .experience-hero h1 {
    font-size: 45px;
  }

  .experience-card,
  .experience-card.reverse {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 20px;
    margin-bottom: 45px;
  }

  .experience-card.reverse img {
    order: 0;
  }

  .experience-card img {
    height: 260px;
  }

  .experience-info {
    padding: 5px;
  }

  .experience-info h2,
  .experience-intro h2,
  .experience-cta h2 {
    font-size: 32px;
  }
}


/* CONTACT */

.contact-hero{
height:55vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:
linear-gradient(
rgba(0,0,0,.35),
rgba(0,0,0,.35)
),
url(images/contact.PNG)
center/cover;

color:#fff;
}

.contact-hero h1{
font-family:
"Playfair Display";
font-size:70px;
font-weight:400;
}

.contact-section{

max-width:1200px;
margin:auto;

padding:80px 20px;

display:grid;

grid-template-columns:
1fr 1fr;

gap:60px;

}

.contact-info h2,
.contact-form h2{

font-family:
"Playfair Display";

font-size:42px;

margin-bottom:20px;

color:#23382c;

}

.contact-info p{

margin-bottom:25px;
line-height:1.8;

}

.contact-features{

display:grid;

grid-template-columns:
repeat(2,1fr);

gap:15px;

margin-top:30px;

}

.contact-features div{

padding:15px;
background:#f7f3eb;

text-align:center;

}

.contact-form{

background:#fff;
padding:40px;

box-shadow:
0 10px 30px
rgba(0,0,0,.05);

}

.contact-form input,
.contact-form textarea,
.contact-form select{

width:100%;

padding:16px;

margin-bottom:15px;

border:1px solid #ddd;

font-size:15px;

}

.contact-form textarea{

height:150px;

resize:none;

}

.contact-form button{

width:100%;

padding:18px;

background:#23382c;

color:#fff;

border:none;

font-weight:600;

cursor:pointer;

}

.contact-map iframe{

width:100%;
height:450px;
border:none;

}

@media(max-width:768px){

.contact-section{

grid-template-columns:
1fr;

}

.contact-hero h1{

font-size:45px;

}

.contact-form{

padding:25px;

}

}

/* DINING PAGE */

.dining-hero {
  min-height: 60vh;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("images/dining.PNG") center/cover no-repeat;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
}

.dining-hero p {
  letter-spacing: 4px;
  font-size: 13px;
  margin-bottom: 15px;
}

.dining-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 75px;
  font-weight: 400;
}

.dining-intro {
  background: #f8f4ec;
  text-align: center;
  padding: 80px 20px;
}

.dining-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  color: #23382c;
  margin-bottom: 25px;
}

.dining-intro p {
  max-width: 850px;
  margin: 0 auto 22px;
  line-height: 1.8;
  color: #555;
}

.dining-intro a {
  display: inline-block;
  margin-top: 20px;
  color: #23382c;
  font-weight: 600;
  text-decoration: none;
}

.dining-list {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px;
}

.dining-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  background: #fff;
  padding: 25px;
  margin-bottom: 75px;
}

.dining-card.reverse img {
  order: 2;
}

.dining-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
}

.dining-info {
  padding: 25px;
}

.dining-info .hours {
  color: #947b45;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 15px;
}

.dining-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  color: #23382c;
  font-weight: 400;
  margin-bottom: 18px;
}

.dining-info p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.dining-info a {
  display: inline-block;
  margin-top: 12px;
  color: #23382c;
  text-decoration: none;
  font-weight: 600;
}

.dining-contact {
  background: #23382c;
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.dining-contact h2 {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  font-weight: 400;
  margin-bottom: 15px;
}

.dining-contact p {
  margin-bottom: 35px;
}

.dining-contact form {
  max-width: 700px;
  margin: 0 auto;
}

.dining-contact input,
.dining-contact select,
.dining-contact textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 15px;
  border: none;
  font-size: 15px;
}

.dining-contact textarea {
  height: 150px;
  resize: none;
}

.dining-contact button {
  width: 100%;
  padding: 18px;
  background: #fff;
  color: #23382c;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 768px) {
  .dining-hero {
    min-height: 45vh;
  }

  .dining-hero h1 {
    font-size: 45px;
  }

  .dining-card,
  .dining-card.reverse {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 20px;
    margin-bottom: 45px;
  }

  .dining-card.reverse img {
    order: 0;
  }

  .dining-card img {
    height: 260px;
  }

  .dining-info {
    padding: 5px;
  }

  .dining-info h2,
  .dining-intro h2,
  .dining-contact h2 {
    font-size: 32px;
  }
}

/* GALLERY PAGE */

.gallery-hero {
  min-height: 55vh;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.35)),
    url("https://calalaiya.com/wp-content/uploads/2021/07/DSC_0007-min-scaled.jpg") center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.gallery-hero p {
  letter-spacing: 5px;
  font-size: 13px;
  margin-bottom: 15px;
}

.gallery-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 75px;
  font-weight: 400;
}

.gallery-section {
  background: #f8f4ec;
  padding: 80px 20px;
}

.gallery-section h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 46px;
  color: #23382c;
  margin-bottom: 50px;
}

.gallery-grid {
  max-width: 1200px;
  margin: auto;
  columns: 3 280px;
  column-gap: 20px;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  display: block;
  object-fit: cover;
  transition: .3s;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  filter: brightness(.85);
}

@media(max-width:768px) {
  .gallery-hero h1 {
    font-size: 45px;
  }

  .gallery-section h2 {
    font-size: 32px;
  }

  .gallery-grid {
    columns: 1;
  }}

  .whatsapp-link a{
color:#25D366;
font-weight:600;
text-decoration:none;
}

.whatsapp-link a:hover{
opacity:.8;
}