/* ============================================
   La Popular Bakery — Webflow-Based Design System
   Extracted from la-popular-bakery.webflow.css
   ============================================ */

/* --- Font Faces (self-hosted Oswald) --- */
@font-face {
  font-family: Oswald;
  src: url('fonts/Oswald-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Oswald;
  src: url('fonts/Oswald-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Oswald;
  src: url('fonts/Oswald-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --- CSS Variables (Design Tokens) --- */
:root {
  --greenish-blue: #07281e;
  --selective-yellow: #ffb91d;
  --floral-white: #f6f1e8;
  --alabaster: #f4ede1;
  --light-sand: #eadfcb;
  --greenish-gray: #5b786f;
  --davy-s-grey: #515151;
  --white: #ffffff;
  --black: #000000;
  --transparent: #fff0;
  --warm-ivory: #faf2e8;
  --chinese-silver: #c9c7c7;
  --font-h1: 60px;
  --font-h2: 40px;
  --font-h3: 30px;
  --font-h4: 24px;
  --font-h5: 20px;
  --font-h6: 18px;
  --font-body: 16px;
  --radius: 10px;
  --radius-pill: 100px;
  --container: 1320px;
  --container-big: 1630px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Lato', 'Roboto', sans-serif;
  font-size: var(--font-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--davy-s-grey);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--davy-s-grey);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--selective-yellow);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: Oswald, Arial, sans-serif;
  font-weight: 500;
  color: var(--greenish-blue);
  text-transform: uppercase;
  margin: 0;
}

h1 { font-size: var(--font-h1); letter-spacing: -0.64px; line-height: 1.16667; }
h2 { font-size: var(--font-h2); letter-spacing: -0.48px; line-height: 1.25; }
h3 { font-size: var(--font-h3); line-height: 1.46667; }
h4 { font-size: var(--font-h4); line-height: 1.41667; }
h5 { font-size: var(--font-h5); line-height: 1.5; }
h6 { font-size: var(--font-h6); line-height: 1.55556; }

p {
  color: var(--davy-s-grey);
  font-size: var(--font-body);
  line-height: 1.75;
  margin-bottom: 10px;
}

strong {
  text-transform: uppercase;
  color: #0f1214;
  font-family: Oswald, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

/* --- Layout Utilities --- */
.rt-container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.rt-big-container {
  max-width: var(--container-big);
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

.rt-position-relative { position: relative; }
.rt-position-absolute { position: absolute; }
.rt-overflow-hidden { overflow: hidden; }
.rt-radius-ten { border-radius: var(--radius); }
.rt-gap-off { margin-top: 0; margin-bottom: 0; }
.rt-color-white { color: var(--white); }
.rt-text-align-center { text-align: center; }
.rt-auto-fit { object-fit: cover; }
.rt-align-xy-center { justify-content: center; align-items: center; }

.rt-auto-fit.rt-bottom-radius-ten {
  border-bottom-right-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.rt-auto-fit.rt-top-radius-ten {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

/* --- Navigation --- */
.rt-navbar {
  background-color: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.rt-navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.rt-nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.rt-brand {
  font-family: Oswald, Arial, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--greenish-blue);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 20px 0;
}

.rt-brand:hover {
  color: var(--selective-yellow);
}

.rt-nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.rt-menu-text {
  color: var(--davy-s-grey);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.625;
  padding: 30px 15px;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
}

.rt-menu-text:hover,
.rt-menu-text.active {
  color: var(--black);
}

.rt-nav-right-side {
  display: flex;
  gap: 15px;
  align-items: center;
}

.rt-devaider {
  width: 1px;
  height: 30px;
  background: var(--chinese-silver);
}

.rt-nav-shadow {
  height: 1px;
  background: rgba(0,0,0,0.05);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.lang-toggle button {
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--greenish-gray);
  transition: all var(--transition);
  font-family: Oswald, sans-serif;
}

.lang-toggle button.active {
  color: var(--white);
  background: var(--selective-yellow);
}

.lang-toggle span {
  color: var(--chinese-silver);
}

/* Mobile Hamburger */
.mobile-list-button {
  display: none;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.nav-open-mobile-button {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 28px;
}

.mobile-list-line-one,
.mobile-list-line-two,
.mobile-list-line-three {
  width: 100%;
  height: 2px;
  background: var(--greenish-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-list-button.open .mobile-list-line-one {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-list-button.open .mobile-list-line-two {
  opacity: 0;
}
.mobile-list-button.open .mobile-list-line-three {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Pill Buttons (Webflow style) --- */
.rt-button {
  border-radius: var(--radius-pill);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  border: 1px solid var(--selective-yellow);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.rt-button-inner-wrap {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.rt-button-text-wrap {
  position: relative;
  overflow: hidden;
}

.rt-button-text {
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.86667;
  transition: transform 0.3s ease;
}

.rt-buttom-arrow-wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  width: 11px;
  height: 12px;
}

.rt-arrow-image {
  transition: transform 0.3s ease;
}

.rt-button-hover-arrow {
  position: absolute;
  top: 100%;
  transition: transform 0.3s ease;
}

.rt-color-overley {
  background-color: var(--selective-yellow);
  width: 120%;
  height: 120%;
  position: absolute;
  top: 100%;
  left: -10%;
  transition: top 0.4s ease;
  z-index: 1;
}

.rt-button:hover .rt-color-overley {
  top: -10%;
}

.rt-button:hover .rt-button-text {
  color: var(--greenish-blue);
}

.rt-button:hover .rt-arrow-image {
  transform: translateY(-100%);
}

.rt-button:hover .rt-button-hover-arrow {
  transform: translateY(-100%);
}

/* White text button variant (for dark backgrounds) */
.rt-button.white-text {
  border-color: var(--white);
}

.rt-button.white-text .rt-button-text {
  color: var(--white);
}

.rt-button.white-text .rt-color-overley {
  background-color: var(--white);
}

.rt-button.white-text:hover .rt-button-text {
  color: var(--greenish-blue);
}

/* --- Hero Section (Homepage V3) --- */
.rt-hero-home-v3 {
  background-color: var(--floral-white);
  padding-top: 100px;
  padding-bottom: 30px;
  z-index: 1;
}

.rt-hero-wrapper-home-v3 {
  display: flex;
  align-items: center;
  gap: 30px;
}

.rt-hero-heading-left-side {
  flex: 1;
  max-width: 460px;
}

.rt-hero-heading-bottom-padding {
  padding-bottom: 25px;
}

.rt-heading-description-bottom-padding {
  padding-bottom: 35px;
}

.rt-hero-description-wrap-v3 {
  color: var(--davy-s-grey);
  font-size: 16px;
  line-height: 1.75;
}

.rt-hero-content-right-side {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.rt-flex-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 50px;
  height: 100%;
  padding-top: 20px;
}

.rt-flex {
  display: contents;
}

.rt-image-wrap {
  display: none;
}

.rt-sticker {
  z-index: 10;
  position: absolute;
  top: 60px;
  right: 350px;
  transform: rotate(12deg);
  pointer-events: auto;
}

.rt-sticker.rt-position-absolute {
  position: absolute;
}

.rt-sticker img {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.rt-features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  pointer-events: auto;
  margin-top: 60px;
}

.rt-features-inner-wrap {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 16px 24px;
  background: transparent;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.rt-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.rt-icon-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.rt-text-style-h6 {
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

/* Social Icons */
.rt-social-icon-main-wrap {
  padding-top: 30px;
}

.rt-social-icon-wrap {
  display: flex;
  gap: 12px;
}

.rt-social-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--light-sand);
  transition: all 0.3s ease;
}

.rt-social-icon-box:hover {
  background: var(--selective-yellow);
  border-color: var(--selective-yellow);
}

.rt-social-hover {
  text-decoration: none;
}

.rt-tittle-text {
  padding-bottom: 22px;
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

/* --- Hero Center Image --- */
.image-3 {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transform: translate(-70px, 70px);
}

/* --- Text Marquee Banner --- */
.rt-hero-big-text-banner-big-text-wrap-v1 {
  display: flex;
  width: 100%;
  margin-top: 10px;
}

.rt-marquee-train {
  display: flex;
  animation: marquee-scroll 20s linear infinite;
  flex-shrink: 0;
}

.rt-marquee-text {
  font-family: Oswald, Arial, sans-serif;
  font-size: 80px;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px var(--greenish-blue);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 30px;
  line-height: 1;
}

.rt-marquee-text::after {
  content: 'La Popular Panaderia';
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* --- Three Location Cards --- */
.rt-menu-three-item {
  padding-bottom: 150px;
  display: block;
  position: relative;
  z-index: 2;
  background-color: var(--floral-white);
}

.rt-three-item-wrapper {
  display: flex;
  background-image: url('images/Rectangle-16992.webp');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 365px;
  padding-bottom: 80px;
  padding-left: 85px;
  padding-right: 85px;
}

.rt-three-item-wrapper.rt-position-relative {
  gap: 80px;
  justify-content: center;
  margin-top: -184px;
}

.rt-three-item-wrapper.rt-position-relative.rt-shadow {
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 80px 40px -34px #07281e66;
}

.rt-item {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 298px;
  margin-top: -100px;
  display: flex;
  text-decoration: none;
  transition: all 0.4s ease;
}

.rt-image-wrapper {
  background-color: #eadfcb;
  background-image: url('images/Untitled-design-11.avif');
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  width: 263px;
  height: 263px;
  transition: all 0.4s ease;
  overflow: hidden;
}


.rt-item:hover .rt-image-wrapper {
  transform: scale(1.05);
}

.rt-category-coffee-image {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.circle-inner-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 80%;
  height: auto;
}

.rt-menu-item-details-wrap {
  padding-top: 31px;
}

.rt-text-style-h4 {
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.41667;
}

.rt-item-name { padding-bottom: 17px; }

.rt-text-style-h4.rt-color-white {
  color: var(--white);
}

/* --- Background Video Section --- */
.rt-brew-philosophy {
  padding: 0;
}

.rt-brew-philosophy .rt-big-container {
  max-width: 100%;
  padding: 0;
}

.rt-brew-philosophy-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 100vh;
}

.rt-brew-philosophy-color-overley {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,40,30,0.3) 0%, rgba(7,40,30,0.7) 100%);
  z-index: 2;
}

.rt-brew-philosophy-background-vedio-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.rt-brew-philosophy-background-vedio {
  width: 100%;
  height: 100%;
}

.rt-brew-philosophy-background-vedio video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-brew-philosophy-heading-wrap {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 60px 30px;
}

/* --- Our Story / Cities (Dark Green Section) --- */
.rt-our-story.rt-v2 {
  background-color: var(--greenish-blue);
  padding-top: 150px;
  padding-bottom: 150px;
}

.rt-our-story-content-wrapper-v2 {
  display: flex;
  gap: 60px;
  align-items: center;
}

.rt-our-story-left-side-v2 {
  flex: 1;
  max-width: 530px;
  position: relative;
}

.rt-our-story-right-image-v1 {
  width: 520px;
  height: 580px;
  border-radius: var(--radius);
  overflow: hidden;
}

.rt-our-story-right-image-v1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-our-story-right-image-v2 {
  display: flex;
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 410px;
  height: 396px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--greenish-blue);
}

.rt-our-story-right-image-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-our-story-right-side-v2 {
  flex: 1;
}

.rt-our-story-heading-wrap {
  max-width: 570px;
}

.rt-heading-bottom-padding {
  padding-bottom: 33px;
}

.rt-our-story-description {
  color: var(--greenish-gray);
  line-height: 1.75;
}

.rt-our-story-description.rt-change-color {
  color: rgba(255,255,255,0.7);
}

.rt-time-table-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 35px;
  padding-top: 10px;
}

.rt-text-style-h6.rt-change-color-v3 {
  color: rgba(255,255,255,0.6);
}

a.rt-city-link {
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}

a.rt-city-link:hover {
  color: var(--selective-yellow);
}

.rt-change-width-v4 { max-width: 100%; }
.rt-features-heading-icon {
  display: none;
}

/* --- Image Marquee Gallery --- */
.rt-marquee-section-home-v3 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  padding: 80px 0;
  gap: 20px;
  background: var(--white);
}

.rt-marquee-top-main-wrapper {
  display: flex;
  gap: 20px;
}

.rt-marquee-bottom-main-wrapper {
  display: flex;
  gap: 20px;
}

.rt-marquee-train-home-v3 {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  animation: marquee-gallery 40s linear infinite;
}

.rt-marquee-train-home-v3.rt-bg-change {
  animation-direction: reverse;
}

.rt-marquee-train-home-v3.align-top {
  animation-direction: reverse;
}

.rt-marquee-item {
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.rt-marquee-item.tall {
  width: 280px;
  height: 380px;
}

.rt-marquee-item.wide {
  width: 320px;
  height: 240px;
}

.rt-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes marquee-gallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 20px)); }
}

/* --- Testimonial Section --- */
.rt-testimonial-home-v1 {
  background-color: var(--white);
  padding-top: 100px;
  padding-bottom: 120px;
}

.rt-testimonial-heading-home-v1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rt-heading-card-bottom-padding {
  padding-bottom: 52px;
}

.rt-testimonial-content-wrapper-home-v1 {
  display: flex;
  gap: 30px;
  position: relative;
  align-items: stretch;
}

.rt-testimonial-left-side {
  flex: 1 1 55%;
  min-width: 0;
  order: 2;
}

.rt-testimonial-left-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.rt-testimonial-left-image img {
  width: 100%;
  height: auto;
}

.rt-vedio-block {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.rt-vedio-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-testimonial-right-side {
  flex: 1 1 45%;
  min-width: 0;
  order: 1;
  position: relative;
}

.rt-inner-testimonial-right-side {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Static Reviews */
.rt-static-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rt-review-heading {
  padding-bottom: 20px;
}

.rt-text-style-h3 {
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.46667;
}

.rt-review-description-v2 {
  padding-bottom: 20px;
}

.rt-review-description {
  color: var(--davy-s-grey);
  line-height: 1.75;
}

.rt-review-block-border {
  border-bottom: 1px solid var(--chinese-silver);
  margin-bottom: 20px;
}

.rt-review-author-detail-wrap {
  overflow: hidden;
}

.rt-testimonial-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.rt-review-rating-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rt-review-star-wrapper {
  display: flex;
  gap: 2px;
}

.rt-review-star-wrapper img {
  width: 16px;
  height: 16px;
}

.rt-podition-quote-element {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20px;
  right: 30px;
  z-index: 10;
}

.rt-display-none { display: flex; }
.rt-star-view-none { display: none; }

/* --- Menu Hero Section --- */
.rt-menu-hero {
  background-color: var(--floral-white);
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.rt-menu-hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
}

.rt-menu-hero-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0deg, var(--white) 0%, transparent 100%);
}

.rt-menu-content-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-end;
}

.rt-product-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rt-product-wrap.rt-top-auto {
  align-self: flex-start;
  margin-top: 60px;
}

.rt-product-image {
  position: relative;
  margin-bottom: 20px;
}

.rt-product-details-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rt-text-style-h5 {
  color: var(--greenish-blue);
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.rt-star-wrapper {
  display: flex;
  gap: 4px;
}

.rt-star-image img {
  width: 20px;
  height: 20px;
}

.rt-amount-text-color-change {
  color: var(--black);
}

/* --- Contact Form Section --- */
.rt-contact-form {
  background-color: var(--greenish-blue);
  padding-top: 160px;
  padding-bottom: 80px;
}

.rt-contact-form-content {
  display: flex;
  gap: 60px;
}

.rt-contact-form-left-side {
  flex: 1;
}

.rt-contact-form-right-side {
  flex: 1;
}

.rt-h3-bottom-gap {
  padding-bottom: 24px;
}

.rt-our-details-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rt-change-color {
  color: var(--floral-white);
}

.rt-details-heading {
  padding-bottom: 8px;
}

.rt-contact-form .rt-our-details-wrap,
.rt-contact-form .rt-our-details-wrap a,
.rt-contact-form .rt-our-details-wrap strong,
.rt-contact-form .rt-our-details-wrap div {
  color: #fff;
}

.rt-hover {
  transition: all 0.3s;
}

.rt-hover:hover {
  color: var(--selective-yellow);
}

/* Contact Form Inputs */
.rt-contact-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: var(--white);
  transition: all 0.3s ease;
  outline: none;
}

.rt-contact-input:focus {
  border-color: var(--selective-yellow);
  background: rgba(255,255,255,0.12);
}

.rt-contact-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.rt-contact-textarea {
  min-height: 140px;
  resize: vertical;
}

.rt-contact-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23fff'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.rt-contact-select option {
  background: var(--greenish-blue);
  color: var(--white);
}

.rt-form-status {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  display: none;
  margin-top: 12px;
}

.rt-form-status.success {
  display: block;
  background: rgba(34,197,94,0.15);
  color: #86efac;
}

.rt-form-status.error {
  display: block;
  background: rgba(239,68,68,0.15);
  color: #fca5a5;
}

/* Light variant nav (for dark background pages) */
.rt-navbar.light-variant .rt-brand,
.rt-navbar.light-variant .rt-menu-text {
  color: rgba(255,255,255,0.7);
}

.rt-navbar.light-variant .rt-menu-text:hover,
.rt-navbar.light-variant .rt-menu-text.active {
  color: var(--white);
}

.rt-navbar.light-variant .mobile-list-line-one,
.rt-navbar.light-variant .mobile-list-line-two,
.rt-navbar.light-variant .mobile-list-line-three {
  background: var(--white);
}

.rt-navbar.light-variant .rt-devaider {
  background: rgba(255,255,255,0.2);
}

.rt-navbar.light-variant.scrolled {
  background-color: var(--greenish-blue);
}

.rt-navbar.light-variant.scrolled .rt-brand {
  color: var(--white);
}

/* --- Footer --- */
.rt-footer {
  background-image: url('images/footer-bg.webp');
  background-position: 50%;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 30px;
}

.rt-footer-content-wrapper {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(41,72,63,0.5);
  padding-bottom: 28px;
  flex-wrap: wrap;
}

.rt-footer-menu-wrap {
  display: flex;
  gap: 30px;
}

.rt-footer-social-iconbox-wrapper {
  display: flex;
  gap: 20px;
}

.rt-social-box-wrapper {
  background-color: var(--white);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
}

.rt-social-box-wrapper:hover {
  background-color: var(--selective-yellow);
}

.rt-footer-bottom-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 23px;
  padding-bottom: 22px;
}

.rt-footer-links {
  list-style: none;
}

.rt-footer-links li {
  margin-bottom: 8px;
}

.rt-footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.rt-footer-links a:hover {
  color: var(--selective-yellow);
}

/* --- 404 Page --- */
.rt-utility-page-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.rt-utility-page-content {
  text-align: center;
}

.rt-error-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.rt-error-content-inner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.rt-error-content img {
  max-width: 100%;
  height: auto;
}

.rt-error-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rt-404-hover {
  color: var(--selective-yellow);
  text-decoration: underline;
}

.rt-404-button {
  margin-top: 20px;
}

/* --- Inner Page Hero --- */
.rt-inner-hero {
  background-color: var(--floral-white);
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
}

.rt-inner-hero h1 {
  margin-bottom: 16px;
}

.rt-inner-hero p {
  max-width: 600px;
  margin: 0 auto;
}

/* --- Cards & Info Cards --- */
.rt-info-card {
  background: var(--floral-white);
  border-radius: var(--radius);
  padding: 32px;
}

.rt-info-card h3 {
  margin-bottom: 8px;
}

.rt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rt-card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* --- Schedule Cards --- */
.rt-schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.rt-schedule-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 24px;
  transition: all var(--transition);
}

.rt-schedule-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.rt-schedule-day {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  font-family: Oswald, sans-serif;
  background: var(--greenish-blue);
  color: var(--white);
}

.rt-schedule-link {
  color: var(--greenish-blue);
  font-weight: 600;
  text-decoration: none;
  transition: opacity var(--transition);
}
.rt-schedule-link:hover { opacity: 0.7; }

.rt-schedule-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rt-schedule-note {
  font-size: 0.85rem;
  color: #86868b;
  margin-top: 10px;
}

.rt-schedule-closed {
  opacity: 0.45;
}

/* --- Gallery Grid --- */
.rt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.rt-gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.rt-gallery-grid img:hover {
  transform: scale(1.03);
}

/* --- Steps --- */
.rt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.rt-step {
  text-align: center;
  counter-increment: step;
}

.rt-step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--selective-yellow);
  color: var(--greenish-blue);
  font-family: Oswald, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

