/* ===================== Root & Base ===================== */
:root {
  --dark-brown: #3b2e2f;
  --medium-brown: #5a4748;
  --light-brown: #b49a8f;
  --accent-gold: #E59312;
  --white: #ffffff;
  --text-light: #f0f0f0;
}

html {
  /* JS handles eased scrolling */
  scroll-behavior: auto;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--dark-brown);
  color: var(--white);
  overflow-x: hidden;
}

/* ===================== Typography ===================== */
.section-heading h2,
.nightlife-section h2,
.gallery-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: #E59312;
  margin-bottom: 10px;
}

.section-heading p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #f0f0f0;
}

.nightlife-section h2,
.gallery-section h2 {
  margin-bottom: 30px;
}

/* ===================== Navigation ===================== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  background-color: rgba(59, 46, 47, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Removed backdrop blur to prevent GPU-heavy repaints during scroll */
}

.logo-circle {
  width: 70px;
  height: 70px;
  background-color: #f8f5f5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #423738;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.logo-circle img {
  display: block;
  padding: 0;
  margin: 0;
}
.logo-circle::before {
  content: 'B-Hive';
  display: none;
}
.logo-circle img:not([src]) + ::before {
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding: 5px 10px;
  transition: all 0.2s ease;
}
.nav-links li a {
  color: #f9f6f6;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s ease;
}
.nav-links li a:hover {
  color: var(--accent-gold);
}
.nav-links li::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold);
  left: 0;
  bottom: 0;
  transition: width 0.2s ease;
}
.nav-links li:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all 0.2s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================== Hero Section ===================== */
/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2rem 5%;
  overflow: hidden; /* Prevent video overflow */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes video behave like background-size: cover */
  z-index: -1; /* Behind the content */
}

.hero-content {
  position: relative;
  z-index: 1; /* Keep text above video */
  color: white;
}


.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* subtle overlay */
  z-index: 1;
}

/* === FORM BOX STYLING === */
.reservation-form-right {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
  font-size: 1rem;
  margin-top: 145px;
}

.reservation-form-right h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.reservation-form-right input,
.reservation-form-right select {
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 100%;
  font-size: 1rem;
}

.reservation-form-right input::placeholder,
.reservation-form-right select option {
  color: #eee;
}

.reservation-form-right input:focus,
.reservation-form-right select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.3);
}

/* Date and Time in one row on desktop */
.date-time-row {
  display: flex;
  gap: 1rem;
}

.date-time-row input {
  flex: 1;
}

/* Submit Button */
.reservation-form-right .submit-btn {
  background-color: #000;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.reservation-form-right .submit-btn:hover {
  background-color: #222;
}

.reservation-form-right select {
  padding: 10px 12px;
  border: none;
  border-radius: 6px;    
  font-size: 1rem;
  width: 100%;
}

.reservation-form-right select option {
  color: #000; /* Ensure dropdown options are black */
  background-color: #fff; /* Option background is white */
}

/* === MOBILE VIEW (Max 480px) === */
@media (max-width: 480px) {
  .hero {
    min-height: 160vh; /* More height for background visibility */
    background-attachment: scroll; /* Fix for iOS not supporting fixed bg */
    justify-content: center;
    padding: 1rem;
  }

  .reservation-form-right {
    padding: 1rem;
    max-width: 95%;
    font-size: 0.9rem;
  }

  .date-time-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .reservation-form-right input,
  .reservation-form-right select {
    font-size: 0.9rem;
    padding: 8px 10px;
  }

  .reservation-form-right h3 {
    font-size: 1.2rem;
  }

  .reservation-form-right .submit-btn {
    font-size: 0.9rem;
    padding: 8px;
  }
}

/* === TABLET VIEW (Max 768px) === */
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    padding: 2rem;
  }

  .reservation-form-right {
    max-width: 100%;
  }

  .form-row {
    flex-direction: column;
  }
}

/* === HERO TEXT SECTION === */
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
  margin-top: 145px;
  animation: fadeInLeft 1s ease-in-out forwards;
  opacity: 0;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #E59312; /* golden yellow */
  margin-bottom: 0.5rem;
}


