/* ============================================================
   AGAVE-INSPIRED DESIGN SYSTEM — Om Cuisine of India
   Brand color: #B8834A (warm amber/terracotta)
   ============================================================ */

/* ---- Section Header Pattern ---- */
.agave-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.agave-topper-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fdf0e3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.agave-topper-icon i {
  font-size: 1.4rem;
  color: #B8834A;
}

.agave-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B8834A;
  margin: 0 0 0.75rem;
  display: block;
}

.agave-italic-heading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: #1a1a1a;
  margin: 0 0 1.25rem;
  line-height: 1.25;
}

.agave-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.agave-divider span {
  display: block;
  width: 70px;
  height: 1.5px;
  background: #B8834A;
  opacity: 0.6;
}

.agave-divider i {
  font-size: 0.85rem;
  color: #B8834A;
}

/* Left-aligned variant for story sections */
.agave-section-header.left-align {
  text-align: left;
}

.agave-section-header.left-align .agave-topper-icon {
  margin: 0 0 1rem;
}

.agave-section-header.left-align .agave-divider {
  justify-content: flex-start;
}

/* ---- Hero Badge ---- */
.agave-hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  gap: 0.75rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50px;
  padding: 0.45rem 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  margin-top: 10px; /* Adjust as needed to position below hero title */
}

.agave-hero-badge .badge-icon {
  font-size: 0.6rem;
  opacity: 0.8;
  margin: 0 !important;
  white-space: nowrap;
}

/* ---- Home hero: reduce padding to fit viewport with new badge + stats bar content ---- */
#home-hero {
  padding-top: clamp(6rem, 10vw, 8rem) !important;
  padding-bottom: clamp(1rem, 3vw, 2rem) !important;
}

/* ---- Hero Italic Title override ---- */
#home-hero .cs-title {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5) !important;
}

#home-hero .cs-subtitle {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem) !important;
  margin-bottom: 1.5rem !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65) !important;
}

/* ---- Hero Stats Bar ---- */
.agave-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 1.5rem;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

.agave-hero-stat {
  padding: 0.8rem 1rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.38);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.agave-hero-stat:last-child {
  border-right: none;
}

.agave-hero-stat .stat-name {
  font-family: 'Playfair Display', serif !important;
  font-style: italic !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #f0c883 !important;
  display: block !important;
  margin: 0 0 0.2rem 0 !important;
  text-align: center !important;
  white-space: normal !important;
  animation: none !important;
  overflow: visible !important;
  width: auto !important;
  border-right: none !important;
}

.agave-hero-stat .stat-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ---- Achievement Banner ---- */
.agave-achievement-banner {
  background: #B8834A;
  padding: 4.5rem 1rem;
}

.agave-achievement-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.agave-achievement-banner h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.agave-achievement-banner .subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  display: block;
}

.agave-achievement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .agave-achievement-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.agave-achievement-item .achievement-value {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.4rem;
  color: #fff;
  display: block;
  line-height: 1;
}

.agave-achievement-item .achievement-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
  display: block;
}

/* ---- Full-Bleed CTA Banner ---- */
.agave-cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 6rem 1rem;
  text-align: center;
}

.agave-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.agave-cta-banner__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.agave-cta-banner .agave-label {
  color: #f0c883;
}

.agave-cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.agave-cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.agave-cta-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.agave-cta-btn {
  padding: 0.85rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.agave-cta-btn--filled {
  background: #B8834A;
  border-color: #B8834A;
  color: #fff;
}

.agave-cta-btn--filled:hover {
  background: #9d6e35;
  border-color: #9d6e35;
  color: #fff;
}

.agave-cta-btn--outline {
  background: transparent;
  color: #fff;
}

.agave-cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ---- Contact Info Cards ---- */
.agave-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 3rem;
}

@media (max-width: 768px) {
  .agave-contact-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.agave-contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.agave-contact-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fdf0e3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.agave-contact-card .card-icon i {
  font-size: 1.4rem;
  color: #B8834A;
}

.agave-contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: #1a1a1a;
  font-style: italic;
}