/* --- CTA Banner --- */
.rt-cta-banner {
  background: var(--greenish-blue);
  border-radius: var(--radius);
  padding: 48px;
  color: var(--white);
  text-align: center;
}

.rt-cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.rt-cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

/* --- Map --- */
.rt-map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-sand);
}

.rt-map-embed iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* --- Section Padding --- */
.rt-section {
  padding: 80px 0;
}

.rt-section-lg {
  padding: 120px 0;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Breadcrumbs --- */
.rt-breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--greenish-gray);
}

.rt-breadcrumbs a {
  color: var(--greenish-gray);
}

.rt-breadcrumbs a:hover {
  color: var(--selective-yellow);
}

/* --- Utility --- */
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* 1440px */
@media screen and (max-width: 1440px) {
  .rt-our-story-right-image-v1 {
    width: 460px;
    height: 520px;
  }
  .rt-our-story-right-image-v2 {
    width: 350px;
    height: 340px;
  }
}

/* 1280px */
@media screen and (max-width: 1280px) {
  .rt-hero-wrapper-home-v3 {
    flex-wrap: wrap;
  }
}

/* 991px — Tablet */
@media screen and (max-width: 991px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 26px; }

  .rt-container {
    max-width: 728px;
  }

  .rt-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 999;
  }

  .rt-nav-menu.open {
    display: flex;
  }

  .rt-nav-menu .rt-menu-text {
    font-size: 20px;
    padding: 15px 20px;
  }

  .mobile-list-button {
    display: block;
    z-index: 1001;
  }

  .rt-hero-home-v3 {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .rt-hero-content-right-side {
    display: none;
  }

  .rt-hero-big-text-banner-big-text-wrap-v1 {
    display: none;
  }

  .rt-three-item-wrapper.rt-position-relative {
    flex-wrap: wrap;
    height: auto;
    margin-top: 0;
    padding: 66px 30px;
    justify-content: center;
  }

  .rt-three-item-wrapper.rt-position-relative.rt-shadow {
    margin-top: 0;
  }

  .rt-menu-three-item {
    background-color: var(--greenish-blue);
    padding-top: 70px;
    padding-bottom: 0;
  }

  .rt-item {
    max-width: none;
    margin-top: 0;
  }

  .rt-image-wrapper.rt-overflow-hidden.rt-three,
  .rt-image-wrapper.rt-overflow-hidden.rt-two,
  .rt-image-wrapper.rt-overflow-hidden.rt-one {
    background-image: url('images/Untitled-design-11.avif');
  }

  .rt-our-story-content-wrapper-v2 {
    flex-direction: column;
  }

  .rt-our-story-left-side-v2 {
    max-width: 100%;
  }

  .rt-our-story-right-image-v1 {
    width: 100%;
    height: 400px;
  }

  .rt-our-story-right-image-v2 {
    display: none;
  }

  .rt-testimonial-content-wrapper-home-v1 {
    flex-direction: column;
  }

  .rt-testimonial-right-side {
    order: 2;
  }

  .rt-testimonial-left-side {
    order: 1;
  }

  .rt-contact-form-content {
    flex-direction: column;
  }

  .rt-menu-content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .rt-product-wrap.rt-top-auto {
    margin-top: 0;
  }

  .rt-card-grid {
    grid-template-columns: 1fr;
  }

  .rt-card-grid-2 {
    grid-template-columns: 1fr;
  }

  .rt-steps {
    grid-template-columns: 1fr;
  }

  .rt-footer-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .rt-footer-bottom-content-wrapper {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Nav light variant mobile */
  .rt-navbar.light-variant .rt-nav-menu {
    background: var(--greenish-blue);
  }
}

/* 767px — Mobile landscape */
@media screen and (max-width: 767px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }

  .rt-container {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
  }

  .rt-our-story.rt-v2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .rt-testimonial-home-v1 {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .rt-marquee-text {
    font-size: 48px;
  }

  .rt-marquee-item.tall {
    width: 180px;
    height: 250px;
  }

  .rt-marquee-item.wide {
    width: 200px;
    height: 150px;
  }

  .rt-footer {
    padding-top: 60px;
  }

  .rt-schedule-grid {
    grid-template-columns: 1fr;
  }

  .rt-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .rt-inner-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .rt-contact-form {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .rt-menu-hero {
    padding-top: 120px;
  }
}

/* 479px — Mobile portrait */
@media screen and (max-width: 479px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  h3 { font-size: 22px; }

  .rt-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .rt-hero-home-v3 {
    padding-top: 100px;
  }

  .rt-button {
    padding: 12px 24px;
  }

  .rt-brew-philosophy-content-wrapper {
    min-height: 350px;
  }

  .rt-cta-banner {
    padding: 32px 20px;
  }

  .rt-error-content-inner-wrapper {
    flex-direction: column;
  }

  .rt-marquee-item img {
    width: 150px;
  }

  .rt-our-story-right-image-v1 {
    height: 300px;
  }
}
