/* ==========================================================================
   Table of Contents
   ==========================================================================
   0. Global Reset & Scroll Fix
   1. Logo
   2. Banner & Hero Section
   3. Hotel Booking Form Area
   4. General Product Image Styling
   5. Swiper Carousel (Slider) Controls
   6. General Non-Responsive Styling
   ========================================================================== */

/* =================================
|   0. Global Reset & Scroll Fix
================================= */
html,
body {
  width: 100%;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* =================================
|   1. Logo
================================= */
.logo_h {
  display: block;
  padding: 8px 0;
  text-align: center;
  overflow: hidden;
  /* Prevent hover scale overflow */
}

.logo_h img {
  height: 120px;
  width: 95%;
  transition: transform 0.3s ease-in-out;
  margin: 0 auto;
  display: block;
}

.logo_h:hover img {
  transform: scale(1);
}

/* =================================
|   2. Banner & Hero Section
================================= */
.banner_area {
  position: relative;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  color: #ffffff;
}

.banner_swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Prevent Swiper overflow */
  z-index: 1;
}

.banner_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Banner Content */
.banner_content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.banner_content h2,
.banner_content h6,
.banner_content p {
  color: #ffffff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5rem;
}

.banner-title {
  color: #e24838;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: capitalize;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);

  line-height: 1.2;
  margin-bottom: 1rem;
}

/* =================================
|   3. Hotel Booking Form Area
================================= */
.hotel_booking_area {
  margin-top: -100px;
  position: relative;
  z-index: 3;
  padding: 50px 20px;
  width: 100%;
  overflow-x: hidden;
}

.hotel_booking_table {
  opacity: 0.9;
  transition: opacity 0.4s ease-in-out;
  max-width: 1100px;
  margin: 0 auto;
}

.hotel_booking_table:hover {
  opacity: 1;
}

/* =================================
|   4. General Product Image Styling
================================= */
.product-image {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: all 0.35s ease;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

.product-image:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* =================================
|   5. Swiper Carousel (Slider) Controls
================================= */

/* Navigation Arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #ffffff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #ffb300;
  color: #091a9e;
  border-color: transparent;
  opacity: 1;
  transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.5rem !important;
  font-weight: bold;
}

.swiper-button-prev {
  left: 20px;
  /* Reduced to prevent overflow */
}

.swiper-button-next {
  right: 20px;
  /* Reduced to prevent overflow */
}

/* Pagination Dots */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
  margin: 0 6px !important;
  transition: all 0.4s ease;
  cursor: pointer;
}

.swiper-pagination-bullet:hover {
  transform: scale(1.1);
  background: #000000;
  transition: all 0.4s ease;
}

.swiper-pagination-bullet-active {
  background: #2600ff;
  width: 80px;
  border-radius: 10px;
}

/* =================================
|   6. General Non-Responsive Styling
================================= */

/* Scroll Animation */
.scroll-pop {
  opacity: 0;
  transform: translateY(120px);
  transition: all 0.5s ease-out;
}

.scroll-pop.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar Links */
.navbar-nav .nav-link {
  font-size: 15px !important;
  font-weight: 800;
  color: #000 !important;
  text-transform: capitalize;
}

.navbar-nav .nav-link:hover {
  color: #002fff !important;
  text-decoration: underline;
  transform: scale(1.05);
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .navbar-nav .nav-link {
    font-size: 13px !important;
    /* adjust as needed */
    font-weight: 800;
    color: #000 !important;
    text-transform: capitalize;
    letter-spacing: 0.01rem;
  }
}

@media (max-width: 1025px) {
  .navbar-nav .nav-link:hover {
    color: #000000 !important;
    text-decoration: underline;
    transform: scale(1);
  }
}

/* Services */
.facility_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.facility_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.facility_img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.facility_img:hover::after {
  opacity: 1;
}

.facilities_item {
  text-align: center;
  margin-bottom: 40px;
}

/* Image Modal */
.img-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Modal Image */
.img-modal img {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  animation: zoomIn 0.3s ease;
}

/* Close Button */
.img-modal .close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.img-modal .close:hover {
  color: #ccc;
}

/* Zoom Animation */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Clickable Images */
.openable-img {
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 10px;
}

