/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", "Garamond", serif;
  line-height: 1.6;
  background-color: #F7F6F2;
  color: #2C2C2C;
}

h1, h2, h3, nav {
  font-family: 'Cormorant Garamond', Garamond, serif;
  color: #2C2C2C;
  letter-spacing: 0.5px;
}

button, .cta {
  font-family: 'Lato', sans-serif;
  background-color: #D4AF37;
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 8px;
}

/* Header container */
/* Define global scaling variable */
:root {
  --logo-height: 200px; /* Change this — everything will scale automatically */
  --header-height: 120px;
}

/* ========== HEADER BASE ========== */
.site-header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background-color: #1B366B;
  color: #D4AF37;
  padding: 0.75rem 3rem;
  z-index: 10;
}

/* Decorative corner art */
.header-art {
  position: absolute;
  top: 0;
  height: 100%;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}
.header-art.left { left: 0; }
.header-art.right { right: 0; }

/* ========== NAV LEFT ========== */
.nav-left {
  display: flex;
  align-items: center;
  z-index: 2;
}

/* Hamburger toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
}

/* Nav menu */
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  color: #D4AF37;
}
.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu a:hover { color: #C49C33; }

/* ========== CENTER LOGO ========== */
.header-logo {
  display: flex;
  justify-content: center;
  z-index: 3;
}
.logo {
  max-height: 100px;
  width: auto;
  height: auto;
}

/* ========== RIGHT SECTION ========== */
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}
.order-button {
  background-color: #D4AF37;
  color: #fff;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background 0.3s ease;
}
.order-button:hover { background-color: #C49C33; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  /* hide menu, show toggle */
  .menu-toggle {
    display: block;
    margin-right: 0.5rem;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1B366B;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.2);
  }

  .nav-menu.open { display: flex; }

  .nav-menu ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .nav-right {
    justify-content: center;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .logo { max-height: 65px; }
  .order-button { width: 100%; text-align: center; }
}

/* *********************************************************************************** */

/* Background image */
.hero-banner {
  /* position: relative; */
  width: 100%;
  height: 400px; /* Visible height — adjust as needed */
  overflow: hidden; /* hides anything beyond container */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-main-img {
  display: block;
  margin: 2rem auto;
  width: 80%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
}

.hero-banner-image {
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    /* fills container while maintaining aspect ratio */
  object-position: center;
  z-index: 0;
}

/* *********************************************************************************** */

/* Base layout */
.cta-section,
.cta-section-alt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 6%;
  gap: 2rem;
  background-color: #E3E9F2;
  flex-wrap: wrap;
  flex-direction: row-reverse; /* works perfectly now */
}

.cta-image {
  flex: 1 1 400px;
  text-align: center;
}

.cta-section { background-color: #F7F6F2; }

/* Left (text) */
.cta-left {
  flex: 1 1 400px;
  text-align: center;
  z-index: 1;
}

.cta-left h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(1.4rem, 2vw + 1rem, 2rem); /* ✅ scales smoothly */
  margin-bottom: 1rem;
  padding: 0 2rem;
  text-align: center;
}

.cta-left h2::before,
.cta-left h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(40px, 10vw, 100px); /* ✅ responsive flourishes */
  height: clamp(24px, 6vw, 60px);
  background: url("images/design-border-text-left.png") no-repeat center / contain;
  opacity: 0.9;
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-left h2::before { left: -60px; }
.cta-left h2::after {
  right: -60px;
  transform: translateY(-50%) scaleX(-1);
}

.cta-left p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #2E2E2E;
}

.cta-button {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #D4AF37;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.4rem;
  transition: background 0.3s ease;
}
.cta-button:hover { background-color: #C19E34; }

/* Right (image) */
.cta-right {
  flex: 1 1 400px;
  text-align: center;
}
.cta-right-img {
  width: 100%;
  height: auto;                /* ✅ let it scale naturally */
  max-width: 600px;
  max-height: 400px;
  border-radius: 0.3rem;
  object-fit: cover;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .cta-section,
  .cta-section-alt {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .cta-left, .cta-right { width: 100%; }

  .cta-right-img {
    max-width: 100%;
    margin: 1.5rem 0;
  }

  .cta-left h2::before,
  .cta-left h2::after {
    display: none; /* ✅ hide flourishes on small screens */
  }
}


/* *********************************************************************************** */

/* Outer wrapper controls horizontal spacing and centering */
.content-block {
  width: 100%;
  background-color: #F7F6F2;     /* optional background, remove if not needed */
  padding: 3rem 0;
  box-sizing: border-box;
}

/* Inner container keeps text centered with responsive side space */
.content-inner {
  max-width: 1000px;             /* keeps text readable */
  margin: 0 auto;
  padding: 0 8%;                 /* acts like your 12rem, but scales on small screens */
  text-align: center;
}

.content-inner h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  margin-bottom: 1rem;
  color: #1B366B;
}

.content-inner p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
}

