@charset "UTF-8";

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
  /* Fonts */
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --heading-font: "Bitter", serif;
  --nav-font: "Poppins", sans-serif;
  
  /* Colors */
  --background-color: #ffffff;
  --default-color: #352a26;
  --heading-color: #291812;
  --accent-color: #eb5f2d;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  
  /* Nav Colors */
  --nav-color: #352a26;
  --nav-hover-color: #eb5f2d;
  --nav-mobile-bg: #ffffff;
  
  /* Theme Tokens */
  --fib-ink: #1f2328;
  --fib-muted: rgba(31,35,40,.72);
  --fib-champagne: #f7f1e8;
  --fib-blush: #f7e6ea;
  --fib-rose: #b86b77;
  --fib-rose-2: #c97f8a;
  --fib-cream: #fffaf6;
  --fib-line: rgba(31,35,40,.12);
  --fib-radius-btn: 14px;
  --fib-radius-card: 18px;
  
  /* Smooth scroll */
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Global Reset & Base Styles
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p, li {
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.light-background {
  --background-color: #fff9f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.shadow-sm {
  box-shadow: 0 .85rem 1.7rem rgba(0,0,0,.06) !important;
}

.rounded-4 {
  border-radius: 1.25rem !important;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.fib-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.fib-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Brand */
.fib-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 220px;
}

.fib-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.fib-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fib-brand__name {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.05;
  color: var(--heading-color);
}

.fib-brand__tagline {
  font-size: .82rem;
  color: rgba(0,0,0,.55);
  line-height: 1.1;
}

/* Desktop Navigation */
.fib-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1 1 auto;
}

.fib-nav__link {
  text-decoration: none;
  color: rgba(0,0,0,.72);
  font-weight: 600;
  font-size: .98rem;
  padding: 10px 10px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}

.fib-nav__link:hover {
  background: rgba(0,0,0,.05);
  color: rgba(0,0,0,.9);
}

.fib-nav__link.is-active {
  background: rgba(128, 25, 33, .10);
  color: #7a1f28;
}

.fib-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  background: rgba(220,53,69,.10);
  color: #7a1f28;
  border: 1px solid rgba(122,31,40,.18);
}

/* CTA Button */
.btn-getstarted {
  background: #7a1f28;
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  transition: filter 0.2s;
}

.btn-getstarted:hover {
  filter: brightness(.95);
}

/* Mobile Toggle */
.fib-nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  border-radius: 999px;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.fib-nav-toggle__bar {
  width: 22px;
  height: 2px;
  background: rgba(0,0,0,.75);
  position: relative;
  display: block;
  border-radius: 2px;
}

.fib-nav-toggle__bar::before,
.fib-nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: rgba(0,0,0,.75);
  border-radius: 2px;
}

.fib-nav-toggle__bar::before {
  top: -7px;
}

.fib-nav-toggle__bar::after {
  top: 7px;
}

/* Mobile Drawer */
.fib-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999; /* Very high to be above everything */
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
}

.fib-drawer__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(15,15,15,.55);
  z-index: 1;
}

.fib-drawer__panel {
  position: fixed; /* Changed from absolute to fixed */
  top: 0;
  right: 0;
  bottom: 0;
  width: min(92vw, 360px);
  height: 100vh; /* Full viewport height */
  max-height: 100vh;
  background: #fff;
  transform: translateX(102%);
  transition: transform .22s ease;
  box-shadow: -18px 0 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  z-index: 2;
  overflow-y: auto; /* Allow scrolling if content is too tall */
  overflow-x: hidden;
}

.fib-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  flex-shrink: 0; /* Don't let this shrink */
}

.fib-drawer__title {
  font-weight: 800;
  font-size: 1.05rem;
}