.openable-img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* =================================
|   Responsive Adjustments
================================= */
@media (max-width: 992px) {
  .banner-title {
    font-size: 2.4rem;
  }

  .logo_h img {
    height: 120px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .banner_area {
    height: 80vh;
  }

  .banner_content {
    padding: 0 10px;
  }

  .banner-title {
    font-size: 2rem;
  }
}

/* Prevent blue strip under banner images */
.banner_area,
.banner_swiper,
.banner_swiper .swiper-slide,
.banner_swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border: none;
  background-color: #000;
  /* or #fff, depending on your design */
}

/* In case fade effect creates a small gap */
.banner_area {
  background-color: #000;
  /* fallback behind fade transition */
}

/* Prevent any overflow shift on resize */
.swiper,
.banner_swiper {
  overflow: hidden !important;
}

/* Make sure body doesn't show background behind full screen sections */
html,
body {
  background-color: #ffffff;
  /* same as your banner base */
}

/* Navbar default for desktop (above 1024px) */
@media (min-width: 1025px) {
  .navbar-light {
    background-color: rgba(255, 255, 255, 0.45);
    /* slightly transparent white */
    transition: background-color 0.3s ease;
  }
}

/* Navbar for tablet/mobile (1024px and below) */
@media (max-width: 1024px) {
  .navbar-light {
    background-color: #ffffff;
    /* fully opaque white */
    transition: background-color 0.3s ease;
  }
}

@media (min-width: 1025px) {
  .container {
    max-width: 1380px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1580px;
  }
}

/* Responsive iframe container */
.map-responsive {
  position: relative;
  width: 100%;
  /* Maintain aspect ratio (height / width) = 550 / 1340 ≈ 0.41 */
  padding-bottom: 41%;
  overflow: hidden;
  border-radius: 12px;
  /* optional rounded corners */
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* contact form */

.contact_form {
  background-color: #fff;
  /* White background */
  padding: 30px;
  border: 1px solid #ddd;
  /* Light gray border */
  border-radius: 10px;
  /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  /* Soft shadow */
  transition: all 0.3s ease;
}

.contact_form:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  /* Slightly stronger shadow on hover */
}

.contact_form .form-control {
  border: 0.2px solid #ccc;
  /* Default input border */
  border-radius: 6px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.contact_form .form-control:focus {
  border-color: #ff6600;
  /* Highlight color */
  box-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
  /* subtle glow */
  outline: none;
}

.contact_form button.theme_btn {
  background-color: #ff6600;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  border: none;
  transition: all 0.3s ease;
}

.contact_form button.theme_btn:hover {
  background-color: #e65c00;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.contact_form textarea.form-control {
  min-height: 130px;
  /* Make message box bigger */
  resize: none;
}

/* Reels */

/* Scoped only to reels section */
.reels_area {
  background: #f8f9fa;
  padding: 100px 0;
}

.reels_area .video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reels_area .video-wrapper:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.reels_area .video-content {
  width: 100%;
  height: 600px;
  /* larger height for reels */
  object-fit: cover;
  border-radius: 20px;
}

.reels_area .overlay-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
  text-align: left;
  border-radius: 0 0 20px 20px;
}

