:root {
  --primary: #e6da00;
  --secondary: #fef9e7;
  --text-color: #2c3e50;
  --accent: #e74c3c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Banner */
.banner {
  background-color: var(--primary);
  color: var(--text-color);
  padding: 0.5rem 0;
  text-align: center;
  font-weight: bold;
}

.banner marquee {
  font-size: 0.9rem;
}

/* Header - Improved */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--secondary);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  max-width: 100%;
}

.logo {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--accent);
  flex-shrink: 0;
}

.menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex: 1;
  justify-content: flex-end;
  padding-right: 1rem;
}

.menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.menu a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.cart-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.cart-icon:hover {
  transform: scale(1.1);
}

/* Enhanced Slideshow with Navigation */
.slideshow {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Navigation Arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slide-arrow-prev {
  left: 20px;
}

.slide-arrow-next {
  right: 20px;
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Main Content */
main {
  padding: 2rem 0;
}

h1, h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--accent);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
}

/* Products Section */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product {
  background-color: var(--secondary);
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow:hidden;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.product img {
  width: 100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.product h3 {
  margin-bottom: 1rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button {
  display: inline-block;
  width: 100%;
  background-color: var(--primary);
  color: var(--text-color);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: auto;
}

.button:hover {
  background-color: #e6da00;
  transform: scale(1.05);
}

/* About Page Specific Styles */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: justify;
}

.timeline {
  margin: 2rem 0;
  padding-left: 2rem;
  border-left: 3px solid var(--primary);
}

.timeline-item {
  margin-bottom: 2rem;
  padding-left: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: var(--accent);
  border-radius: 50%;
}

.timeline-item h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.back-button {
  display: inline-block;
  margin: 2rem 0;
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #e6da00;
}

/* Reviews */
.reviews {
  background-color: var(--secondary);
  padding: 3rem 0;
  text-align: center;
  margin-top: 3rem;
}

.reviews h2 {
  margin-bottom: 2rem;
}

.reviews blockquote {
  margin: 1rem auto;
  max-width: 600px;
  font-style: italic;
  font-size: 1.1rem;
  padding: 0 1rem;
}

/* Review Stars */
.stars i {
  color: gold;
  font-size: 1.2rem;
  margin-right: 3px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #eee;
  margin-top: 2rem;
}

footer a {
  color: var(--text-color);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

/* Contact Page Styles */
.contact-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info h2,
.contact-form h2 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: var(--secondary);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-details p {
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--accent);
}

.contact-details small {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Form Styles */
.contact-form {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--primary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.submit-btn {
  background-color: var(--accent);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

/* Social Media Section */
.social-section {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
  background-color: var(--secondary);
  border-radius: 12px;
}

.social-section h2 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.social-section p {
  color: #666;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
}

.social-link i {
  font-size: 1.5rem;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-link.facebook {
  background-color: #1877f2;
  color: white;
}

.social-link.whatsapp {
  background-color: #25d366;
  color: white;
}

.social-link.youtube {
  background-color: #ff0000;
  color: white;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq-section {
  margin: 3rem 0;
}

.faq-section h2 {
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  background-color: var(--secondary);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.faq-item h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Map Section */
.map-section {
  margin: 3rem 0;
}

.map-section h2 {
  color: var(--accent);
  text-align: center;
  margin-bottom: 1.5rem;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-note {
  text-align: center;
  margin-top: 1rem;
  color: #666;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .menu {
    gap: 1.5rem;
  }
  
  .logo {
    font-size: 1.8rem;
  }
  
  header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .menu {
    justify-content: center;
    padding-right: 0;
  }
  
  .about-content {
    padding: 1rem;
  }
  
  .timeline {
    padding-left: 1rem;
  }
  
  .contact-content {
    padding: 1rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .social-link {
    width: 200px;
    justify-content: center;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu {
    gap: 2rem;
  }
}
