@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Open+Sans:wght@400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@400;500&display=swap");

/* Global Styles */
html {
  scroll-behavior: smooth;
  background-color: #1a1a1a;
  /* Dark background to prevent white flash during transitions */
  overflow-y: scroll;
  /* Prevents layout shift between pages with different lengths */
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  /* Softer, neutral gray/white - easier on eyes */
  color: #333;
  overflow-x: hidden;
  /* Prevents horizontal scroll/zoom out caused by overflow */
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.loaded {
  opacity: 1;
}

/* Branded Page Loader */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.8s ease,
    visibility 0.8s;
}

#page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 600px;
  max-width: 85vw;
  height: auto;
  animation: logoPulse 2s infinite ease-in-out;
}

@keyframes logoPulse {
  0% {
    transform: scale(0.95);
    filter: drop-shadow(0 0 5px rgba(251, 192, 45, 0.2));
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(251, 192, 45, 0.5));
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    filter: drop-shadow(0 0 5px rgba(251, 192, 45, 0.2));
    opacity: 0.8;
  }
}

main {
  flex: 1;
}

/* Redesigned Hero Section */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&q=80&w=2000")
    no-repeat center center/cover;
  background-attachment: fixed;
  /* Parallax-like effect */
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
  max-width: 900px;
}

.hero-glass-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  transform: translateY(30px);
  opacity: 0;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fbc02d;
  /* Gold accent */
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 40px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.btn-hero {
  background: #fbc02d;
  color: #1a1a1a;
  border: none;
  padding: 15px 40px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(251, 192, 45, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Premium Slogan Section */
.slogan-section {
  position: relative;
  padding: 140px 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: url("https://images.unsplash.com/photo-1549931319-a545dcf3bc73?q=80&w=2000&auto=format&fit=crop")
    no-repeat center center/cover;
  background-attachment: fixed;
  overflow: hidden;
  color: white;
  text-align: center;
}

.slogan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slogan-card {
  position: relative;
  z-index: 2;
  background: rgba(
    255,
    255,
    255,
    0.95
  ); /* Bright white bar feel from the image */
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  max-width: 900px;
  margin: 0 auto;
  border-left: 8px solid #fbc02d;
  border-right: 8px solid #fbc02d;
  animation: fadeInUp 1.2s ease forwards;
}

.slogan-icon-wrapper {
  width: 70px;
  height: 70px;
  background: #fbc02d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -95px auto 30px; /* Overlap effect */
  box-shadow: 0 10px 20px rgba(251, 192, 45, 0.3);
}

.slogan-icon {
  font-size: 2rem;
  color: #1a1a1a;
}

.slogan-title {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.slogan-divider {
  width: 80px;
  height: 4px;
  background: #fbc02d;
  margin: 20px auto;
  border-radius: 2px;
}

.slogan-text {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Restore original hero background requested by user */
.hero-section {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&q=80&w=2000")
    no-repeat center center/cover;
  background-attachment: fixed;
  overflow: hidden;
  color: white;
  text-align: center;
}

/* Secondary Promo Section with a CACHE-BUSTING professional background */
.promo-section,
.products-page-bg {
  position: relative;
  padding: 120px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1509440159596-0249088772ff?q=80&w=2000&auto=format&fit=crop&v=2");
  /* Added version for cache busting */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  /* Changed to scroll for better compatibility */
  overflow: hidden;
  background-color: #1a1a1a;
}

.products-page-bg {
  background-image: url("https://images.unsplash.com/photo-1555507036-ab1fdb0387fe?auto=format&fit=crop&q=80&w=2000");
  min-height: 100vh;
  padding: 80px 0;
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Made it much lighter to ensure visibility */
  z-index: 1;
}

.promo-glass-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 25px 20px;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo-glass-box:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(251, 192, 45, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.product-img-container {
  width: 110px;
  height: 110px;
  margin-bottom: 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(251, 192, 45, 0.3);
  padding: 10px;
  background: transparent;
}

.product-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  filter: url(#remove-white);
  /* Keys out white background via SVG filter */
}

.promo-glass-box:hover .product-img-container img {
  transform: scale(1.1);
}

.promo-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  color: #fbc02d;
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promo-icon {
  font-size: 3rem;
  color: #fbc02d;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(251, 192, 45, 0.3));
}

.promo-text {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: white;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 400;
  opacity: 1;
  flex-grow: 1;
}

.bread-badge-container {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.bread-badge {
  background: #fbc02d;
  color: #1a1a1a;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  display: inline-block;
}

.btn-promo {
  background: transparent;
  color: #fbc02d;
  border: 2px solid #fbc02d;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-promo:hover {
  background: #fbc02d;
  color: #1a1a1a;
  box-shadow: 0 0 20px rgba(251, 192, 45, 0.4);
}

/* Responsive adjustments for hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-glass-box {
    padding: 40px 20px;
  }

  .hero-section {
    height: 70vh;
    background-attachment: scroll;
    /* Disable parallax on mobile for performance */
  }
}

/* Unified Header/Navbar Style */
.navbar-custom {
  background: #1a1a1a;
  /* Chic Dark Color */
  border-bottom: 2px solid #fbc02d;
  /* Gold accent line */
  padding: 0px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.brand-text-container {
  display: flex;
  align-items: center;
  color: white;
}

.navbar-logo {
  max-height: 65px;
  margin-right: 10px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  transform: rotate(5deg) scale(1.1);
  /* Subtle playful animation */
}

.navbar-brand h1 {
  margin: 0;
  font-size: 1.35em;
  text-shadow: none;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fbc02d;
  /* Gold color for brand */
  line-height: 1;
  letter-spacing: 1px;
}

.navbar-slogan {
  font-size: 0.8em;
  font-style: italic;
  font-family: "Playfair Display", serif;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.navbar-custom .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  transition: all 0.3s ease;
  padding: 8px 15px;
  margin: 0 5px;
  /* Added spacing between links */
  letter-spacing: 0.5px;
}

.navbar-custom .nav-link:hover {
  color: #fbc02d !important;
  background-color: rgba(251, 192, 45, 0.1);
  border-radius: 20px;
  transform: translateY(-1px);
  text-shadow: 0 0 10px rgba(251, 192, 45, 0.3);
}

.navbar-custom .navbar-toggler {
  border-color: #fbc02d;
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(251, 192, 45, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Page Titles */
h2.page-title {
  text-align: center;
  color: #1a1a1a;
  margin: 30px 0;
  /* Reduced margin */
  font-size: 2em;
  /* Reduced from 2.5em */
  font-family: "Playfair Display", serif;
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #fbc02d;
  /* Thinner line */
  padding-bottom: 8px;
  font-weight: 600;
  /* Slightly lighter weight */
}

.page-title-container {
  text-align: center;
}

/* Bread List (Card Grid) */
.bread-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 cards per row */
  gap: 14px;
  margin-bottom: 40px;
  padding: 0 100px;
}

.bread-card {
  background: white;
  border-top: 3px solid #1a1a1a;
  border-radius: 10px;
  padding: 10px 10px 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.bread-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  border-top-color: #fbc02d;
  cursor: pointer;
}

.bread-card img {
  width: 80%;
  height: 140px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 8px;
  padding: 6px;
  background: transparent;
  border-radius: 8px;
}

.bread-card h3 {
  color: #1a1a1a;
  margin: 6px 0;
  font-size: 1.5em;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bread-card p {
  font-size: 1.05em;
  line-height: 1.6;
  color: #555;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

/* About Section */
.about-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-top: 6px solid #fbc02d;
  margin-bottom: 40px;
}

.about-text {
  font-size: 1.1em;
  line-height: 1.8;
  color: #444;
  text-align: justify;
}

.about-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.about-img:hover {
  transform: scale(1.02);
}

/* Footer Style */
footer {
  background-color: #1a1a1a;
  border-top: 2px solid #fbc02d;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 15px;
  font-family: "Cinzel", serif;
  margin-top: auto;
  /* Push to bottom if flex container */
  width: 100%;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  header h1 {
    font-size: 2em;
    /* Smaller header font on mobile */
  }

  h2.page-title {
    font-size: 1.8em;
    /* Smaller page title on mobile */
    margin: 20px 0;
  }

  .about-container {
    padding: 20px;
  }

  .bread-list {
    grid-template-columns: 1fr;
    /* Full width for cards on small screens */
  }
}

@media (min-width: 769px) and (max-width: 992px) {
  .bread-list {
    grid-template-columns: repeat(2, 1fr);
    /* 2 cards per row on tablets */
  }
}

/* About Us Page Premium Styles */
.about-hero {
  height: 40vh;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 60px;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.about-hero-title {
  font-family: "Cinzel", serif;
  font-size: 3.5rem;
  color: #fbc02d;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
}

.about-story-row {
  margin-bottom: 100px;
}

.about-story-text {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  line-height: 2;
  color: #333;
  text-align: justify;
  padding: 0 40px;
  position: relative;
}

.about-story-text::first-letter {
  font-size: 4rem;
  float: left;
  margin-right: 15px;
  color: #fbc02d;
  font-family: "Cinzel", serif;
  line-height: 0.8;
}

.about-quote-box {
  background: #fdfcf9;
  border-left: 5px solid #fbc02d;
  padding: 40px;
  margin: 40px 0;
  font-style: italic;
  font-size: 1.6rem;
  color: #555;
  font-family: "Cormorant Garamond", serif;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.03);
}

.about-badge-since {
  display: inline-block;
  background: #1a1a1a;
  color: #fbc02d;
  padding: 10px 25px;
  font-family: "Cinzel", serif;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.about-img-framed {
  border: 15px solid white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about-img-framed:hover {
  transform: scale(1.03);
}

.about-feature-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  border-bottom: 4px solid #fbc02d;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.about-feature-card .promo-text {
  color: #444;
}

/* Features Section Styling */
.feature-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Hover Effect: Lift and Accent */
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #fbc02d;
  /* Gold accent */
}

/* Icon Styling */
.feature-icon {
  font-size: 3.5rem;
  color: #d32f2f;
  /* Brand Red */
  margin-bottom: 25px;
  display: inline-block;
  transition: transform 0.4s ease;
}

/* Icon Animation on Hover */
.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(10deg);
  color: #fbc02d;
  /* Change to gold on hover */
}

/* Typography */
.feature-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.feature-box p {
  font-family: "Open Sans", sans-serif;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Contact Button Styling */
.btn-contact {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 2px solid #000000 !important;
  border-radius: 8px !important;
  padding: 12px 30px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.btn-contact:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Premium Bread Showcase Styles */
.bread-showcase-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 60px 0;
}

.bread-showcase-row {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 480px;
}

/* Alternating (Z-Pattern) Layout */
.bread-showcase-row:nth-child(even) {
  flex-direction: row-reverse;
}

.bread-showcase-row:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  border-color: rgba(251, 192, 45, 0.4);
}

.bread-text-side {
  flex: 1.1;
  padding: 80px 60px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, #ffffff, #fdfdfd);
}

.bread-showcase-row:nth-child(even) .bread-text-side {
  text-align: right;
  background: linear-gradient(to left, #ffffff, #fdfdfd);
}

.bread-showcase-row:nth-child(even) .bread-badge {
  align-self: flex-end;
}

.bread-text-side h3 {
  font-family: "Cinzel", serif;
  font-size: 2.8rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bread-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: #d32f2f;
  color: white;
  padding: 8px 20px;
  border-radius: 4px;
  /* More modern geometric look */
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 5px 15px rgba(211, 47, 47, 0.15);
}

.bread-text-side p {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 0;
  font-weight: 400;
}

.bread-image-side {
  flex: 0.9;
  overflow: hidden;
  background: #fdfcf9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bread-image-side img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  /* Prevents overflow and cut-offs */
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bread-showcase-row:hover .bread-image-side img {
  transform: scale(1.15) rotate(2deg);
}

/* Responsive Bread Showcase */
@media (max-width: 992px) {
  .bread-showcase-row,
  .bread-showcase-row:nth-child(even) {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .bread-image-side {
    width: 100%;
    height: 300px;
    padding: 30px;
  }
  .bread-text-side,
  .bread-showcase-row:nth-child(even) .bread-text-side {
    padding: 40px 20px;
    text-align: center;
    align-items: center;
  }
  .bread-text-side h3 {
    font-size: 1.8rem;
  }
  .bread-text-side p {
    font-size: 1.05rem;
  }
  .bread-badge,
  .bread-showcase-row:nth-child(even) .bread-badge {
    align-self: center;
  }
  .bread-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px;
    gap: 20px;
  }
}

/* Tablet and Mobile (768px and below) */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  .hero-glass-box {
    padding: 40px 20px;
  }
  .about-hero {
    height: 30vh;
    margin-bottom: 40px;
  }
  .about-hero-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  .about-story-row {
    margin-bottom: 60px;
  }
  .about-story-text {
    font-size: 1.1rem;
    padding: 0 15px;
    line-height: 1.8;
  }
  .about-story-text::first-letter {
    font-size: 3rem;
  }
  .about-badge-since {
    margin-bottom: 20px;
    font-size: 0.9rem;
  }
  .slogan-title {
    font-size: 2.2rem;
  }
  .bread-list {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .navbar-brand h1 {
    font-size: 1rem;
  }
  .navbar-logo {
    max-height: 45px;
  }
  .navbar-custom {
    padding: 0 15px;
  }
  .brand-text-container {
    white-space: nowrap;
  }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .about-quote-box {
    padding: 25px;
    font-size: 1.2rem;
  }
  .about-feature-card {
    padding: 30px 20px;
  }
  .navbar-custom {
    padding: 0 10px;
  }
  .navbar-brand h1 {
    font-size: 0.9rem;
  }
  .navbar-logo {
    max-height: 38px;
    margin-right: 5px;
  }
}
