:root {
  --primary: #5c7457;
  --secondary: #d4b886;
  --dark: #1a1a1a;
  --light: #f5f2eb;
  --text-main: #2b2b2b;
  --text-light: #666;
  --bg-section: #e8e4d9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-main);
  background: var(--light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(245, 242, 235, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a {
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.6);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Standard Sections */
.section {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.bg-alt {
  background: var(--bg-section);
}

.flex-row {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.flex-col {
  flex: 1;
}

.flex-col img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.flex-col img:hover {
  transform: translateY(-5px);
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

.quote-box {
  background: white;
  padding: 2rem;
  border-left: 5px solid var(--primary);
  border-radius: 8px;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Cards Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card h3 {
  color: var(--primary);
}

/* Voices Section */
.voices {
  background: var(--dark);
  color: var(--light);
  padding: 6rem 5%;
  text-align: center;
}

.voices h2 {
  color: var(--secondary);
}

.testimonial {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 2rem auto;
  font-style: italic;
  font-weight: 300;
}

/* Interactive */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #475a43;
  transform: scale(1.05);
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 4rem 5%;
}

footer .footer-msg {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--secondary);
}

footer .links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

footer .links a {
  color: #ccc;
  transition: color 0.3s;
  font-size: 0.9rem;
}

footer .links a:hover {
  color: white;
}

@media (max-width: 768px) {
  .flex-row {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 3rem;
  }
}
