* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #faf7f1;
  color: #2f2f2f;
  line-height: 1.6;
}

.navbar {
  background-color: #e0d4b7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #4a3d2f;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #4a3d2f;
  font-weight: 500;
}

.hero {
  background-color: #fff8e7;
  text-align: center;
  padding: 0;
  animation: fadeIn 2s ease-in;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-image {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 2rem;
  background-color: rgba(255, 248, 231, 0.9);
}

.hero h1 {
  font-size: 2.5rem;
  color: #3c2e21;
  margin-bottom: 1rem;
}

.hero p {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #bfa77f;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.cta:hover {
  background-color: #a9916b;
  transform: scale(1.05);
}

.section {
  padding: 3rem 2rem;
  max-width: 800px;
  margin: auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3c2e21;
}

.values ul {
  list-style: none;
  padding-left: 0;
}

.values li {
  margin-bottom: 0.5rem;
}

.contact .whatsapp-link {
  display: inline-block;
  margin-top: 1rem;
  background-color: #25d366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.contact .whatsapp-link:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #e0d4b7;
  font-size: 0.9rem;
}

.video-section {
  padding: 4rem 2rem;
  background-color: #fff8e7;
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.story {
  background-color: #fff8e7;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.story-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.story-question {
  font-size: 1.3rem !important;
  font-weight: 600;
  color: #4a3d2f;
  text-align: center;
  margin: 2rem 0 !important;
  font-style: italic;
}

.contact-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-text {
  flex: 1;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-image {
    width: 150px;
    height: 150px;
  }
} 