.fib-drawer__close {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fib-drawer__links {
  padding: 10px 10px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto; /* Allow scrolling within links if needed */
  overflow-x: hidden;
  flex: 1; /* Take up remaining space */
}

.fib-drawer__link {
  text-decoration: none;
  color: rgba(0,0,0,.86);
  font-weight: 700;
  padding: 12px 12px;
  border-radius: 12px;
  display: block; /* Ensure full width */
}

.fib-drawer__link:hover {
  background: rgba(0,0,0,.05);
}

.fib-drawer__link.is-active {
  background: rgba(128, 25, 33, .10);
  color: #7a1f28;
}

.fib-drawer__cta {
  margin-top: 10px;
  display: block;
  text-align: center;
  background: #7a1f28;
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 14px;
  border-radius: 999px;
}

/* Drawer Open State */
body.fib-drawer-open {
  overflow: hidden;
  position: fixed; /* Prevents background scroll */
  width: 100%;
  height: 100%;
}

body.fib-drawer-open .fib-drawer {
  pointer-events: auto;
  opacity: 1;
}

body.fib-drawer-open .fib-drawer__panel {
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1199px) {
  .fib-nav {
    display: none;
  }
  
  .btn-getstarted {
    display: none;
  }
  
  .fib-nav-toggle {
    display: inline-flex;
  }
  
  .fib-brand__tagline {
    display: none;
  }
}

/*--------------------------------------------------------------
# Main Content Area
--------------------------------------------------------------*/
main.main {
  display: block;
  position: relative;
  z-index: 1;
}

html {
  overflow-x: hidden; /* Prevent horizontal scroll */
}

html.fib-drawer-open {
  overflow: hidden; /* Prevent scroll when drawer is open */
}



section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  position: relative;
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn,
.btn-primary,
.btn-outline {
  border-radius: var(--fib-radius-btn);
  padding: .78rem 1.15rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  color: #fff;
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(18,18,18,.22);
  color: var(--default-color);
}

.btn-outline:hover {
  border-color: rgba(18,18,18,.35);
  background: rgba(18,18,18,.04);
}

.btn-lg {
  padding: .88rem 1.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: .45rem .75rem;
  font-size: 0.875rem;
}

.btn-soft {
  background: rgba(184,107,119,.12);
  border: 1px solid rgba(184,107,119,.22);
  color: #6a2b35;
}

.btn-soft:hover {
  background: rgba(184,107,119,.16);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 100px 0;
}

.hero-feast {
  background: radial-gradient(900px 520px at 14% 12%, rgba(247,241,232,.72), transparent 62%),
              radial-gradient(900px 520px at 88% 18%, rgba(247,230,234,.62), transparent 60%);
  border-bottom: 1px solid var(--fib-line);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: .28rem .65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
  background: rgba(31,35,40,.06);
  color: rgba(31,35,40,.78);
  border: 1px solid rgba(31,35,40,.10);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}

/* Hero Images */
.hero-images-feast {
  max-width: 520px;
  margin: 0 auto;
}

.hero-main-card {
  position: relative;
  border-radius: var(--fib-radius-card);
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(31,35,40,.12);
}

.hero-main-card img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-main-overlay {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(17, 24, 39, 0.75);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  max-width: 90%;
}

.hero-floating-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.hero-floating-card {
  border-radius: var(--fib-radius-card);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(31,35,40,.10);
}

.hero-floating-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

/*--------------------------------------------------------------
# Seasonal Banner
--------------------------------------------------------------*/
.fib-seasonal-banner {
  padding: 2.25rem 0;
}

.fib-seasonal-banner--top {
  background: radial-gradient(900px 420px at 18% 18%, rgba(247,230,234,.95), transparent 60%),
              radial-gradient(900px 520px at 92% 30%, rgba(247,241,232,.95), transparent 62%),
              linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.92));
  border-bottom: 1px solid var(--fib-line);
}

.seasonal-card {
  border-radius: var(--fib-radius-card);
  border: 1px solid rgba(31,35,40,.08);
  padding: 2rem;
  background: #fff;
}

.seasonal-kicker {
  display: inline-flex;
  align-items: center;
  padding: .28rem .65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
  color: #6a2b35;
  background: rgba(184,107,119,.12);
  border: 1px solid rgba(184,107,119,.18);
  margin-bottom: 1rem;
}

.seasonal-pill {
  display: inline-flex;
  align-items: center;
  padding: .28rem .65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .8rem;
  color: var(--fib-ink);
  background: rgba(31,35,40,.05);
  border: 1px solid rgba(31,35,40,.10);
}

.seasonal-title {
  font-size: 2rem;
  color: var(--fib-ink);
  margin-bottom: 1rem;
}