.agave-contact-card p {
  color: #616161;
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

.agave-contact-card a {
  color: #616161;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.88rem;
}

.agave-contact-card a:hover {
  color: #B8834A;
}

/* ---- Story Section (Two-col image + text) ---- */
.agave-story-section {
  padding: 5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.agave-story-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .agave-story-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.agave-story-section__image img {
  border-radius: 12px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.agave-story-section__content {
  text-align: left;
}

.agave-story-section__content p {
  color: #616161;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.agave-story-section__content .brand-highlight {
  color: #B8834A;
  font-weight: 700;
}

/* ---- Testimonials Grid ---- */
.agave-testimonials-section {
  padding: 5rem 1rem;
  background: #f9f5f1;
}

.agave-testimonials-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.agave-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .agave-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.agave-testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.agave-testimonial-card .rating {
  color: goldenrod;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.agave-testimonial-card p {
  color: #616161;
  line-height: 1.75;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.agave-testimonial-card .reviewer {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a1a;
  display: block;
}

.agave-testimonial-card .reviewer-sub {
  font-size: 0.78rem;
  color: #B8834A;
  letter-spacing: 0.05em;
}

/* ---- Page Hero Banner (inner pages) ---- */
.agave-page-hero {
  position: relative;
  padding: 8rem 1rem 5rem;
  background-size: cover;
  background-position: center;
  text-align: center;
}

@media (max-width: 768px) {
  .agave-page-hero {
    padding: 5rem 1rem 3rem;
  }
}

.agave-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.agave-page-hero__inner {

  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.agave-page-hero .agave-label {
  color: #f0c883;
}

.agave-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.agave-page-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.agave-page-hero .hero-cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: #B8834A;
  color: #fff;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}

.agave-page-hero .hero-cta:hover {
  background: #9d6e35;
}

/* ---- Info Cards (Menu page / 3-col) ---- */
.agave-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .agave-info-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.agave-info-card {
  background: #fff;
  border: 1px solid #f0e8de;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.agave-info-card i {
  font-size: 1.8rem;
  color: #B8834A;
  margin-bottom: 0.75rem;
  display: block;
}

.agave-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.agave-info-card p {
  color: #616161;
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

/* ---- Social Cards ---- */
.agave-social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

@media (max-width: 600px) {
  .agave-social-cards {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

.agave-social-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}

.agave-social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.agave-social-card i {
  font-size: 2rem;
  color: #B8834A;
  display: block;
  margin-bottom: 0.75rem;
}

.agave-social-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #1a1a1a;
  font-style: italic;
  margin: 0;
}

/* ---- Services Icon Cards (About page) ---- */
.agave-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .agave-services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.agave-service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.agave-service-card .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fdf0e3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.agave-service-card .service-icon i {
  font-size: 1.6rem;
  color: #B8834A;
}

.agave-service-card h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.agave-service-card p {
  color: #616161;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ---- Location Section Header ---- */
.agave-location-section {
  padding: 5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Map + Info side-by-side ---- */
.agave-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .agave-map-wrapper {
    grid-template-columns: 1fr;
  }
}

.agave-map-wrapper iframe {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  border: 0;
}

.agave-map-info {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.agave-map-info h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0e8de;
}

.agave-map-info .info-row {
  margin-bottom: 1.25rem;
}

.agave-map-info .info-row label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B8834A;
  display: block;
  margin-bottom: 0.25rem;
}

.agave-map-info .info-row p,
.agave-map-info .info-row a {
  color: #616161;
  font-size: 0.9rem;
  line-height: 1.6;
  text-decoration: none;
}

.agave-map-info .info-row a:hover {
  color: #B8834A;
}

.agave-map-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.agave-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.agave-map-btn--primary {
  background: #B8834A;
  color: #fff;
  border: 2px solid #B8834A;
}

.agave-map-btn--primary:hover {
  background: #9d6e35;
  border-color: #9d6e35;
  color: #fff;
}

.agave-map-btn--outline {
  background: transparent;
  color: #B8834A;
  border: 2px solid #B8834A;
}

.agave-map-btn--outline:hover {
  background: #B8834A;
  color: #fff;
}

/* ---- Gallery Grid (Our Food) ---- */
.agave-gallery-section {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Rewards / Reservation hero ---- */
.agave-page-section {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ---- Utility: brand text ---- */
.text-brand {
  color: #B8834A;
}

/* ---- Responsive: stats bar on mobile ---- */
@media (max-width: 600px) {
  .agave-hero-stats {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .agave-hero-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .agave-hero-stat:last-child {
    border-bottom: none;
  }
}