.reels_area .overlay-caption h4 {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

/* Swiper navigation specific to this section */
.reels_area .swiper-button-prev,
.reels_area .swiper-button-next {
  color: #333;
  transition: color 0.3s ease;
}

.reels_area .swiper-button-prev:hover,
.reels_area .swiper-button-next:hover {
  color: #000;
}

.reels_area .swiper-pagination-bullet-active {
  background: #000;
}

.reels_area .rotate-90 {
  transform: rotate(270deg);
}

.reels_area .video-content {
  max-width: 100%;
  max-height: 600px;

  object-fit: cover;
  /* ensures smooth fill */
  object-position: center;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

/* TESTIMONIAL AREA */

/* --- Testimonial Section Styling --- */
.testimonial_area {
  background: #fafafa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.testimonial_area .section_title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.testimonial_area .section_title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* --- Testimonial Slider --- */
.testimonial_slider .testimonial_item {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin: 15px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 260px;
}

.testimonial_slider .testimonial_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* --- Client Image --- */
.testimonial_slider .testimonial_item img.rounded-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f1b10e;
  flex-shrink: 0;
}

/* --- Text Content --- */
.testimonial_slider .media-body {
  flex: 1;
}

.testimonial_slider .media-body p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial_slider .media-body strong {
  color: #222;
}

/* --- Client Name --- */
.testimonial_slider .sec_h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f1b10e;
  margin-top: 10px;
  transition: color 0.3s;
}

.testimonial_slider .sec_h4:hover {
  color: #d49a0a;
}

/* --- Star Ratings --- */
.testimonial_slider .star {
  margin-top: 8px;
}

.testimonial_slider .star i {
  color: #f1b10e;
  font-size: 16px;
  margin-right: 3px;
  transition: transform 0.3s;
}

.testimonial_slider .star i:hover {
  transform: scale(1.1);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .testimonial_slider .testimonial_item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial_slider .testimonial_item img {
    margin-bottom: 15px;
  }
}

.uniform-img {
  width: 100%;
  height: 650px;
  /* uniform height */
  object-fit: cover;
  /* maintain aspect ratio, crop overflow */
  border-radius: 10px;
  /* optional rounded corners */
  display: block;
}

/* Responsive tweak for smaller screens */
@media (max-width: 768px) {
  .uniform-img {
    height: 200px;
    /* adjust height for mobile */
  }
}

.about-text {
  font-size: 1.2rem;
  /* base font size */
  letter-spacing: 0.05rem;
  /* spacing between letters */
  font-weight: 700;
  /* bold text */
  line-height: 1.6rem;
  /* line height */
  color: #444;
  /* optional: better readability */
  margin-bottom: 20px;
  /* spacing from button */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-text {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
}

@media (max-width: 576px) {
  .about-text {
    font-size: 1rem;
    line-height: 1.4rem;
    letter-spacing: 0.05rem;
  }
}

/* General styling */
.social-icons {
  gap: 25px;
  /* spacing between icons */
}

.social-icons a.social-icon {
  color: #555;
  /* default color */
  font-size: 30px;
  /* bigger icons */
  transition: all 0.4s ease;

  /* smooth hover effect */
}

.social-icons a.social-icon:hover {
  color: #0033ff;
  /* hover color */
  transform: scale(1.2) rotate(5deg);
  /* zoom + subtle rotation */
}

/* Mobile responsive */
@media (max-width: 991px) {
  .social-icons {
    gap: 20px;
    margin-top: 10px;
    justify-content: center;
  }

  .social-icons a.social-icon {
    font-size: 26px;
    /* slightly smaller on mobile */
  }
}

/* General spacing for social icons */
.social-icons {
  gap: 25px;
  /* spacing between icons */
  padding-bottom: 15px;
  /* space from bottom of navbar/menu */
}

/* Icon styling */
.social-icons a.social-icon {
  color: #555;
  font-size: 30px;
  transition: all 0.4s ease;
  display: inline-block;
  animation: slideIn 1s ease forwards;
  /* initial slide-in */
}

/* Hover effect */
.social-icons a.social-icon:hover {
  color: #0800ff;
  transform: scale(1.2) rotate(5deg);
  /* zoom + rotate */
  animation: bounce 0.6s;
  /* bounce effect on hover */
}

/* Mobile responsive */
@media (max-width: 991px) {
  .social-icons {
    gap: 20px;
    margin-top: 10px;
    justify-content: center;
    padding-bottom: 20px;
    /* extra space at bottom on mobile menu */
  }

  .social-icons a.social-icon {
    font-size: 26px;
  }
}

/* Google Fonts for a Vintage Look: 'Old Standard TT' for headings, 'Lora' for body */
@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap");

/* Color Palette for Vintage/Classic */
:root {
  --vintage-dark-bg: #04091e;
  --vintage-card-bg: #09143f48;
  --vintage-text-color: #e6e2da;
  --vintage-accent-gold: #ffe310;
  --vintage-border-color: #ffffff;
  --vintage-highlight-bg: #f9f9f9;
  --vintage-highlight-text: #2d2a26;
}

/* General Styling for this section */
.vintage-hotel-section {
  background-color: var(--vintage-dark-bg);
  color: var(--vintage-text-color);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px double var(--vintage-accent-gold);
}

.vintage-hotel-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgdmlld0JveD0iMCAwIDIwMCAyMDAiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBzdHlsZT0ib3BhY2l0eTouMDUiPgogICAgPGZpbHRlciBpZD0icm91Z2hlbiI+CiAgICAgICAgPGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2lceWZlU3RpdGNoPSIwLjUiIG51bU9jdGF2ZXM9IjIiIHNlZWQ9IjAiIHN0aXRjaFRpdGxlcz0ic2l0Y2hUcmljb2xvcmluZyIgb3BlcmF0b3I9ImxpZ2h0ZW4iIC8+CiAgICAgICAgPGZlRGljcGxhY2VtZW50TWFwbiBpbj0iU291cmNlQWw0aGEiIHNjYWxlPSIyIiBYRGFjZW1lbnRNeD0iMSIvPgogICAgPC9maWx0ZXI+CiAgICA8cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJyZ2JhKDAsMCwwLDEpIiBmaWx0ZXI9InVybCgjcGcmVyb3VnaGVuKSIgLz4KPC9zdmc+");
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.vintage-hotel-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vintage-section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--vintage-accent-gold);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.vintage-section-subtitle {
  font-size: 1.25rem;
  color: var(--vintage-text-color);
  margin-bottom: 50px;
  font-style: italic;
}

.vintage-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.vintage-feature-card {
  background-color: var(--vintage-card-bg);
  border: 1px solid var(--vintage-border-color);
  border-radius: 5px;
  padding: 35px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.vintage-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4);
}

