/* ============================================================
   navbar.css  –  Sagar Indian Restaurant
   ============================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: #f9f0e6;
  color: #1a1a1a;
}

/* ---------- Top Info Bar ---------- */
.nav-topbar {
  width: 100%;
  background-color: #B00B09;
  color: #FFF8F0;
  text-align: center;
  padding: 6px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.4s ease;
}

navbar.scrolled .nav-topbar {
  opacity: 0;
  pointer-events: none;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.nav-topbar-divider {
  opacity: 0.5;
}

/* ---------- Navbar shell ---------- */
navbar {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  backdrop-filter: blur(0px);
  box-shadow: none;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

navbar.scrolled {
  background-color: #FFF8F0;
  backdrop-filter: blur(0px);
  box-shadow: 0 2px 12px rgba(176, 11, 9, 0.10);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Logo ---------- */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  user-select: none;
}

.logo-main {
  font-size: 1.55rem;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
  color: #FFF8F0;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}

.logo-sub {
  font-size: 0.72rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: #FFF8F0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: color 0.4s ease;
}

navbar.scrolled .logo-main,
navbar.scrolled .logo-sub {
  color: #B00B09;
}

/* ---------- Desktop nav links ---------- */
.nav-links {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-links a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFF8F0;
  text-decoration: none;
  border-radius: 20px;
  position: relative;
  transition: color 0.28s ease, background-color 0.28s ease;
}

navbar.scrolled .nav-links a {
  color: #B00B09;
}

navbar.scrolled .nav-links a:hover {
  color: #FFF8F0;
  background-color: #B00B09;
}

.nav-links a:hover {
  color: #FFF8F0;
  background-color: #B00B09;
  border-radius: 20px;
}

/* Order Online button */
.nav-order-index {
  color: #FFF8F0 !important;
}

navbar.scrolled .nav-order-index {
  background-color: #B00B09 !important;
  color: #FFF8F0 !important;
}

navbar.scrolled .nav-order-index:hover {
  background-color: #8a0807 !important;
}

/* ---------- Hamburger button ---------- */
.hamburger {
  display: none;           /* hidden on desktop */
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1100;
}

.hamburger b {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFF8F0;
  border-radius: 2px;
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    opacity   0.3s ease,
    top       0.3s ease,
    background-color 0.4s ease;
  position: absolute;
  left: 0;
}

navbar.scrolled .hamburger b {
  background-color: #B00B09;
}

.hamburger b:nth-child(1) { top: 0; }
.hamburger b:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger b:nth-child(3) { top: 100%; transform: translateY(-100%); }

.hamburger.active b {
  background-color: #B00B09;
}
.hamburger.active b:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}
.hamburger.active b:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.hamburger.active b:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}

/* ---------- Mobile drawer (slides in from right) ---------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background-color: #FFF8F0;
  box-shadow: -4px 0 24px rgba(176, 11, 9, 0.12);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1050;
  padding-top: 90px;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
}

.drawer-links li {
  border-bottom: 1px solid rgba(176, 11, 9, 0.2);
}

.drawer-links li:last-child {
  border-bottom: none;
}

.drawer-links a {
  display: block;
  padding: 14px 4px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #B00B09;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.drawer-links a:hover {
  color: #6b6b6b;
  background-color: rgba(107, 107, 107, 0.09);
}

/* ---------- Overlay ---------- */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1020;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.overlay.visible {
  display: block;
  opacity: 1;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('image/indexheroimg.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFF8F0;
  padding: 0 24px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-welcome {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #FFF8F0;
  opacity: 0.85;
  margin-bottom: 10px;
}

.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  color: #FFF8F0;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFF8F0;
  opacity: 0.8;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 44px;
  border: 2px solid #FFF8F0;
  color: #FFF8F0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.28s ease, color 0.28s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background-color: #FFF8F0;
  color: #3a0000;
  transform: translateY(-2px);
}

/* ---------- Hero Media Queries ---------- */

/* Mobile */
@media (max-width: 600px) {
  .hero {
    height: 100vh;
    background-position: center center;
  }

  .hero-welcome {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
  }

  .hero-btn {
    padding: 12px 32px;
    font-size: 0.8rem;
  }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 900px) {
  .hero {
    height: 100vh;
  }

  .hero-welcome {
    font-size: 0.85rem;
  }

  .hero-btn {
    padding: 13px 36px;
  }
}

/* ============================================================
   About Us Section
   ============================================================ */

.about {
  background-color: #FFF8F0;
  padding: 130px 24px;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

/* Image */
.about-image {
  flex: 1 1 45%;
  min-width: 0;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  box-shadow: 0 8px 32px rgba(176, 11, 9, 0.10);
}

/* Text */
.about-text {
  flex: 1 1 55%;
  min-width: 0;
}

.about-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #B00B09;
  opacity: 0.75;
  margin-bottom: 12px;
}

.about-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.about-divider {
  width: 48px;
  height: 3px;
  background-color: #B00B09;
  border-radius: 2px;
  margin-bottom: 24px;
}

.about-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

.about-body:last-child {
  margin-bottom: 0;
}

/* ---------- About Media Queries ---------- */

/* Mobile — image first, text below */
@media (max-width: 600px) {
  .about {
    padding: 60px 20px;
  }

  .about-container {
    flex-direction: column;
    gap: 32px;
  }

  .about-image {
    width: 100%;
    flex: none;
  }

  .about-image img {
    height: 260px;
  }

  .about-text {
    flex: none;
    width: 100%;
  }
}

/* Tablet — image first, text below, a bit more breathing room */
@media (min-width: 601px) and (max-width: 900px) {
  .about {
    padding: 80px 32px;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-image img {
    height: 380px;
  }
}

/* ============================================================
   Media Queries
   ============================================================ */

/* --- Mobile: up to 600px --- */
@media (max-width: 600px) {
  .nav-topbar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    height: 60px;
  }

  .logo-main {
    font-size: 1.3rem;
  }

  .logo-sub {
    font-size: 0.62rem;
  }

  .mobile-drawer {
    width: 100%;          /* full-width on small phones */
    max-width: 320px;
  }
}

/* --- Tablet: 601px – 900px --- */
@media (min-width: 601px) and (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    width: 38px;
    height: 27px;
  }

  .nav-container {
    height: 66px;
    padding: 0 32px;
  }

  .logo-main {
    font-size: 1.45rem;
  }

  .mobile-drawer {
    width: 300px;
  }
}

/* --- Desktop: 901px and above --- */
@media (min-width: 901px) {
  .hamburger {
    display: none;
  }

  .mobile-drawer,
  .overlay {
    display: none !important;
  }
}

/* ============================================================
   Divider Section
   ============================================================ */

.divider-section {
  background-color: #3a0000;
  padding: 64px 24px;
}

.divider-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 248, 240, 0.25);
  display: block;
}

