/* Fonts */
body {
  margin: 0;
  font-family: 'Hanken Grotesk', sans-serif;
  background-color: #fffaf5;
  color: #3b1f0f;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  margin: 0;
}

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: #6b2c15;
  color: #fff;
  padding: 20px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff5740;
}

/* Why Choose Us */
.why-choose-us {
  background-color: #fffaf5;
  padding: 80px 20px;
}

.why-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.why-text {
  flex: 1 1 450px;
}

.why-text h4 {
  color: #8b2e1a;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

.why-text h2 {
  font-family: 'Fraunces', serif;
  color: #3b1f0f;
  font-size: 36px;
  margin-bottom: 20px;
}

.why-text p {
  font-size: 16px;
  color: #5a4032;
  line-height: 1.6;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #3b1f0f;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #a2331a;
}

.why-image {
  flex: 1 1 400px;
  text-align: center;
}

.why-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.feature-box {
  background: #fff;
  border: 1px solid #e6d5c3;
  padding: 30px;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box img {
  width: 60px;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #8b2e1a;
}

.feature-box p {
  font-size: 15px;
  color: #5c4033;
}
/* === Franchise Section === */
.franchise {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
}

.franchise .subtext {
  color: #8b2e1a;
  font-size: 16px;
  margin-bottom: 10px;
}

.franchise h2 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  color: #2b120b;
  margin-bottom: 20px;
}

.franchise-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #8b2e1a;
  color: white;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Hanken Grotesk', sans-serif;
  transition: background-color 0.3s;
}

.franchise-btn:hover {
  background-color: #a8412b;
}

/* === Footer Styles === */
.footer {
  background-color: #3b1f0f;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Hanken Grotesk', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #f9c9a3;
}

.footer-col p,
.footer-col ul {
  font-size: 14px;
  line-height: 1.6;
  color: #eee;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #eee;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #6b3d2d;
  padding-top: 10px;
  font-size: 13px;
  color: #ccc;
}
/* Contact Us Section */
.contact-us {
  background-color: #fdf4f0;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Hanken Grotesk', sans-serif;
}

.contact-us h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  color: #521d06;
  margin-bottom: 10px;
}

.contact-us p {
  color: #6d4c41;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #d7ccc8;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Hanken Grotesk', sans-serif;
}

.contact-form button {
  background-color: #8b0000;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.contact-form button:hover {
  background-color: #a52a2a;
}
.our-story {
  background-color: #fdf8f4;
  padding: 60px 20px;
  text-align: center;
}

.our-story .container {
  max-width: 1000px;
  margin: 0 auto;
}

.our-story h2 {
  font-size: 36px;
  color: #5e3c1f;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.our-story p {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.founder-section {
  background-color: #fff8f0;
  padding: 60px 20px;
  text-align: center;
}

.founder-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  color: #5e3c1f;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
}

.founder-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.founder-image img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.founder-info {
  max-width: 600px;
  text-align: left;
}

.founder-name {
  font-size: 28px;
  color: #3a2615;
  margin-bottom: 15px;
  font-weight: bold;
}

.founder-about {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}
.support {
  text-align: center;
  background-color: #fff8f2;
  padding: 60px 20px;
  font-family: 'Hanken Grotesk', sans-serif;
}

.support h2 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  color: #4a1d0d; /* rich brown tone */
  margin-bottom: 40px;
}

.support-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.stat-item {
  max-width: 200px;
  text-align: center;
}

.stat-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.number {
  font-size: 28px;
  font-weight: 700;
  color: #8b2c16; /* deep red tone */
}

.label {
  font-size: 18px;
  color: #4a1d0d;
}
.logo img {
  height: 60px; /* Adjust size as needed */
  width: auto;
}
.hero {
  background-image: url('home.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Fraunces', serif;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4); /* slight dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-family: 'Hanken Grotesk', sans-serif;
}

.cta-btn {
  background-color: #8B3A2D;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #a14b3a;
}
.welcome-section {
  background-color: #fff8f2;
  padding: 80px 20px;
}

.welcome-container {
  max-width: 1000px;
  margin: 0 auto;
}

.welcome-heading {
  text-align: center;
  font-size: 2.8rem;
  color: #4b1e0e;
  font-weight: 700;
  margin-bottom: 50px;
}

.welcome-content {
  text-align: left;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

.welcome-content p {
  margin-bottom: 20px;
}
.our-outlet {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.our-outlet .section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Fraunces', serif;
}

.slider {
  width: 100%;
  max-width: 600px; /* optional, for a fixed max width */
  height: 300px; /* fixed height */
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 100%;
  display: block;
  border-radius: 10px;
}
.container-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html {
  scroll-behavior: smooth;
}
