@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #D97560;
  --primary-light: #F2B8A8;
  --text-dark: #2c2c2c;
  --text-light: #6b6b6b;
  --bg-cream: #FFEEE8;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

/* Header */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-image {
  height: 50px;
  width: auto;
}

.logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 85vh;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(217, 117, 96, 0.4);
}

.cta-button:hover {
  background: #c26552;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 117, 96, 0.5);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-circle {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(217, 117, 96, 0.4);
}

.hero-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Sections */
section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: 20px;
}

section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-description {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About */
.about-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-light), #fff);
  border-radius: 16px;
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: transform 0.4s;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 2rem;
  transition: background 0.3s;
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, var(--primary), rgba(217, 117, 96, 0.8));
}

.category-overlay h3 {
  color: white;
  font-size: 1.5rem;
  text-align: center;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-cream);
  border-radius: 16px;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.product-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Pricing */
.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-category {
  background: var(--bg-cream);
  padding: 2rem;
  border-radius: 16px;
}

.price-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

.price-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.item-name {
  color: var(--text-dark);
  font-weight: 500;
}

.item-price {
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.reviews-card {
  padding: 2rem;
  background: var(--bg-cream);
  border-radius: 16px;
}

.stars {
  color: #FFB800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.reviews-text {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.reviews-author {
  color: var(--text-dark);
  font-weight: 600;
}

/* Contact */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  padding: 2rem;
  background: var(--bg-cream);
  border-radius: 16px;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.contact-card p {
  color: var(--text-light);
  line-height: 1.8;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.contact-link:hover {
  color: #c26552;
}

.hours {
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  color: var(--text-light);
  border-bottom: 1px solid #f0f0f0;
}

.hours li:last-child {
  border-bottom: none;
}

.contact-actions {
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(217, 117, 96, 0.3);
}

.button:hover {
  background: #c26552;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 117, 96, 0.4);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--primary);
}

.slideshow-header {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10001;
  color: white;
}

.slideshow-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#slideshowContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 150px;
}

#slideshowContainer img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-prev, .lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 10001;
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--primary);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: white;
}

.footer-section p {
  color: #ccc;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
}

.copyright {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #999;
}

.copyright a {
  color: var(--primary);
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .header-wrapper {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .hero-section {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    text-align: center;
    min-height: auto;
  }
  
  .hero-image-circle {
    width: 300px;
    height: 300px;
  }
  
  section {
    padding: 3rem 1.5rem;
    margin: 2rem 1rem;
  }
  
  .category-grid,
  .product-grid,
  .price-list,
  .reviews-grid,
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  #slideshowContainer {
    padding: 100px 20px;
  }
  
  .lightbox-prev, .lightbox-next {
    font-size: 30px;
    padding: 15px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 280px;
  }
  
  .stat-item {
    padding: 1.25rem;
  }
  
  .stat-item h3 {
    font-size: 1.75rem;
  }
}
