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

body {
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  background-color: #f5deb3;
  line-height: 1.4;
}

/* Header Styles */
.header {
  background-color: #4f1917;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-image {
  height: 4rem;
  width: auto;
}

.navigation {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
  gap: 0.5rem;
}

.nav-item:hover {
  opacity: 0.8;
}

.nav-icon {
  width: 3.625rem;
  height: 3.125rem;
  object-fit: contain;
}

/* Main Content */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero-section {
  margin: 2rem 0;
}

.hero-image-container {
  position: relative;
  border-radius: 45px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1369/770;
  object-fit: cover;
}

.hero-title {
  position: absolute;
  bottom: 8%;
  left: 6%;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Description Section */
.description-section {
  margin: 2rem 0 4rem 0;
}

.description-container {
  background-color: rgba(99, 87, 63, 0.5);
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 1200px;
  margin: 0 auto;
}

.description-text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #000;
  text-align: justify;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #000;
  color: white;
  padding: 3rem 0;
  margin-top: auto;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  width: 400px;
  height: auto;
  max-width: 100%;
}

.footer-content {
  display: flex;
  gap: 4rem;
  margin: 1rem 0;
}

.contact-section,
.address-section {
  flex: 1;
}

.footer-heading {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-info,
.address-info {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.copyright {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .logo {
    height: 60px;
  }

  .navigation {
    gap: 2rem;
  }

  .nav-item {
    font-size: 1.25rem;
  }

  .nav-icon {
    width: 40px;
    height: 34px;
  }

  .main-content {
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
    bottom: 6%;
    left: 4%;
  }

  .description-container {
    padding: 2rem;
  }

  .description-text {
    font-size: 1.25rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-heading {
    font-size: 2rem;
  }

  .contact-info,
  .address-info {
    font-size: 1.25rem;
  }

  .copyright {
    font-size: 1.25rem;
  }

  .footer-logo {
    width: 300px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }

  .logo {
    height: 50px;
  }

  .navigation {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-item {
    font-size: 1rem;
    gap: 0.25rem;
  }

  .nav-icon {
    width: 32px;
    height: 28px;
  }

  .main-content {
    padding: 0 1rem;
  }

  .hero-section {
    margin: 1rem 0;
  }

  .hero-title {
    font-size: 2rem;
    bottom: 5%;
    left: 5%;
  }

  .description-container {
    padding: 1.5rem;
    margin: 1rem 0;
  }

  .description-text {
    font-size: 1.1rem;
    text-align: left;
  }

  .footer {
    padding: 2rem 0;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-heading {
    font-size: 1.75rem;
  }

  .contact-info,
  .address-info {
    font-size: 1.1rem;
  }

  .copyright {
    font-size: 1.1rem;
    text-align: center;
  }

  .footer-logo {
    width: 250px;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .header-container {
    gap: 1rem;
  }

  .logo {
    height: 40px;
  }

  .navigation {
    gap: 1rem;
  }

  .nav-item {
    font-size: 0.9rem;
  }

  .nav-icon {
    width: 28px;
    height: 24px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .description-container {
    padding: 1rem;
  }

  .description-text {
    font-size: 1rem;
  }

  .footer-heading {
    font-size: 1.5rem;
  }

  .contact-info,
  .address-info {
    font-size: 1rem;
  }

  .copyright {
    font-size: 1rem;
  }

  .footer-logo {
    width: 200px;
  }
}