.divider-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FFF8F0;
  opacity: 0.85;
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 600px) {
  .divider-section {
    padding: 36px 20px;
  }

  .divider-text {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
  }
}

/* ============================================================
   Menu Banner
   ============================================================ */

.menu-banner {
  position: relative;
  width: 100%;
  background-color: #FFF8F0;
  padding: 100px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-banner-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 560px;
  background-image: url('image/indexmenuimg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(58, 0, 0, 0.25);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-banner-inner:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 64px rgba(58, 0, 0, 0.35);
}

.menu-banner-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  border: 2px solid rgba(255, 248, 240, 0);
  border-radius: 6px;
  transition: border-color 0.4s ease;
  z-index: 3;
  pointer-events: none;
}

.menu-banner-inner:hover::after {
  border-color: rgba(255, 248, 240, 0.2);
}

.menu-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  transition: background 0.4s ease;
  border-radius: 6px;
  z-index: 1;
}

.menu-banner-inner:hover .menu-banner-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.menu-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFF8F0;
  padding: 0 24px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-banner-inner:hover .menu-banner-content {
  transform: translateY(-4px);
}


.menu-banner-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #FFF8F0;
  opacity: 0.75;
  margin-bottom: 12px;
}

.menu-banner-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  color: #FFF8F0;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.menu-banner-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.08em;
  color: #FFF8F0;
  opacity: 0.8;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.menu-banner-btn {
  display: inline-block;
  padding: 14px 44px;
  border: 2px solid #FFF8F0;
  color: #FFF8F0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color 0.28s ease, color 0.28s ease, transform 0.2s ease;
}

.menu-banner-btn:hover {
  background-color: #FFF8F0;
  color: #3a0000;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .menu-banner {
    padding: 40px 20px;
  }

  .menu-banner-inner {
    height: 380px;
  }

  .menu-banner-sub {
    font-size: 0.75rem;
  }

  .menu-banner-btn {
    padding: 12px 32px;
    font-size: 0.78rem;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .menu-banner {
    padding: 60px 36px;
  }

  .menu-banner-inner {
    height: 460px;
  }
}

/* ============================================================
   Google Reviews Section
   ============================================================ */

.reviews {
  background-color: #FFF8F0;
  padding: 110px 24px;
  overflow: hidden;
  border-top: 1px solid rgba(176, 11, 9, 0.15);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #B00B09;
  opacity: 0.75;
  margin-bottom: 10px;
}

.reviews-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.reviews-stars-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.reviews-star {
  color: #F4B400;
  font-size: 1.2rem;
  line-height: 1;
}

.reviews-rating-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1a1a;
  opacity: 0.5;
  letter-spacing: 0.06em;
}

/* Slideshow — desktop only */
.reviews-slideshow {
  display: none;
}