.buzz-heading {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.buzz-subtext {
  font-size: 1.5rem;
  font-weight: 400;
  color: #eee;
}

/* Align both items in hero */
.hero {
  justify-content: space-between;
  flex-wrap: wrap;
}

/* === ANIMATION === */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === RESPONSIVE TEXT === */
@media (max-width: 768px) {
  .hero-text {
    text-align: center;
    margin-top: 2rem;
  }

  .buzz-heading {
    font-size: 2rem;
  }

  .buzz-subtext {
    font-size: 1.2rem;
  }
}



/* ===================== Highlights Section ===================== */
.highlights-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #5a4748 0%, #423738 100%);
  position: relative;
  background-image: url('images/DSC07954_11zon.jpg');
  background-size: cover;
  background-position: center;
  /* Disable parallax to reduce paint cost */
  background-attachment: scroll;
}

.highlights-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 55, 56, 0.9);
  /* Removed backdrop blur overlay */
  z-index: 1;
}

.highlights-section > * {
  position: relative;
  z-index: 2;
}

.section-heading,
.content-grid {
  position: relative;
  z-index: 2;
}

.section-heading {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: transparent;
}

.content-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 30px 20px;
  background-color: transparent;
}

.grid-item {
  display: flex;
  justify-content: center;
}

.grid-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
}

.grid-inner.reverse {
  flex-direction: row-reverse;
}

.grid-img {
  width: 500px;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  will-change: transform;
}

.grid-img:hover {
  transform: scale(1.02);
}

.grid-text {
  max-width: 500px;
  flex: 1;
}

