@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Open+Sans:wght@400;600;700&family=Pacifico&display=swap');

:root {
  --bg-color: #fff8f0;
  --section-divider: #f3e6d8;
  --accent-red: #c0392b;
  --accent-red-hover: #a93226;
  --secondary-brown: #6b3e26;
  --text-dark: #2c3e50;
  --text-light: #5d6d7e;
  --white: #ffffff;
  --font-heading: 'Merriweather', serif;
  --font-body: 'Open Sans', sans-serif;
  --font-logo: 'Pacifico', cursive;
  --shadow-sm: 0 2px 8px rgba(107, 62, 38, 0.08);
  --shadow-md: 0 4px 16px rgba(107, 62, 38, 0.12);
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--secondary-brown);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--accent-red);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-red);
  border: 2px solid var(--accent-red);
}

.btn-outline:hover {
  background-color: var(--accent-red);
  color: var(--white);
}

/* Header */
.top-utility {
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--section-divider);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.top-utility .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-utility-left, .top-utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.status-badge .open {
  color: #27ae60;
}

.status-badge .closed {
  color: var(--accent-red);
}

.main-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

img.chef-logo {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.logo {
  font-family: var(--font-logo);
  font-size: 2rem;
  font-weight: 400;
  color: var(--secondary-brown);
  display: flex;
  flex-direction: column;
}

.logo span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: -8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar ul {
  display: flex;
  gap: 30px;
}

.navbar a {
  font-weight: 600;
  font-size: 0.95rem;
}

.navbar a:hover, .navbar a.active {
  color: var(--accent-red);
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--secondary-brown);
  border-radius: 3px;
  transition: var(--transition);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--secondary-brown);
}

.section-title p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, var(--bg-color) 0%, var(--white) 100%);
  padding: 60px 0 100px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--accent-red);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--white);
  padding: 20px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 4px solid var(--bg-color);
  font-family: var(--font-heading);
  color: var(--secondary-brown);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Trust Features */
.trust-features {
  padding: 0 0 60px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-icon {
  font-size: 2rem;
}

.trust-item h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text-dark);
}

.trust-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
}

.category-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid var(--section-divider);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.category-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid var(--section-divider);
}

.category-card h3 {
  font-size: 1.1rem;
  margin: 15px 0 5px;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
  padding: 0 10px;
}

.category-card .btn-outline {
  padding: 6px 16px;
  font-size: 0.9rem;
}

/* Wholesale Section */
.wholesale {
  background-color: var(--section-divider);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin: 60px 0;
}

.wholesale .container {
  display: flex;
  align-items: center;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.wholesale-content {
  flex: 1;
  padding: 60px;
}

.wholesale-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.wholesale-content p {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.wholesale-list {
  margin-bottom: 30px;
}

.wholesale-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

.wholesale-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: bold;
}

.wholesale-image {
  flex: 1;
  min-height: 400px;
}

.wholesale-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Celebration Pack */
.celebration {
  background-color: var(--bg-color);
  border: 1px solid var(--section-divider);
  border-radius: var(--border-radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 60px auto;
  max-width: 1000px;
  gap: 30px;
}

.celebration img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.celebration-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Location Section */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.location-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid var(--section-divider);
}

.location-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--section-divider);
  padding-bottom: 10px;
}

.location-card p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.timings-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timings-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--section-divider);
}

/* Footer */
.footer {
  background-color: var(--secondary-brown);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo {
  color: var(--white);
  font-size: 2.2rem;
  font-family: var(--font-logo);
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

.footer-logo-container img.chef-logo {
  filter: invert(1) brightness(2);
}

.footer-logo span {
  color: var(--section-divider);
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: -5px;
}

.footer h4 {
  color: var(--bg-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a:hover {
  color: var(--section-divider);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* Products Page */
.page-header {
  background-color: var(--section-divider);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: var(--white);
  border: 1px solid var(--secondary-brown);
  color: var(--secondary-brown);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--secondary-brown);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--section-divider);
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background-color: #eee;
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex: 1;
}

.product-card .btn {
  width: 100%;
  background-color: #25D366; /* WhatsApp color */
  color: white;
  border-radius: var(--border-radius);
}

.product-card .btn:hover {
  background-color: #128C7E;
}

/* Gallery Masonry */
.masonry-grid {
  column-count: 3;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.masonry-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--border-radius);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  background: none;
  border: none;
}

/* Form Styles */
.form-container {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--section-divider);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-brown);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: #fafafa;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-red);
  background-color: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-layout, .wholesale-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Responsive */
@media (max-width: 992px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wholesale-layout, .contact-layout {
    grid-template-columns: 1fr;
  }

  .wholesale {
    margin: 40px 10px;
  }

  .wholesale .container {
    flex-direction: column;
  }
  
  .wholesale-content {
    padding: 40px 20px;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 768px) {
  .top-utility-left, .top-utility-right {
    width: 100%;
    justify-content: center;
  }
  
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    display: none;
  }
  
  .navbar.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 100%;
  }
  
  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .celebration {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .masonry-grid {
    column-count: 1;
  }
}

/* Lucide Icon Adjustments */
.lucide {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em;
}