.seasonal-subtitle {
  color: var(--fib-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.seasonal-media {
  position: relative;
  border-radius: var(--fib-radius-card);
  border: 1px solid rgba(31,35,40,.10);
  box-shadow: 0 12px 36px rgba(31,35,40,.10);
  overflow: hidden;
}

.seasonal-media img {
  display: block;
  width: 100%;
  height: auto;
}

.seasonal-overlay {
  position: absolute;
  left: 14px;
  bottom: 14px;
}

.seasonal-overlay .badge {
  border-radius: 999px;
  padding: .45rem .7rem;
  border: 1px solid rgba(31,35,40,.10);
  background: rgba(255,255,255,.9);
}

/*--------------------------------------------------------------
# Seasonal Hero & Experiences
--------------------------------------------------------------*/
.seasonal-hero {
  padding: 3.25rem 0 2.25rem;
  background: radial-gradient(900px 520px at 16% 20%, rgba(247,230,234,.85), transparent 62%),
              radial-gradient(900px 520px at 85% 10%, rgba(247,241,232,.80), transparent 60%);
  border-bottom: 1px solid var(--fib-line);
}

.seasonal-hero-title {
  font-size: 2.35rem;
  line-height: 1.15;
  color: var(--fib-ink);
  margin-bottom: 1rem;
}

.seasonal-hero-subtitle {
  color: var(--fib-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.seasonal-note {
  color: rgba(31,35,40,.65);
  font-size: .95rem;
}

.seasonal-note a {
  color: #6a2b35;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seasonal-hero-media {
  border-radius: var(--fib-radius-card);
  border: 1px solid rgba(31,35,40,.10);
  box-shadow: 0 14px 44px rgba(31,35,40,.12);
  overflow: hidden;
}

.seasonal-hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Seasonal Experience Cards */
.seasonal-experiences .seasonal-card {
  transition: transform .16s ease, box-shadow .16s ease;
  height: 100%;
}

.seasonal-experiences .seasonal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(31,35,40,.12);
}

.seasonal-card-kicker {
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(106,43,53,.78);
  margin-bottom: .25rem;
}

.seasonal-price {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.seasonal-bullets {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.seasonal-bullets li {
  margin-bottom: .4rem;
  padding-left: 1.5rem;
  position: relative;
}

.seasonal-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.seasonal-card--featured {
  border: 1px solid rgba(184,107,119,.26);
  box-shadow: 0 18px 48px rgba(184,107,119,.12);
}

.seasonal-fineprint .bg-white {
  border: 1px solid rgba(31,35,40,.08);
  border-radius: var(--fib-radius-card);
  padding: 2rem;
}

.seasonal-order-card {
  border: 1px solid rgba(31,35,40,.08);
  border-radius: var(--fib-radius-card);
  padding: 2rem;
  background: #fff;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background-color: var(--surface-color);
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  width: 100%;
  height: auto;
}

.about-content {
  padding-left: 40px;
}

@media (max-width: 992px) {
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
}

.about-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0,0,0,.15);
}

.menu-item-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1);
}

.menu-item-content {
  padding: 25px;
}

.menu-item-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.menu-item-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.menu-item-content .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonial-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-meta h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.testimonial-meta h4 {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--heading-color), transparent 40%);
}

.testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer h4 {
  color: #f9fafb;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer p,
.footer a {
  color: #d1d5db;
  font-size: 14px;
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent-color);
}

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