/* Reuse your existing CTA button styling */
.cta-button {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #D4AF37;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.4rem;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #C19E34;
}

/* Slightly reduce side padding on smaller screens */
@media (max-width: 1024px) {
  .content-inner {
    padding: 0 6%;
  }
}

@media (max-width: 768px) {
  .content-inner {
    padding: 0 1.5rem;
  }
}

/* *********************************************************************************** */

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;  /* optional: prevent it from stretching too wide */
  aspect-ratio: 18 / 8; /* keeps a nice proportional map shape */
  overflow: hidden;
  border-radius: 8px;     /* optional */
  margin: 0 auto;         /* centers on small screens */
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.hours-location {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #f9f9f9;
  color: #222;
  padding: 3rem 2rem;
  gap: 2rem;
  flex-wrap: wrap; /* ensures proper wrapping on small screens */
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

/* Left column */
.hours-left {
  flex: 1;
  min-width: 200px;
}

.hours-left h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}

/* Middle column (address) */
.hours-center {
  flex: 1;
  min-width: 250px;
  text-align: center;
  line-height: 1.8;
}

/* Right column (hours list) */
.hours-right {
  flex: 1;
  min-width: 220px;
}

.hours-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-right li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.hours-right li span {
  font-weight: bold;
  margin-right: 1rem;
}

/* Responsive layout */
@media (max-width: 768px) {
  .hours-location {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 2rem 1rem; /* slightly less padding to fit small screens */
  }

  .map-wrapper {
    max-width: 100%;
    padding-bottom: 75%; /* a bit taller on mobile */
  }

  .hours-right ul {
    width: 100%;
  }
}


/* *********************************************************************************** */
.order-page {
  padding: 3rem 2rem;
  background: #ffffff;
  text-align: center;
}

.order-page h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.order-subtitle {
  color: #555;
  margin-bottom: 2rem;
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.order-item {
  background: #f8f8f8;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.order-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 0.4rem;
}

.order-item h3 {
  margin: 0.5rem 0;
}

.order-item p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.75rem;
}

.order-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 0.3rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.order-btn:hover {
  background: #0056b3;
}

/* ****************************************************************************** */

/* About Section Wrapper */
.about-section {
  text-align: center;
  padding-top: 2rem;
}

.about-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* About Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.about-item {
  display: flex;
  flex-direction: column; /* default for mobile */
  align-items: center;
  text-align: center;
  background: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
}

/* Image Styles */
.about-img-test {
  width: 100%;
  max-width: 500px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

.about-item img {
  width: 100%;
  max-width: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

/* Text Styles */
.about-text h3 {
  margin-bottom: 0.5rem;
}

.about-text p {
  margin: 0;
}

/* Responsive: stack single column on small screens */
@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-item {
    text-align: center;
  }

  .about-item img {
    max-width: 150px;
  }
}

/* ************************************************************************* */
.our-story-block {
  display: flex;
  justify-content: center;
  text-align: center;
   width: 100%;
  background-color: #F7F6F2;
  padding: 1rem 4rem; /* adds nice breathing space */
}

.our-story-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between; /* spreads the images and text nicely */
  width: 100%;
  max-width: none; /* remove the 1200px limit */
  gap: 3rem;
}

.our-story-image {
  width: 300px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.our-story-inner {
  flex: 1;
  text-align: center;
}

.our-story-inner h2 {
  color: #1b366b;
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2vw + 1rem, 2rem); /* ✅ scales smoothly */
}

.our-story-inner p {
  color: #444;
  line-height: 1.6;
  font-size: clamp(1.0rem, 2vw + 1rem, 1.5rem); /* ✅ scales smoothly */
}

/* --- Mobile-friendly adjustments --- */
@media (max-width: 768px) {
  .our-story-wrapper {
    flex-direction: column;
  }

  .our-story-image {
    width: 80%;
    max-width: 300px;
  }
}