.grid-text h3 {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

.grid-text p {
  font-size: 18px;
  color: #f0f0f0;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

.top-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.top-row img {
  width: 400px;
  height: 600px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.top-row img:hover {
  transform: scale(1.02) translateZ(0);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry-grid .grid-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.masonry-grid .grid-item:hover {
  transform: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.masonry-grid .grid-item.tall {
  grid-row: span 2;
}

/* ===================== Nightlife Section ===================== */
.nightlife-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--dark-brown);
  position: relative;
  background-image: url('images/DSC08111_11zon.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.nightlife-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 55, 56, 0.9);
  /* Removed backdrop blur overlay */
  z-index: 1;
}

.nightlife-section > * {
  position: relative;
  z-index: 2;
}

/* ===================== Gallery Section ===================== */
.gallery-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #423738;
  position: relative;
  background-image: url('images/DSC08115_11zon.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 55, 56, 0.9);
  /* Removed backdrop blur overlay */
  z-index: 1;
}

.gallery-section > * {
  position: relative;
  z-index: 2;
}

/* ===================== Facts Section ===================== */
.facts-section {
  background: linear-gradient(135deg, #2d2324 0%, #423738 100%);
  padding: 60px 0 40px 0;
  color: #fff;
  text-align: center;
  position: relative;
  background-image: url('images/DSC08122_11zon.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.facts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66, 55, 56, 0.9);
  /* Removed backdrop blur overlay */
  z-index: 1;
}

.facts-section > * {
  position: relative;
  z-index: 2;
}

.facts-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #E59312;
  margin-bottom: 40px;
  letter-spacing: 1px;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.fact-card {
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  padding: 32px 18px 24px 18px;
  min-width: 0;
  max-width: 100%;
  transition: transform 0.2s ease;
  border: 1.5px solid #E59312;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
}
.fact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(229,147,18,0.15);
  border-color: #fff;
}
.fact-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #E59312;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.fact-card:hover .fact-number {
  color: #fff;
}
.fact-text {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.92;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

/* ===================== Responsive: Facts Section ===================== */
@media (min-width: 1100px) {
  .facts-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }
}
@media (min-width: 700px) and (max-width: 1099px) {
  .facts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
@media (max-width: 699px) {
  .facts-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .fact-card {
    width: 90%;
    margin: 0 auto;
    padding: 22px 8px 18px 8px;
  }
  .facts-heading {
    font-size: 2rem;
  }
}

/* ===================== Responsive: Gallery Section ===================== */
@media (max-width: 900px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
    gap: 10px;
  }
  .masonry-grid .grid-item,
  .masonry-grid .grid-item.tall {
    grid-row: span 1 !important;
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
}
@media (max-width: 700px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }
  .masonry-grid .grid-item,
  .masonry-grid .grid-item.tall {
    width: 100%;
    height: auto;
    min-height: 160px;
    object-fit: cover;
    grid-row: span 1 !important;
    border-radius: 12px;
  }
}



/* ===================== Responsive: General Layout ===================== */
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .grid-inner {
    flex-direction: column;
  }
  .top-row {
    flex-direction: column;
    gap: 1rem;
    
    
  }
  .gallery-section .masonry-grid img {
    width: 100%;
    height: auto;
  }
  .container {
    flex-direction: column;
    padding: 1rem;
  }
  .reservation-section, .testimonials-section {
    width: 100%;
    min-width: unset;
  }
}

/* ===================== Responsive: Navigation ===================== */
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    color: #222;
    flex-direction: column;
    width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: 0 0 8px 8px;
    transform: translateX(100%);
    transition: transform 0.3s, opacity 0.3s;
    padding: 1rem 0;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
  }
  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li a {
    color: #222;
    padding: 1rem 2rem;
    display: block;
  }
  .hamburger {
    display: flex !important;
  }
}
@media (min-width: 901px) {
  .nav-links {
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .hamburger {
    display: none !important;
  }
}

/* ===================== Other Responsive Breakpoints ===================== */
@media (max-width: 768px) {
  .nav {
    padding: 15px 20px;
    justify-content: space-between;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(66, 55, 56, 0.98);
    ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: left 0.3s ease-in-out;
    backdrop-filter: blur(10px);
  }
  .nav-links.show {
    left: 0;
  }
  .nav-links li {
    padding: 15px;
    text-align: center;
    font-size: 20px;
  }
  .nav-links li a {
    font-size: 20px;
    font-weight: 500;
    color: #f8f5f5;
  }
  .logo-circle {
    top: 12px;
    left: 20px;
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
  .hero {
    height: 70vh;
    background-attachment: scroll;
  }
  .section-heading {
    padding: 60px 20px 30px;
  }
  .section-heading h2,
  .nightlife-section h2,
  .gallery-section h2 {
    font-size: 28px;
  }
  .section-heading p {
    font-size: 14px;
  }
  .content-grid {
    gap: 50px;
    padding: 20px;
  }
  .grid-inner,
  .grid-inner.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .grid-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
  }
  .grid-text {
    max-width: 100%;
    padding: 0 10px;
  }
  .grid-text h3 {
    font-size: 22px;
  }
  .grid-text p {
    font-size: 16px;
  }
  .nightlife-section {
    padding: 60px 20px;
  }
  .top-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .top-row img {
    width: 100%;
    max-width: 350px;
    height: 250px;
  }
  .gallery-section {
    padding: 60px 20px;
  }
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
  }
  .masonry-grid .grid-item.tall {
    grid-row: span 2;
  }
}

/* ===================== Smallest Devices ===================== */
@media (max-width: 480px) {
  .container {
    padding: 0.5rem;
  }
  .form-container {
    padding: 1rem;
  }
  .reservation-section h1,
  .testimonials-section h2 {
    font-size: 1.75rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
}

/* ===================== Reservation Form Modern Design ===================== */
.reservation-section {
  background: linear-gradient(135deg, #2d2324 0%, #423738 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 40px 32px 32px 32px;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.form-container {
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 32px 24px;
  box-shadow: 0 4px 18px rgba(229,147,18,0.08);
}

.reservation-section h1 {
  color: #E59312;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.reservation-section .subtitle {
  color: #b49a8f;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.reservation-form .form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.reservation-form label {
  color: #E59312;
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.reservation-form input,
.reservation-form select {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #b49a8f;
  background: #2d2324;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  margin-bottom: 2px;
}

.reservation-form input:focus,
.reservation-form select:focus {
  border-color: #E59312;
  box-shadow: 0 0 0 2px rgba(229,147,18,0.15);
}

.reservation-form .form-row {
  display: flex;
  gap: 16px;
}

.reservation-form .form-row .form-group {
  flex: 1;
}

.reservation-form button.submit-btn {
  background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  box-shadow: 0 4px 16px rgba(229,147,18,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}

/* Responsive for Reservation Form */
@media (max-width: 700px) {
  .reservation-section {
    padding: 24px 6px;
  }
  .form-container {
    padding: 18px 6px;
  }
  .reservation-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* ===================== Testimonials Modern Design ===================== */
.testimonials-section {
  background: linear-gradient(135deg, #423738 0%, #2d2324 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 40px 32px 32px 32px;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.testimonials-section h2 {
  color: #E59312;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.testimonials-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(229,147,18,0.08);
  padding: 24px 18px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 5px solid #E59312;
}

.testimonial-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(229,147,18,0.18);
}

.testimonial-text {
  font-size: 1.08rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}

.testimonial-author {
  color: #E59312;
  font-weight: 600;
  font-size: 1rem;
  text-align: right;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 700px) {
  .testimonials-section {
    padding: 24px 6px;
  }
  .testimonial-card {
    padding: 16px 8px;
  }
}

/* ===================== Reservation & Testimonials Wrapper ===================== */
.reservation-testimonials-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 16px;
  position: relative;
}

.reservation-testimonials-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5%;
  bottom: 5%;
  width: 2px;
  background: rgba(229,147,18,0.15);
  z-index: 1;
}

.reservation-section,
.testimonials-section {
  flex: 1 1 0;
  min-width: 320px;
  margin: 0;
  max-width: none;
  min-height: 520px;
  background: linear-gradient(135deg, #2d2324 0%, #423738 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 40px 32px 32px 32px;
  position: relative;
  z-index: 2;
}

/* Responsive: Stack on mobile */
@media (max-width: 900px) {
  .reservation-testimonials-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .reservation-testimonials-wrapper::before {
    display: none;
  }
  .reservation-section,
  .testimonials-section {
    max-width: 100%;
    min-width: 0;
    min-height: unset;
  }
}

/* ===================== Footer Section ===================== */
.site-footer {
  background: linear-gradient(135deg, #2d2324 0%, #423738 100%);
  color: #fff;
  padding: 48px 0 16px 0;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto 24px auto;
  padding: 0 24px;
  gap: 40px;
}

.footer-description {
  flex: 2 1 320px;
  margin-bottom: 24px;
}

.footer-description h2 {
  font-family: 'Playfair Display', serif;
  color: #E59312;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-description p {
  color: #f0f0f0;
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-reserve-btn {
  display: inline-block;
  background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
  color: #fff;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(229,147,18,0.10);
  margin-top: 10px;
}

.footer-reserve-btn:hover {
  background: linear-gradient(90deg, #E59312 0%, #b49a8f 100%);
  box-shadow: 0 4px 16px rgba(229,147,18,0.10);
}

.footer-contact {
  flex: 1 1 260px;
  margin-bottom: 24px;
}

.footer-contact h3 {
  color: #E59312;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 10px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.footer-contact a {
  color: #E59312;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  color: #b49a8f;
  font-size: 0.95rem;
  padding-top: 12px;
  border-top: 1px solid rgba(229,147,18,0.12);
  letter-spacing: 0.5px;
}

.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #E59312;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #E59312;
  color: #fff;
}


/* Responsive Footer */
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 18px;
    padding: 0 10px;
  }
  .footer-description,
  .footer-contact {
    margin-bottom: 10px;
  }
}

.intro-ccta {
    display: block;
    width: 160px; /* Set small width */
    margin: 20px auto; /* Center horizontally */
    padding: 8px 0; /* Adjust padding for smaller width */
    background: linear-gradient(to right,#311e09,#dcb9a9);
    color: white;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}


.parent-container {
    text-align: center;
     justify-content: center;
}
.intro-ccta:hover {
   background: linear-gradient(to right,#f1c0aa,#2b1908);
    transform: translateY(-2px) scale(1.05);
}


 .whatsapp-btn, .phone-btn {
      position: fixed;
      width: 50px;
      height: 50px;
      right: 15px; /* Same right position for both */
      background-color: #25D366; /* WhatsApp green */
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 3px #999;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .whatsapp-btn {
      bottom: 100px; /* Higher position */
    }

    .phone-btn {
      bottom: 40px; /* Lower position, below WhatsApp */
      background-color: #007BFF; /* Phone button blue */
    }

    .whatsapp-btn:hover, .phone-btn:hover {
      transform: scale(1.1); /* Slight zoom on hover */
      opacity: 0.9; /* Slight fade on hover */
    }

    .whatsapp-btn i, .phone-btn i {
      margin: 0;
    }

    /* Fallback text if icons don't load */
    .whatsapp-btn::after, .phone-btn::after {
      display: none;
      content: attr(data-fallback);
      font-size: 16px;
      font-family: Arial, sans-serif;
    }

    /* Show fallback text if Font Awesome fails */
    .whatsapp-btn.no-icon::after, .phone-btn.no-icon::after {
      display: block;
    }

    /* Blog Section Styles */
.blog-section {
  padding: 60px 20px;
  background-color: #f8f8f8; /* Light background to match a modern, clean look */
  text-align: center;
}

.section-heading {
  margin-bottom: 40px;
}

/* Call-to-Action Button */
.intro-ccta {
  display: inline-block;
  width: 160px;
  margin: 20px auto 0 auto;
  padding: 12px 24px;
  background: linear-gradient(to right, #311e09, #dcb9a9);
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
}
.intro-ccta:hover {
  background: linear-gradient(to right, #f1c0aa, #2b1908);
  transform: translateY(-2px) scale(1.05);
}

/* Section Heading */
.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #E59312;
  margin-bottom: 10px;
}
.section-heading p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
}

/* ...existing code... *//* ...existing code... */

/* Call-to-Action Button */
.intro-ccta {
  display: inline-block;
  width: 160px;
  margin: 20px auto 0 auto;
  padding: 12px 24px;
  background: linear-gradient(to right, #311e09, #dcb9a9);
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border: none;
  cursor: pointer;
}
.intro-ccta:hover {
  background: linear-gradient(to right, #f1c0aa, #2b1908);
  transform: translateY(-2px) scale(1.05);
}

/* Section Heading */
.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #E59312;
  margin-bottom: 10px;
}
.section-heading p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
}

/* ...existing code... */

.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #E59312;
  margin-bottom: 10px;
}

.section-heading p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color:var(--white)
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Blog Card */
.blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.blog-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e67e22; /* Vibrant orange to match a pub's lively vibe */
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #d35400;
}

/* Call-to-Action Button (Reusing intro-ccta) */
.intro-ccta {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #e67e22;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.intro-ccta:hover {
  background-color: #d35400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .blog-img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .blog-card {
    margin: 0 10px;
  }

  .blog-content h3 {
    font-size: 1.3rem;
  }

  .blog-content p {
    font-size: 0.9rem;
  }
}

/* Blog Post Section Styles */
.blog-post-section {
  padding: 60px 20px;
  background-color: #f8f8f8; /* Light background for a clean look */
  text-align: center;
}

.blog-post-container {
  max-width: 800px; /* Narrower width for readability */
  margin: 0 auto;
  text-align: left;
}

.blog-post-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  background-color: burlywood;
  margin-top: 90px
}

.blog-post-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.blog-post-content {
  font-family: 'Montserrat', sans-serif;
  color: #666;
  line-height: 1.8;
}

.blog-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #333;
  margin: 30px 0 15px;
}

.blog-post-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.blog-post-content ol, .blog-post-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.blog-post-content li {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.blog-post-content strong {
  color: #333;
}

.blog-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #e67e22; /* Vibrant orange to match pub vibe */
  text-decoration: none;
}

.blog-cta:hover {
  color: #d35400;
}

/* Call-to-Action Button (Reusing intro-ccta) */
.intro-ccta {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #e67e22;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.intro-ccta:hover {
  background-color: #d35400;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-post-title {
    font-size: 2rem;
  }

  .blog-post-img {
    max-height: 300px;
  }

  .blog-post-content h2 {
    font-size: 1.6rem;
  }

  .blog-post-content p, .blog-post-content li {
    font-size: 1rem;
  }
  .blog-navigation {
    flex-direction: column;
    gap: 15px;
  }

  .blog-nav-btn {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 480px) {
  .blog-post-container {
    padding: 0 10px;
  }

  .blog-post-title {
    font-size: 1.8rem;
  }

  .blog-post-img {
    max-height: 250px;
  }
}

/* Blog Navigation Buttons */
.blog-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.blog-nav-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #b49a8f;;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.blog-nav-btn:hover {
  background-color: #2d2324
}

.blog-nav-prev::before {
  content: '← ';
}

.blog-nav-next::after {
  content: ' →';
}

