@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background: #fafafa;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.nav {
  display: flex;
  justify-content: center;
  background: #1f3521;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  text-align: center;
}

.nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav a:hover {
  opacity: 0.8;
}

.nav a.active {
  border-bottom: 2px solid #25D366;
}

.hero {
  height: 90vh;
  background: url('hero-bg.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content .logo {
  width: 800px;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn,
.btn-small {
  display: inline-block;
  background: #1f3521;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn {
  margin: 0 1rem;
  padding: 0.75rem 1.5rem;
}

.btn:hover {
  background: #2b5131;
}

.btn-whatsapp {
  background: #25D366;
}

.btn-whatsapp:hover {
  background: #1da851;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin: 1rem 0 0.5rem;
  color: #1f3521;
}

.card p {
  margin-bottom: 1rem;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1f3521;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

.logo-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container .gif-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.logo-container .logo {
  position: relative;
  z-index: 2;
  width: 80%;
  height: auto;
}

.split-layout {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 3rem;
  flex-wrap: wrap;
}

.split-image img {
  max-width: 1000px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.split-text {
  max-width: 600px;
}

.split-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1f3521;
}

.split-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.story-section {
  background: linear-gradient(135deg, #f4f9f5, #e8f0eb);
  height: calc(100vh - 80px);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.story-section .split-image img {
  max-width: 450px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.story-section .split-text {
  max-width: 600px;
}

.story-section .split-text h2 {
  font-size: 2.8rem;
  color: #1f3521;
  margin-bottom: 1rem;
}

.story-section .split-text p {
  font-size: 1.1rem;
  color: #2b3e2b;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.story-section .split-text strong {
  color: #153019;
}

.story-section .split-text em {
  color: #38654a;
  font-style: normal;
  font-weight: 500;
}

.gif-large {
  width: 200%;
  max-width: 6000px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  display: block;
}

.glide {
  margin-top: 20px;
}

.glide__arrow {
  background: #2f4f2f;
  color: white;
  border: none;
  padding: 10px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
}

.glide__arrow:hover {
  background: #1e3526;
}

.whatsapp-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 1rem;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.whatsapp-floating:hover {
  transform: translateY(-2px);
}

footer {
  background: #1f3521;
  color: #fff;
  text-align: center;
  padding: 2rem;
  margin-top: 2rem;
}

/* Ensure form elements inherit font styles */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Placeholder styling fix */
textarea::placeholder,
input::placeholder {
  font-family: inherit;
  font-size: 1rem;
  color: #666;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .nav ul {
    gap: 1rem;
  }

  .split-layout {
    flex-direction: column;
    height: auto;
    padding: 2rem 1rem;
  }

  .split-text,
  .split-image {
    text-align: center;
  }
}
html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}
