/* General Body Styling */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f1ee;
  color: #3e3e3e;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Sticky Header */
.site-header {
  background-color: #5c4432;
  color: #fff;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  color: #fdf6ef;
}

.logo:hover {
  color: #ffddbb;
}

.logo-3d {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-nav a {
  margin-left: 25px;
  color: #fdf6ef;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #ffddbb;
}

/* Hero Video Background */
.hero-video {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional: Overlay on video */
.hero-overlay {
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  color: #fff;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Transparent Scrollable Content Container */
.content-sections {
  position: relative;
  z-index: 1;
  margin-top: 100vh;
  background-color: rgba(244, 241, 238, 0.9); /* Transparent Earthy tone */
  backdrop-filter: blur(2px);
  padding: 60px 20px;
}

/* Section Titles */
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #6b4c3b;
}

/* Image Grid Layout */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

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

/* Scroll Animation */
section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  background-color: #3a2f2b;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin-top: 80px;
}

.footer-links {
  margin-bottom: 20px;
}
.footer-links a {
  margin: 0 15px;
  color: #fdf6ef;
  text-decoration: none;
  font-size: 1rem;
}
.footer-links a:hover {
  color: #ffddbb;
}
footer button {
  background-color: #8a5c34;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}
footer button:hover {
  background-color: #b77c4a;
}
/* Content overlay container on hero */
.content-sections {
  position: relative;
  margin-top: -150px;
  z-index: 2;
  padding: 60px 20px;
}

/* Transparent section blocks */
.content-sections section {
  background-color: rgba(255, 255, 255, 0.8);
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  max-width: 1000px;
}

/* Footer Styling */
footer {
  background-color: #3a2f2b;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

footer .footer-links {
  margin-bottom: 20px;
}

footer .footer-links a {
  color: #ffddbb;
  margin: 0 15px;
  font-weight: 500;
  text-decoration: none;
}

footer .footer-links a:hover {
  text-decoration: underline;
}

footer button {
  padding: 10px 20px;
  border: none;
  background-color: #8a5c34;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

footer button:hover {
  background-color: #a86d3e;
}

/* Handle missing image fallback gracefully */
.image-grid img {
  background-color: #eee;
  min-height: 150px;
}

