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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #5C4A3A;
  background-color: #FAF8F3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: #3E3226;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 2px 20px rgba(92, 74, 58, 0.08);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  min-height: 70px;
}

.logo-text {
  font-family: 'Crimson Pro', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #8B7355;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: #5C4A3A;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C9A96E;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #8B7355;
}

.nav-link:hover::after {
  width: 100%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #FAF8F3 0%, #F5F1E8 100%);
  position: relative;
}

.hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.logo-placeholder {
  width: 140px;
  height: 140px;
  margin: 0 auto 30px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(201, 169, 110, 0.2));
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: #3E3226;
  letter-spacing: 1px;
}

.hero-tagline {
  font-size: 1.3rem;
  color: #8B7355;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #6B5B4D;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background-color: #C9A96E;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background-color: #B89860;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 169, 110, 0.4);
}

.section {
  padding: 100px 20px;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 50px;
  color: #3E3226;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #C9A96E, #E8DCC8);
  border-radius: 2px;
}

.section-intro {
  text-align: center;
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #6B5B4D;
  line-height: 1.8;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.text-content {
  max-width: 600px;
}

.text-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.9;
  color: #5C4A3A;
}

.image-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.image-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.grid-image, .featured-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(92, 74, 58, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.grid-image:hover, .featured-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(92, 74, 58, 0.18);
}

.image-single {
  width: 100%;
}

.featured-image {
  height: 450px;
}

.about-section {
  background-color: #FFFFFF;
}

.environment-section {
  background: linear-gradient(180deg, #FAF8F3 0%, #F5F1E8 100%);
}

.products-section {
  background-color: #FFFFFF;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.product-card {
  background-color: #FAF8F3;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(92, 74, 58, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(92, 74, 58, 0.15);
  background-color: #F5F1E8;
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  filter: grayscale(20%);
}

.product-card h3 {
  font-size: 1.15rem;
  color: #5C4A3A;
  font-weight: 500;
  line-height: 1.4;
}

.enjoy-section {
  background: linear-gradient(180deg, #F5F1E8 0%, #FAF8F3 100%);
}

.footer {
  background-color: #3E3226;
  color: #E8DCC8;
  padding: 80px 20px 30px;
}

.footer-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.footer-title {
  font-size: 2.2rem;
  color: #E8DCC8;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #D4C5B0;
}

.footer-contact {
  margin-top: 30px;
}

.footer-contact p {
  margin-bottom: 10px;
  color: #C9A96E;
  font-size: 1rem;
}

.contact-info {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.contact-info a {
  color: #C9A96E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #E8DCC8;
  text-decoration: underline;
}

.contact-social {
  font-size: 1.05rem;
  font-weight: 400;
}

.contact-social a {
  color: #C9A96E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-social a:hover {
  color: #E8DCC8;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(232, 220, 200, 0.2);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #B8A68C;
}

@media (min-width: 768px) {
  .content-layout {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .content-layout.reverse {
    direction: rtl;
  }

  .content-layout.reverse > * {
    direction: ltr;
  }

  .nav-links {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .nav-links {
    gap: 20px;
  }

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

  .hero {
    min-height: 90vh;
    padding: 100px 20px 60px;
  }

  .logo-placeholder {
    width: 110px;
    height: 110px;
  }

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

  .hero-tagline {
    font-size: 1.1rem;
  }

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

  .section {
    padding: 70px 20px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .image-grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-image, .featured-image {
    height: 280px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 60px 20px 25px;
  }

  .footer-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3.2rem;
  }

  .grid-image {
    height: 400px;
  }

  .featured-image {
    height: 500px;
  }
}
