:root {
  --brown: #6b4f3a;
  --light-warm: #f2ebe6;
  --soft-warm: #faf7f4;
  --text: #3b2f26;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  color: var(--text);
  line-height: 1.7;
  background: white;
}

/* HERO */

.hero {
  background: #f2ebe6;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* stack logo + text vertically */
  text-align: center;     /* center the text */
  gap: 25px;              /* space between logo and text */
}

.hero-flex {
  display: flex;
  flex-direction: column; /* stack items vertically */
  align-items: center;    /* center horizontally */
  justify-content: center;
  gap: 20px;              /* spacing between logo and text */
}

.logo {
  width: 500px;
  height: auto;
  margin-bottom: 15px;    /* optional spacing below logo */
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.tagline {
  font-size: 1.4rem;
  color: #5a4a3f;
  margin-bottom: 12px;
}

.notice {
  color: #6b4f3a;
  font-weight: 600;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .logo {
    width: 100px;
    margin-bottom: 10px;
  }
}
/* SECTIONS */
.section {
  padding: 70px 20px;
  max-width: 960px;
  margin: auto;
}

.section.light {
  background: var(--soft-warm);
}

.section h2 {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 600;
}
.about-us {
  padding: 100px 20px;
  background: #faf7f4;
}

.about-container {
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(59, 47, 38, 0.2);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.about-text .subtitle {
  font-style: italic;
  margin-bottom: 30px;
  color: #5a4a3f;
}

.about-text p {
  margin-bottom: 1.7em;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #3b2f26;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
  }
  .about-text h2 {
    font-size: 2.2rem;
  }
}

.subtitle {
  text-align: center;
  margin-bottom: 35px;
  font-style: italic;
  color: #6a5a4f;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.story-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(59,47,38,0.2);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}
.service-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(59,47,38,0.08);
}

/* FORM */
.contact-form {
  display: grid;
  gap: 15px;
  max-width: 520px;
  margin: 0 auto 40px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #d6cfc9;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brown);
}

.contact-form button {
  background: var(--brown);
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* CONTACT DETAILS */
.contact-details {
  text-align: center;
}

/* FOOTER */
footer {
  background: #6b4f3a;
  color: #f9f6f3;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.95rem;
}

/* 📱 MOBILE */

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 55px 20px;
  }
}