.footer .footer-links ul li {
  margin-bottom: 12px;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: rgba(255,255,255,.1);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: #fff;
  transform: translateY(-3px);
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer .copyright p {
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog-card {
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.blog-card-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-hero-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  margin-bottom: 2rem;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  font-family: var(--heading-font);
  font-size: 1rem;
  line-height: 1.7;
  color: #111827;
}

@media (min-width: 768px) {
  .blog-content {
    font-size: 1.05rem;
  }
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
  font-family: var(--nav-font);
  font-weight: 600;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: #111827;
}

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

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

.blog-content h4 {
  font-size: 1.1rem;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.blog-content blockquote {
  border-left: 4px solid #b45309;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #374151;
  background: #f9fafb;
  border-radius: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  margin: 1.25rem 0;
}

.blog-content a {
  color: #b45309;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.blog-content a:hover {
  color: #92400e;
}

/*--------------------------------------------------------------
# Blog Filters - The original looked like the Bootstrap Templates
--------------------------------------------------------------*/

/* Blog Category Pills */
.blog-filters .nav-pills {
  gap: 10px;
}

.blog-filters .nav-link {
  background: transparent;
  color: rgba(31, 35, 40, 0.7);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 35, 40, 0.12);
  transition: all 0.25s ease;
}

.blog-filters .nav-link:hover {
  background: rgba(184, 107, 119, 0.12);
  color: #6a2b35;
  border-color: rgba(184, 107, 119, 0.35);
}

.blog-filters .nav-link.active {
  background: linear-gradient(135deg, #7a1f28, #b86b77);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(122, 31, 40, 0.25);
}


/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .main-chef-section {
  margin-bottom: 4rem;
  padding: 3rem 0;
  position: relative;
}

.chefs .chef-content {
  padding-right: 2rem;
}

@media (max-width: 991px) {
  .chefs .chef-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
}

.chefs .chef-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .chefs .chef-content h2 {
    font-size: 2.2rem;
  }
}

.chefs .chef-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.chefs .chef-image-container .image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.chefs .chef-image-container .image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s;
}

.chefs .chef-image-container .image-frame:hover img {
  transform: scale(1.05);
}

.chefs .team-grid .team-member {
  background-color: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.chefs .team-grid .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.chefs .team-grid .team-member .member-photo {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.chefs .team-grid .team-member .member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.chefs .team-grid .team-member:hover .member-photo img {
  transform: scale(1.1);
}

.chefs .team-grid .team-member .member-info {
  padding: 2rem 1.5rem;
  text-align: center;
}

.chefs .team-grid .team-member .member-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.chefs .team-grid .team-member .member-info .position {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table {
  position: relative;
  overflow: hidden;
}

.book-a-table .content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.book-a-table .content h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.book-a-table .reservation-form-container {
  background-color: var(--surface-color);
  padding: 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: var(--fib-radius-card);
  height: 100%;
}

.book-a-table .reservation-form-container form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--heading-color);
  display: block;
}

.book-a-table .reservation-form-container form .form-control,
.book-a-table .reservation-form-container form .form-select {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 0.95rem;
  padding: 0.65rem 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 4px;
  margin-bottom: 1rem;
}

.book-a-table .reservation-form-container form .form-control:focus,
.book-a-table .reservation-form-container form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 85%);
  outline: none;
}

.book-a-table .btn-book-table {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 14px 38px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--fib-radius-btn);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.book-a-table .btn-book-table:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.book-a-table .restaurant-info {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.book-a-table .restaurant-info .info-content {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: var(--fib-radius-card);
}

.book-a-table .restaurant-info .restaurant-contact .info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.book-a-table .restaurant-info .restaurant-contact .info-item .icon-box {
  width: 55px;
  height: 55px;
  min-width: 55px;
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
}

.book-a-table .restaurant-info .restaurant-contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .book-a-table .reservation-form-container,
  .book-a-table .restaurant-info .info-content {
    padding: 2rem;
  }
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location .location-content .content-header {
  margin-bottom: 2.5rem;
  text-align: left;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  padding-bottom: 1.5rem;
}

.location .location-content .content-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.location .location-content .map-wrapper {
  position: relative;
  height: 600px;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.location .location-content .map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.location .contact-sidebar .contact-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.location .contact-sidebar .contact-card .card-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.location .contact-sidebar .contact-card .card-icon i {
  font-size: 1.75rem;
  color: var(--accent-color);
}

.location .contact-sidebar .contact-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .location .contact-sidebar {
    margin-top: 2rem;
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .event-hero-content h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.events .event-hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.events .event-packages .package-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
}

.events .event-packages .package-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.events .event-packages .package-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.events .event-packages .package-card .package-header {
  text-align: center;
  margin-bottom: 2rem;
}

.events .event-packages .package-card .package-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.events .event-packages .package-card .package-price .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
}

.events .event-gallery-grid .gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.events .event-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.events .event-gallery-grid .gallery-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .events .event-hero-content h2 {
    font-size: 2.5rem;
  }
  
  .events .event-packages .package-card.featured {
    transform: none;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}

.gallery .gallery-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 70%);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.gallery .gallery-filters li:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
}

.gallery .gallery-filters li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.gallery .gallery-item .gallery-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery .gallery-item .gallery-wrap:hover {
  transform: translateY(-5px);
}

