/* Hero Logo Styles */

.hero-logo {
  display: block;
  margin: 5.5rem auto 1.2rem auto;
  max-width: 48px;
  height: auto;
  z-index: 2;
  position: relative;
}

@media (max-width: 600px) {
  .hero-logo {
    max-width: 36px;
    margin-top: 4.5rem;
    margin-bottom: 0.5rem;
  }
}

/* Add extra top padding to hero section to push content down */
.hero {
  padding-top: 3.5rem;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2.5rem;
  }
}

@media (max-width: 600px) {
  .hero-logo {
    max-width: 48px;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 600px) {
  .hero-logo {
    max-width: 80px !important;
    margin-top: 1rem !important;
    margin-bottom: 0.5rem;
  }
}
/* Initial state for smooth image entrance animations */
.pre-animate-from-top {
  opacity: 0;
  transform: translateY(-60px);
}
.pre-animate-from-bottom {
  opacity: 0;
  transform: translateY(60px);
}
.pre-animate-from-right {
  opacity: 0;
  transform: translateX(60px);
}
/* Custom Animations for Who We Are Images */
@keyframes fromTop {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fromBottom {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-from-top {
  animation: fromTop 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-from-bottom {
  animation: fromBottom 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.animate-from-right {
  animation: fromRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background: #78a4bc;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5a8aa0;
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  border: none;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  color: white;
  padding: 6px 24px;
  background: #78a4bc;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: #f9fafb;
  color: black;
  transform: scale(1.05);
  border-color: rgba(120, 164, 188, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
  background: linear-gradient(to right, #78a4bc, #3b82f6);
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(to right, #6a94a8, #2563eb);
  transform: scale(1.05);
}

.btn-cancel {
  background: #f3f4f6;
  color: #374151;
}

.btn-cancel:hover {
  background: #e5e7eb;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(-10px) rotate(-3deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translateY(0);
  }
  40%,
  43% {
    transform: translateY(-30px);
  }
  70% {
    transform: translateY(-15px);
  }
  90% {
    transform: translateY(-4px);
  }
}

.animate-fade-in {
  animation: fadeIn 1.5s ease-in-out;
}

.animate-fade-in-up {
  animation: fadeInUp 1.2s ease-out;
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}

.animate-float-delay {
  animation: float 8s ease-in-out infinite 2s;
}

.animate-float-delay-2 {
  animation: float 8s ease-in-out infinite 4s;
}

.animate-bounce {
  animation: bounce 2s infinite;
}

.doodle-bg {
  background-image: url("../public/doodle-bg.png"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-attachment: fixed; */
  width: 100%;
  height: 100vh; /* Or any desired height */
  position: relative;
  z-index: 0;
}

/* Navigation */
.nav {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 40;
  background: rgba(0, 0, 0, 0);
  /* backdrop-filter: blur(12px); */
  transition: all 0.5s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
  max-width: 1280px;
  /* margin: 0 auto; */
  padding: 0 1rem;
}

.nav-logo img {
  max-width: 6rem;
  cursor: pointer;
}

.nav-links {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 2rem;
}

.nav-link {
  background: none;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-link-dark {
  background: none;
  border: none;
  color: black;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #78a4bc;
  transform: scale(1.1);
}

.nav-toggle {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: color 0.3s ease;
}

.nav-toggle:hover {
  color: #78a4bc;
}

.nav-mobile {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem;
  text-align: center;
}

.nav-mobile-link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: white;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
  width: 100%;
}

.nav-mobile-link:hover {
  color: #78a4bc;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.6)
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-title img {
  max-width: 12rem;
  margin-bottom: 1rem;
}

.hero-quote-container {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero-quote {
  font-size: 1.875rem;
  color: white;
  font-weight: bold;
  line-height: 1.6;
}

.hero-quote-part {
  display: inline-block;
}

.hero-quote-animated {
  display: inline-block;
  margin-left: 0.5rem;
  transition: all 0.5s ease;
}

.hero-quote-animated.hidden {
  opacity: 0;
  transform: translateY(-1rem);
}

.hero-description {
  font-size: 1rem;
  color: #dbeafe;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.hero-button-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #78a4bc;
  width: 2.5rem;
  height: 2.5rem;
}

/* Floating Doodles */
.floating-doodle {
  position: absolute;
  opacity: 0.2;
}

.floating-doodle.coffee-1 {
  top: 5rem;
  left: 4rem;
}

.floating-doodle.croissant-1 {
  top: 8rem;
  right: 5rem;
}

.floating-doodle.food-1 {
  bottom: 10rem;
  left: 8rem;
}

.floating-doodle.coffee-2 {
  bottom: 15rem;
  right: 4rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-content {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-width: 42rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.modal-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: #111827;
}

.modal-subtitle {
  color: #6b7280;
  margin-top: 0.5rem;
}

.modal-close {
  width: 2.5rem;
  height: 2.5rem;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-close:hover {
  background: #e5e7eb;
}

.modal-body {
  padding: 2rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #78a4bc;
}

.form-textarea {
  resize: none;
  min-height: 6rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

.form-actions .btn {
  flex: 1;
  padding: 0.75rem 1rem;
}

/* Sections */
.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.section-black {
  background: #ccaa8f;
}

.section-white {
  background: #e8e2db;
}

.section-gradient {
  background: linear-gradient(
    to bottom right,
    #f9fafb,
    white,
    rgba(239, 246, 255, 0.3)
  );
}

.section-gradient-2 {
  background: linear-gradient(to bottom right, #f9fafb, white, #f3f4f6);
}

.section-gradient-3 {
  background: linear-gradient(
    to bottom right,
    white,
    rgba(239, 246, 255, 0.2),
    #f9fafb
  );
}

.wave-container {
  background-color: #ccaa8f;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  position: relative;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 30px; /* Reduced height */
  z-index: 2;
}

.wave svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.25)); /* Shadow going OUTWARD */
}

.wave path {
  fill: #e8e2db;
}

.wave-d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 2;
}

.wave-d svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(
    0 -6px 6px rgba(0, 0, 0, 0.25)
  ); /* Shadow going outward (up) */
}

.wave-d path {
  fill: #e8e2db;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.section-title-white {
  color: #643414;
}

.section-title-dark {
  color: #643414;
}

.section-divider {
  width: 8rem;
  height: 0.25rem;
  background: linear-gradient(to right, #78a4bc, #3b82f6);
  margin: 0 auto 2rem;
}

.section-subtitle {
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 1024px;
  margin: 0 auto;
}

.section-subtitle-white {
  color: #d1d5db;
}

.section-subtitle-dark {
  color: #643414;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 5rem;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.grid-3 {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1152px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .grid-3 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
  }
  .card-c {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}

/* Cards */
.card {
  padding: 2rem;
  /* border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.card-c {
  padding: 2rem;
  max-width: 340px;
  border-radius: 1.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.card-dark {
  background: linear-gradient(to right, #111827, #1f2937);
  border: 1px solid #374151;
}

.card-dark:hover {
  border-color: rgba(120, 164, 188, 0.3);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background: #ccaa8f;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.5s ease;
}

.card-icon-lg {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  margin: 0 0 1.5rem 0;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #643414;
  transition: color 0.3s ease;
}

.card:hover .card-title {
  color: #78a4bc;
}

.card-title-white {
  color: white;
}

.card-description {
  color: #77411edc;
  line-height: 1.6;
  text-align: center;
}

.card-description-white {
  color: #9ca3af;
}

/* Content Sections */
.content-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.content-text-white {
  color: #d1d5db;
}

.content-text-dark {
  color: #643414;
}

.content-text-xl {
  font-size: 1.25rem;
  color: #643414;
  margin-bottom: 2rem;
}

.text-stroke {
  -webkit-text-stroke: 1px rgb(255, 255, 255);
  text-stroke: 1px rgb(255, 255, 255);
}

.content-text-highlight {
  font-size: 1.25rem;
  font-weight: 500;
  color: #643414;
  margin-bottom: 2rem;
}

/* Quote Boxes */
.quote-box {
  background: linear-gradient(
    to right,
    rgba(120, 164, 188, 0.2),
    rgba(59, 130, 246, 0.2)
  );
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(120, 164, 188, 0.3);
  margin: 4rem 0 2rem 0;
}

.quote-box-white {
  background: linear-gradient(
    to right,
    rgba(120, 164, 188, 0.05),
    #eff6ff,
    rgba(120, 164, 188, 0.05)
  );
  border: 1px solid rgba(120, 164, 188, 0.1);
  position: relative;
}

.quote-text {
  font-style: italic;
  color: #78a4bc;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.6;
}

.quote-text-dark {
  color: #643414;
  margin-bottom: 1.5rem;
}

.quote-author {
  color: #78a4bc;
  font-weight: 600;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #141414;
  font-size: 0.875rem;
}

/* Images */
.image-container {
  position: relative;
}

.image-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(
    to right,
    rgba(187, 187, 187, 0.3),
    rgba(187, 187, 187, 0.3)
  );
  border-radius: 1.5rem;
  filter: blur(2rem);
}

.image-glow-sm {
  inset: -0.5rem;
  filter: blur(1rem);
}

.main-image {
  position: relative;
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1rem;
  color: white;
  font-weight: 500;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.image-grid img {
  height: 10rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.feature-title {
  font-weight: bold;
  color: #643414;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  color: #643414;
}

.bg-blue {
  background-color: #78a4bc;
}

/* CTA Section */
.cta-card {
  background-color: #78a4bc;
  border-radius: 1.5rem;
  padding: 3rem;
  color: white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}

.cta-bg-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-bg-1 {
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  transform: translate(5rem, -5rem);
}

.cta-bg-2 {
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  transform: translate(-4rem, 4rem);
  background: rgba(255, 255, 255, 0.05);
}

.cta-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-description {
  color: #dbeafe;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-button {
  background: white;
  color: #78a4bc;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.cta-button:hover {
  background: #f9fafb;
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-note {
  color: #bfdbfe;
  font-size: 0.875rem;
  margin-top: 1rem;
  position: relative;
}

/* Footer */
.footer {
  background: #000000;
  color: white;
  padding: 1.8rem 0;
  border-top: 1px solid #374151;
}

.footer-content {
  text-align: center;
}

.footer-title img {
  padding-top: 8px;
  font-size: 1.8rem;
  max-width: 06rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: #9ca3af;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  line-height: 1;
}

.footer-contact {
  margin-bottom: 1rem;
}

.footer-contact-label {
  color: #d1d5db;
  margin-bottom: 1rem;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #78a4bc;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #3b82f6;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
}

.footer-copyright {
  color: #6b7280;
  font-size: 0.8rem;
}

/* Background Decorative Elements */
.bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
}

.bg-decoration-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(120, 164, 188, 0.05);
}

.bg-decoration-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(59, 130, 246, 0.05);
}

.bg-decoration-3 {
  top: 15rem;
  right: 2rem;
  width: 16rem;
  height: 16rem;
  background: rgba(120, 164, 188, 0.03);
}

/* Static Floating Icons */
.static-icon {
  position: absolute;
  color: rgba(120, 164, 188, 0.15);
}

.static-icon-1 {
  top: 6rem;
  right: 8rem;
}
.static-icon-2 {
  top: 10rem;
  left: 5rem;
}
.static-icon-3 {
  bottom: 10rem;
  right: 4rem;
}
.static-icon-4 {
  bottom: 15rem;
  left: 8rem;
}
.static-icon-5 {
  top: 20rem;
  right: 10rem;
}
.static-icon-6 {
  bottom: 20rem;
  left: 4rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-quote {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-quote {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-card {
    padding: 2rem;
  }

  .modal-body {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-quote {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .card {
    padding: 1.5rem;
  }

  .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}

/* Hide elements on mobile */
@media (max-width: 767px) {
  .floating-doodle {
    display: none;
  }

  .bg-decoration {
    display: none;
  }

  .static-icon {
    display: none;
  }
}

.plus-jakarta-sans-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

/* Menu Section */
/* Menu Modal */
.menu-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.menu-footer {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  margin-top: 32px;
}

.menu-footer p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 8px;
}
.menu-section {
  padding: 20px 0;
  background: #e8e2db;
}

.section-description {
  font-size: 1.1rem;
  color: #374151;
  max-width: 600px;
  margin: 0 auto;
}

.menu-carousel-container {
  position: relative;
  margin-bottom: 48px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  color: #92400e;
}

.carousel-arrow:hover {
  background: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-arrow.left {
  left: 16px;
}

.carousel-arrow.right {
  right: 16px;
}

.menu-carousel {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-carousel::-webkit-scrollbar {
  display: none;
}

.menu-card {
  flex: none;
  width: 320px;
  scroll-snap-align: start;
}

.menu-card-image {
  position: relative;
  height: 384px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-card-image:hover {
  transform: scale(1.05);
}

.menu-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  padding: 24px;
  color: white;
}

.menu-card-overlay h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.menu-card-overlay .price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #5a8aa0;
}

.menu-button-container {
  text-align: center;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #e8e2db;
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-content.large {
  max-width: 900px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  color: #92400e;
  font-size: 1.5rem;
  font-weight: bold;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #374151;
}

.image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  /* background-image: url(https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=320&h=400&fit=crop); */
  transition: transform 0.5s ease;
  cursor: pointer;
}

.who-we-are-img-1 {
  background-image: url("assets/who-we-are-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.who-we-are-img-2 {
  background-image: url("assets/who-we-are-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.who-we-are-img-3 {
  background-image: url("assets/who-we-are-3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.who-we-are-img-4 {
  background-image: url("assets/who-we-are-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.innovation {
  background-image: url("assets/innovation.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-card:hover {
  transform: scale(1.05);
}

.image-card.small {
  height: 192px;
  flex: 1;
}

.image-card.large {
  height: 256px;
  flex: 2;
}

.image-card:hover {
  transform: scale(1.05);
}

.image-card.tall {
  height: 192px;
}

.image-card.short {
  height: 128px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .image-row {
    flex-direction: column;
  }

  .image-card.large,
  .image-card.small {
    height: 200px;
  }
}

.who-we-are {
  padding: 80px 0;
  background: linear-gradient(to bottom, var(--amber-50), var(--stone-100));
}

.who-we-are-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-black {
  background: #ccaa8f;
}

.section-white {
  background: #e8e2db;
}

.who-we-are-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

@media (max-width: 1024px) {
  .who-we-are-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 800px) {
  .who-we-are-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-bottom: 12px !important;
  }
  .image-row {
    flex-direction: row !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }
  .image-card.large,
  .image-card.small {
    height: 90px !important;
    min-height: 60px !important;
    max-height: 100px !important;
  }
  .image-card.tall {
    height: 80px !important;
  }
  .image-card.short {
    height: 56px !important;
  }
  .who-we-are-img-1,
  .who-we-are-img-2,
  .who-we-are-img-3,
  .who-we-are-img-4 {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }
}

.content-text p {
  font-size: 1.125rem;
  color: var(--amber-800);
  margin-bottom: 24px;
  line-height: 1.7;
}

.image-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.image-row:last-child {
  margin-bottom: 0;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--amber-200), var(--amber-300));
  position: relative;
}

.image-placeholder::after {
  content: "📷";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.5;
}

.image-overlay h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.image-overlay p {
  font-size: 0.875rem;
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 32px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
  opacity: 0;
}

.stat-card:hover {
  transform: scale(1.05);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-900);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--amber-700);
  font-weight: 500;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

.animate-delay-600 {
  animation-delay: 0.6s;
}

.animate-delay-800 {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleX {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-slide-in-scale {
  animation: slideInScale 0.8s ease-out forwards;
}

.animate-delay-1000 {
  animation-delay: 1s;
}

.animate-delay-1200 {
  animation-delay: 1.2s;
}

.animate-delay-1400 {
  animation-delay: 1.4s;
}

.our-story-1 {
  position: relative;
  width: 100%;
  height: 500px; /* set the height you want */
  overflow: hidden;
}

.our-story-1 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* like background-size: cover */
  z-index: -1;
  pointer-events: none; /* prevent video from capturing clicks */
}

.our-story-1 .content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
  padding: 2rem;
}

.our-story-2 {
  background-image: url("assets/catering-our-story-3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.our-story-3 {
  background-image: url("assets/catering-our-story-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.our-story-4 {
  background-image: url("assets/catering.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
