/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

/* Navigation Bar */
.navbar {
  background-color: #1a1a1a;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.brand-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  transition: width 0.3s ease;
}

.brand-name:hover::after {
  width: 100%;
}

.logo-image {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #d4af37;
}

/* Intro Section with Animated Text */
.intro-section {
  background-color: #ffffff;
  padding: 200px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-text-wrapper {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.intro-line {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8rem;
  color: #1a1a1a;
  background: linear-gradient(135deg, #1a1a1a 0%, #667eea 50%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-line:last-child {
  margin-bottom: 0;
}

.intro-disclaimer {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #666;
  max-width: 1200px;
  margin: 8rem auto 0;
  padding: 2rem;
  font-style: italic;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}

/* Fade-in Animation */
.fade-in-text {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in-text.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Products Section */
.products-section {
  padding: 60px 20px;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-image-container {
  position: relative;
  width: 100%;
  padding-top: 133.33%; /* Mobile ratio (3:4 aspect ratio) */
  overflow: hidden;
  background-color: #f0f0f0;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-image.hidden {
  opacity: 0;
}

.image-nav-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.image-nav-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  pointer-events: all;
}

.image-nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.image-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.image-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.3s;
}

.indicator-dot.active {
  background-color: rgba(255, 255, 255, 1);
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.product-description {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.product-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 1rem;
  margin-top: auto;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s, transform 0.2s;
  margin-top: 0;
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.about-text {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: #666;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  background-color: #fff;
}

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

.contact-info p {
  margin: 0.5rem 0;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .intro-section {
    padding: 120px 20px;
    min-height: 90vh;
  }

  .intro-line {
    font-size: 2.5rem;
    margin-bottom: 6rem;
  }

  .intro-disclaimer {
    font-size: 2.2rem;
    margin-top: 6rem;
    padding: 1.5rem;
    max-width: 1000px;
  }

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

  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .brand-name {
    font-size: 1.3rem;
    letter-spacing: 1px;
    padding: 0.3rem 0.5rem;
  }

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

  .product-name {
    font-size: 1.3rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .whatsapp-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }

  .whatsapp-btn svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .intro-section {
    padding: 100px 20px;
    min-height: 80vh;
  }

  .intro-line {
    font-size: 1.8rem;
    margin-bottom: 5rem;
  }

  .intro-disclaimer {
    font-size: 1.9rem;
    margin-top: 5rem;
    padding: 1rem;
  }

  .products-section,
  .about-section,
  .contact-section {
    padding: 40px 20px;
  }
}
