/* Import Inter from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Apply to the entire project */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif; /* This makes all text use the same font */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base styles for standard elements to ensure consistency */
body {
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900; /* Keeps your headings bold and punchy like the brand */
  line-height: 1.1;
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: 'Inter', sans-serif;
}

button, input, textarea, select {
  font-family: 'Inter', sans-serif; /* Prevents browsers from using default fonts in forms */
}

.about-hero {
  position: relative;
  height: 100vh;
  background-image: url('{% static 'images/aboutbg.png' %}');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}


.about-hero .overlay {
  background: rgba(0, 0, 0, 0.35); /* dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.about-hero .tagline {
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-hero h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 800px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 32px;
  }
}














.about-story {
  padding: 60px 20px;
  background-color: #f5efec;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Image */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Text */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #2c1a14;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #5a4a42;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .about-text h2 {
    font-size: 32px;
  }
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    padding-top: 20px;
  }

  .about-text h2 {
    font-size: 28px;
  }
}
















.mission-vision {
  background-color: #fef6f3;
  padding: 80px 10%;
  font-family: 'Inter', sans-serif;
}

.mission-container {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.mv-card {
  flex: 1;
  padding: 50px;
  border-radius: 24px;
  position: relative; /* For the background icon */
  overflow: hidden;   /* Keeps the icon inside the corners */
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* White Card Specifics */
.white-card {
  background-color: #ffffff;
  color: #2d2d2d;
}

.white-card .mv-label { color: #a32a2a; }
.white-card h3 { color: #1a1a1a; }
.white-card p { color: #666; }

/* Red Card Specifics */
.red-card {
  background-color: #bc000d; /* Deep red from the image */
  color: #ffffff;
}

.red-card .mv-label { color: rgba(255,255,255,0.8); }
.red-card h3 { color: #ffffff; }
.red-card p { color: rgba(255,255,255,0.9); }

/* Typography */
.mv-label {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}

.mv-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.mv-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Background Icons (Watermarks) */
.mv-icon {
  position: absolute;
  top: 10px;
  right: -20px;
  width: 150px;
  height: 150px;
  opacity: 0.1; /* Makes it a subtle watermark */
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .mission-container {
    flex-direction: column; /* Stack vertically on tablets/mobile */
    gap: 20px;
  }
  
  .mv-card {
    padding: 40px;
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .mission-vision {
    padding: 60px 20px;
  }

  .mv-card h3 {
    font-size: 1.5rem;
  }
}











.culinary-path {
  padding: 80px 20px;
  background: #f5efec;
  text-align: center;
}

.section-title {
  font-size: 42px;
  margin-bottom: 50px;
  color: #2c1a14;
}

/* Container */
.culinary-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each item */
.culinary-item {
  flex: 1;
  max-width: 350px;
}

/* Circular Image */
.circle-img {
  width: 280px;
  height: 280px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #e8d8d2;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.culinary-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2c1a14;
}

.culinary-item p {
  font-size: 15px;
  color: #5a4a42;
  line-height: 1.6;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .circle-img {
    width: 220px;
    height: 220px;
  }

  .section-title {
    font-size: 34px;
  }
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .culinary-container {
    flex-direction: column;
    align-items: center;
  }

  .culinary-item {
    max-width: 100%;
  }

  .circle-img {
    width: 200px;
    height: 200px;
  }

  .section-title {
    font-size: 28px;
  }
}
/* Move only the middle item down */
.culinary-item:nth-child(2) {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .culinary-item:nth-child(2) {
    margin-top: 0;
  }
}


.culinary-item:nth-child(1) {
  margin-top: 0;
}

.culinary-item:nth-child(2) {
  margin-top: 60px;
}

.culinary-item:nth-child(3) {
  margin-top: 20px;
}











/* Initial hidden state */
.culinary-item {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* When visible */
.culinary-item.show {
  opacity: 1;
  transform: translateY(0);
}

.culinary-item:nth-child(1) {
  transition-delay: 0.2s;
}

.culinary-item:nth-child(2) {
  transition-delay: 0.4s;
}

.culinary-item:nth-child(3) {
  transition-delay: 0.6s;
}














.testimonial {
  background: #e6c1b8;
  padding: 80px 20px;
}

.testimonial-card {
  max-width: 1100px;
  margin: auto;
  background: #f4f4f4;
  border-radius: 16px;
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Image */
.testimonial-image {
  flex: 0 0 220px;
}

.testimonial-image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #e8d8d2;
}

/* Content */
.testimonial-content {
  flex: 1;
}

.quote-icon {
  font-size: 50px;
  color: #a30000;
  display: block;
  margin-bottom: 10px;
}

.quote-text {
  font-size: 20px;
  line-height: 1.6;
  color: #2c1a14;
  margin-bottom: 20px;
}

.testimonial-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.role {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .testimonial-card {
    padding: 40px;
    gap: 30px;
  }

  .quote-text {
    font-size: 18px;
  }
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .testimonial-image {
    flex: none;
  }

  .testimonial-image img {
    width: 180px;
    height: 180px;
  }

  .quote-text {
    font-size: 16px;
  }
}