/* === HEADER SECTION (Dark Beige Version) === */
.site-header {
  background-color: #e3d5b8; /* darker beige */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Left side: Logo + Text */
.brand-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 70px;
  height: auto;
}

/* Text beside logo (stacked) */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-line1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #2a1f12; /* dark brown */
  letter-spacing: 1px;
}

.brand-line2 {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #4f3c1f; /* medium brown tone */
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Right side: Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: #2b2012; /* warm dark brown text */
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c8a978; /* golden accent */
  transition: 0.3s;
}

nav a:hover {
  color: #8b6b3f; /* soft gold-brown hover */
}

nav a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #2b2012;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background-color: #e3d5b8;
    position: absolute;
    top: 80px;
    right: 20px;
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    padding: 1rem;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .brand-line1 {
    font-size: 1.8rem;
  }

  .brand-line2 {
    font-size: 1rem;
  }
}

/* === HERO SECTION === */
.hero {
  position: relative;
  width: 100%;
  height: 90vh; /* full-screen feel, adjust if needed */
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes image fill without distortion */
  object-position: center;
  display: block;
  filter: brightness(75%); /* darkens a bit for text visibility */
}

/* Overlay text styling */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f5f2e9; /* beige text */
  background: rgba(0, 0, 0, 0.3); /* soft overlay for contrast */
  padding: 2rem 3rem;
  border-radius: 12px;
  backdrop-filter: blur(3px);
}

.hero-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-text p {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* === Responsive adjustments === */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
  }

  .hero-text {
    padding: 1.5rem;
  }

  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

.mission-section {
  background-color: #4f3c1f; /* warm dark brown for premium feel */
  padding: 8rem 5%;
  text-align: center;
  position: relative;
}

.mission-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; /* bigger text */
  font-weight: 700;
  color: #e8e2d8; /* very light beige heading */
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

/* Decorative line under heading */
.mission-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #ffffff; /* white line for contrast */
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

.mission-section p {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem; /* bigger paragraph */
  font-style: italic;
  color: #ffffff; /* white text */
  line-height: 1.8;
  max-width: 1000px; /* limits line length for readability */
  margin: 0 auto; /* centers paragraph */
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .mission-section h2 {
    font-size: 2.5rem;
  }

  .mission-section p {
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 0 1rem;
  }

  .mission-section h2::after {
    width: 60px;
  }
}

@media (max-width: 600px) {
  .mission-section h2 {
    font-size: 2rem;
  }

  .mission-section p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .mission-section h2::after {
    width: 40px;
  }
}


/* === ABOUT SECTION (White Background, Text Left, Image Right, Black Font) === */
.about-section {
  background-color: #ffffff; /* clean white background */
  padding: 5rem 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
}

/* Left: Text */
.about-text {
  flex: 1;
  color: #000000; /* black text */
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000000; /* black */
}

.about-text p {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #000000; /* black */
}

/* Right: Image */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* === Responsive Design === */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column; /* stack vertically on mobile */
    text-align: center;
  }

  .about-image {
    order: -1; /* move image to top for mobile */
  }

  .about-image img {
    width: 100%;
    max-width: 500px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}

/* === ABOUT SECTION (White Background, Text Left, Image Right, Black Font) === */
.about-section {
  background-color: #ffffff; /* clean white background */
  padding: 5rem 8%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
}

/* Left: Text */
.about-text {
  flex: 1;
  color: #000000; /* black text */
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000000; /* black */
}

.about-text p {
  font-family: 'Lato', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #000000; /* black */
}

/* Right: Image */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* === Responsive Design === */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column; /* stack vertically on mobile */
    text-align: center;
  }

  .about-image {
    order: -1; /* move image to top for mobile */
  }

  .about-image img {
    width: 100%;
    max-width: 500px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}

/* Offerings Section */
.offerings-section {
  background-color: #ffffff;
  padding: 6rem 8%;
  text-align: center;
}

.offerings-header {
  margin-bottom: 3rem;
}

.offerings-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 0.8rem;
}

.offerings-header p {
  font-family: 'Lato', sans-serif;
  color: #333;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Offerings Grid Layout */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row on large screens */
  gap: 1.2rem;
  margin-top: 3rem;
}

/* Each Offering Rectangle */
.offering-item {
  border: 1.5px solid #000;
  background-color: #fff;
  color: #000;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: none;
  padding: 1.5rem 0.8rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100px; /* smaller uniform height */
}

/* Hover effect */
.offering-item:hover {
  background-color: #f4f0e6;
  transform: translateY(-5px);
  border-color: #b89f6e;
}

/* Tablet (2 per row) */
@media (max-width: 992px) {
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 per row) */
@media (max-width: 600px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  .offering-item {
    height: 90px;
    font-size: 0.9rem;
  }
}

.contact-section {
  background-color: #fff;
  padding: 6rem 8%;
  scroll-margin-top: 80px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch; /* ensures all columns same height */
}

.contact-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 320px; /* same height for all columns */
}

/* Side Columns (Images) */
.contact-side {
  flex: 1; /* equal width */
}

/* Middle Column: Slightly Wider */
.contact-middle {
  flex: 1.4; /* slightly wider */
  text-align: left;
  padding: 0 1rem;
  justify-content: center; /* vertically center content */
}

/* Images */
.contact-image {
  width: 260px; /* same width for side images */
  height: 100%; /* fill column height */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  border: 2px solid #e3d7c0;
}

/* Middle Column Text */
.contact-details h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-details .intro-text {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.contact-info a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #b79f6e;
  transition: 0.3s ease;
}

.contact-info a:hover {
  color: #b79f6e;
  border-color: #b79f6e;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
  }

  .contact-column {
    height: auto;
    margin-bottom: 2rem;
  }

  .contact-image {
    width: 220px;
    height: 260px;
  }

  .contact-middle {
    text-align: center;
    padding: 0;
  }
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem; /* space between header and columns */
}

.contact-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem; /* space between header and columns */
  position: relative;
}

.contact-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  display: inline-block;
  padding-bottom: 0.5rem;
  position: relative;
}

.contact-header::after {
  content: '';
  display: block;
  width: 80px; /* line width */
  height: 3px; /* line thickness */
  background-color: #b79f6e; /* subtle beige/gold tone */
  margin: 0.5rem auto 0 auto; /* spacing below heading */
  border-radius: 2px;
}


/* === Smooth Scrolling for Navigation Links === */
html {
  scroll-behavior: smooth;
}