.vintage-feature-icon {
  font-size: 3.5rem;
  color: var(--vintage-accent-gold);
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.vintage-feature-card h3 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: var(--vintage-accent-gold);
  font-weight: 700;
}

.vintage-feature-card p {
  color: var(--vintage-text-color);
  line-height: 1.7;
  font-size: 1.05rem;
}

.vintage-highlight {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 18px;
  background-color: var(--vintage-highlight-bg);
  color: var(--vintage-highlight-text);
  font-weight: 700;
  border-radius: 3px;
  font-size: 0.95rem;
  border: 1px solid var(--vintage-border-color);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.vintage-highlight:hover {
  background-color: rgb(220, 220, 7);
  color: rgb(8, 6, 51) !important;
  font-weight: 800;
}

.vintage-feature-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  text-align: left;
  display: inline-block;
}

.vintage-feature-card ul li {
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}

.vintage-feature-card ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--vintage-accent-gold);
  font-size: 1.2rem;
  top: 3px;
}

.vintage-contact-info {
  background-color: var(--vintage-card-bg);
  border-radius: 5px;
  padding: 35px;
  border-top: 3px solid var(--vintage-accent-gold);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3), 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vintage-contact-info h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--vintage-accent-gold);
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.vintage-contact-info p {
  margin: 12px 0;
  font-size: 1.15rem;
  line-height: 1.5;
}

.vintage-contact-info .fas {
  margin-right: 12px;
  font-size: 1.25rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .vintage-section-title {
    font-size: 2.5rem;
  }

  .vintage-features-grid {
    grid-template-columns: 1fr;
  }

  .vintage-hotel-section {
    padding: 60px 15px;
  }
}

.title_color2 {
  /* Font Styling */

  /* A crisp, modern sans-serif font */
  font-size: 24px;
  /* Slightly larger for emphasis */
  font-weight: 500;
  /* Medium weight, less 'shouty' than bold */
  color: #333;
  /* Soft black for high contrast but low strain */

  /* Spacing and Alignment */
  margin-top: 40px;
  /* Space above the heading */
  margin-bottom: 20px;
  /* Space below the heading */
  text-align: center;
  /* Center the text above the form */
  line-height: 1.4;
  /* Improves readability for longer text */
}

/* 1. Import Fonts (if using Google Fonts) */
/* You would include these in your HTML <head> or at the top of your CSS file */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Lato:wght@100;300;400;700;900&display=swap'); */

/* 2. Apply Fonts to Selectors */
h1,
h2,
.banquet-title {
  /* Classic, high-contrast serif for luxury feel */
  font-family: "Playfair Display", serif;
  font-weight: 700; /* Bold weight adds impact */
}

p,
a,
li,
.banquet-subtitle,
.feature-card h3,
.stat-card p {
  /* Highly legible, clean sans-serif for body text */
  font-family: "Cinzel", sans-serif;
  font-weight: 400;
}

/* 🔥 Highlighted "ORDER ONLINE" button */
.order-online-btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;

  transition: all 0.35s ease;
  margin-left: 12px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.order-online-btn:hover {
  color: rgb(1, 0, 0) !important;
  transform: translateY(-2px);
}