/* Marquee — mobile only */
.reviews-marquee-wrapper {
  display: block;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-marquee {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
  padding: 24px 0;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Cards */
.review-card {
  flex: 0 0 400px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 2px 40px rgba(176, 11, 9, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.95);
}

/* Arrows */
.reviews-arrow {
  background: rgba(176, 11, 9, 0.08);
  border: 1px solid rgba(176, 11, 9, 0.2);
  color: #B00B09;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-arrow:hover {
  background: #B00B09;
  border-color: #B00B09;
  color: #FFF8F0;
  transform: scale(1.08);
}

/* Mobile & tablet: marquee only */
@media (max-width: 900px) {
  .reviews-slideshow {
    display: none !important;
  }

  .reviews-marquee-wrapper {
    display: block;
  }

  .review-card {
    flex: 0 0 300px;
  }

  .reviews {
    padding: 60px 0;
  }
}

/* Desktop: carousel only */
@media (min-width: 901px) {
  .reviews-slideshow {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .reviews-track-wrapper {
    flex: 1;
    overflow: hidden;
  }

  .reviews-track {
    display: flex;
    gap: 24px;
  }

  .reviews-marquee-wrapper {
    display: none !important;
  }

  .review-card {
    flex: 0 0 calc((100% - 48px) / 3);
  }

  .reviews {
    padding: 110px 24px;
  }
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #FFF8F0;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a1a;
}

.review-info {
  display: none;
}

.review-date {
  display: none;
}

.review-google-logo {
  width: 48px;
  opacity: 0.7;
  flex-shrink: 0;
}

.review-stars {
  color: #F4B400;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #1a1a1a;
  opacity: 0.85;
  flex: 1;
}

.review-badges {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
  opacity: 0.45;
  background: rgba(0,0,0,0.05);
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
}



/* ---- Tablet: 2 cards visible ---- */
@media (min-width: 601px) and (max-width: 900px) {
  .reviews {
    padding: 70px 0;
  }
}

/* ============================================================
   Contact Us Section
   ============================================================ */

.contact {
  background-color: #FFF8F0;
  padding: 110px 24px;
  border-top: 1px solid rgba(176, 11, 9, 0.15);
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #B00B09;
  opacity: 0.75;
  margin-bottom: 10px;
}

.contact-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.contact-divider {
  width: 48px;
  height: 3px;
  background-color: #B00B09;
  border-radius: 2px;
  margin: 0 auto;
}

/* Layout */
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: stretch;
}

/* Map */
.contact-map {
  flex: 1 1 55%;
  min-height: 420px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(176, 11, 9, 0.10);
}

/* Info panel */
.contact-info {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-block {
  padding: 32px 0;
}

.contact-block-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B00B09;
  opacity: 0.75;
  margin-bottom: 20px;
}

.contact-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.contact-address p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.9;
  color: #555;
}

.contact-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.contact-phone:hover {
  color: #B00B09;
}

.contact-rule {
  height: 1px;
  background: rgba(176, 11, 9, 0.12);
  width: 100%;
}

/* Hours */
.contact-hours {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(176, 11, 9, 0.08);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #555;
}

.hours-time {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1a1a1a;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 600px) {
  .contact {
    padding: 70px 20px;
  }

  .contact-container {
    flex-direction: column;
    gap: 36px;
  }

  .contact-map {
    min-height: 300px;
    height: 300px;
    flex: none;
    width: 100%;
  }

  .contact-map iframe {
    width: 100%;
    height: 300px;
  }

  .contact-info {
    flex: none;
    width: 100%;
  }

  .contact-details {
    flex-direction: column;
    gap: 12px;
  }

  .contact-phone {
    font-size: 1rem;
  }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 900px) {
  .contact {
    padding: 80px 32px;
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-map {
    min-height: 340px;
    flex: none;
    width: 100%;
  }
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  background-color: #3a0000;
  padding: 60px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

/* Logo */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.footer-logo-main {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFF8F0;
  letter-spacing: 0.02em;
}

.footer-logo-sub {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.68rem;
  color: #FFF8F0;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 4px;
}

/* Divider */
.footer-divider {
  width: 100%;
  max-width: 700px;
  height: 1px;
  background: rgba(255, 248, 240, 0.15);
}

/* Nav links */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFF8F0;
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.footer-nav a:hover {
  opacity: 1;
  color: #FFF8F0;
}

/* Phone */
.footer-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #FFF8F0;
  text-decoration: none;
  letter-spacing: 0.08em;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.footer-phone:hover {
  opacity: 1;
}

/* Copyright */
.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  color: #FFF8F0;
  opacity: 0.35;
  letter-spacing: 0.06em;
}

/* Mobile */
@media (max-width: 600px) {
  .footer {
    padding: 48px 20px 32px;
    gap: 24px;
  }

  .footer-logo-main {
    font-size: 1.6rem;
  }

  .footer-nav {
    gap: 8px 16px;
  }
}