.gallery .gallery-item .gallery-wrap img {
  transition: all 0.4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery .gallery-item .gallery-wrap:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
  overflow: hidden;
}

.contact .contact-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.contact .contact-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.contact .contact-card h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.contact .contact-card .contact-details .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact .contact-card .contact-details .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 5px;
  flex-shrink: 0;
}

.contact .contact-card .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-card .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-card .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 35px;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .php-email-form .form-group {
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .php-email-form .form-group label {
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control {
  height: auto;
  border-radius: 8px;
  padding: 12px 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
}

.contact .contact-form-wrapper .php-email-form .form-group .form-control:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: none;
}

.contact .contact-form-wrapper .php-email-form .form-group textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.contact .contact-form-wrapper .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact .contact-form-wrapper .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .contact .contact-card,
  .contact .contact-form-wrapper {
    padding: 25px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
  text-align: center;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 9000;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}


/*--------------------------------------------------------------
# Responsive Helpers
--------------------------------------------------------------*/
@media (max-width: 768px) {
  section,
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    padding-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .contact {
    padding: 60px 0;
  }
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {
  .fib-header,
  .fib-drawer,
  .scroll-top,
  .btn,
  .error-404 {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }
  
  h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }
  
  p,
  ul {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Improved Hero Section - Modern & Beautiful
--------------------------------------------------------------*/

/* Main Hero Section */
.hero-main {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, 
    rgba(247, 241, 232, 0.4) 0%, 
    rgba(255, 255, 255, 0.9) 40%,
    rgba(247, 230, 234, 0.3) 100%);
  position: relative;
  overflow: hidden;
}

.hero-main::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(235, 95, 45, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-main .container {
  position: relative;
  z-index: 1;
}

/* Hero Content (Left Side) */
.hero-content {
  padding-right: 2rem;
}

.hero-main-title {
  font-family: var(--heading-font);
  /*font-size: clamp(2.5rem, 5vw, 4rem);*/
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #7a1f28 0%, #b86b77 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-main-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(53, 42, 38, 0.85);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

/* Hero Actions (Buttons) */
.hero-main-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #7a1f28 0%, #922633 100%);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(122, 31, 40, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(122, 31, 40, 0.3);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: var(--heading-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(122, 31, 40, 0.25);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-hero-outline:hover {
  background: rgba(122, 31, 40, 0.05);
  border-color: rgba(122, 31, 40, 0.4);
  transform: translateY(-2px);
  color: var(--heading-color);
}

.btn-hero-soft {
  background: rgba(184, 107, 119, 0.12);
  color: #6a2b35;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(184, 107, 119, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-hero-soft:hover {
  background: rgba(184, 107, 119, 0.2);
  border-color: rgba(184, 107, 119, 0.35);
  transform: translateY(-2px);
  color: #6a2b35;
}

/* Hero Trust Section */
.hero-trust-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(31, 35, 40, 0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-avatar-wrapper {
  position: relative;
}

.hero-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-trust-label {
  font-size: 0.85rem;
  color: rgba(31, 35, 40, 0.6);
  font-weight: 500;
}

.hero-trust-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.hero-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-info-label {
  font-size: 0.85rem;
  color: rgba(31, 35, 40, 0.6);
  font-weight: 500;
}

.hero-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.4;
}

/* Hero Visuals (Right Side) */
.hero-visuals {
  position: relative;
}

.hero-main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(31, 35, 40, 0.15);
  margin-bottom: 1rem;
}

.hero-main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.hero-main-image:hover img {
  transform: scale(1.05);
}

.hero-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.badge-title {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.badge-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(31, 35, 40, 0.75);
  line-height: 1.4;
}

.hero-grid-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hero-grid-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(31, 35, 40, 0.12);
  aspect-ratio: 4 / 3;
}

.hero-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-grid-item:hover img {
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-main-subtitle {
    font-size: 1.05rem;
  }

  .hero-trust-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-main {
    padding: 60px 0 80px;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .hero-main-actions {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-outline,
  .btn-hero-soft {
    width: 100%;
    justify-content: center;
  }

  .hero-image-badge {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
  }

  .badge-title {
    font-size: 0.85rem;
  }

  .badge-subtitle {
    font-size: 0.8rem;
  }

  .hero-info-grid {
    width: 100%;
  }
}
