/* ===== Reset & Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

/* Container */
.container {
  padding: 10px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 10px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #222;
}

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

img {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  max-width: 100%;
  display: block;
}

/* Button Reuse */
.button {
  display: inline-block;
  background-color: #5c3e10;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #5c3e10;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up {
  animation: fadeInUp 1s ease forwards;
}

/* Z-index base */
header,
nav,
section,
footer {
  background: white;
  position: initial;
  z-index: inherit;
}

.hero-text .line {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-text .line.animate {
  color: #f8f9fa;
  opacity: 1;
  transform: translateY(0);
}
