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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2e003e;
  background: #f3e5f5;
}
html, body {
  height: 100%;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  color: #6a0dad;
  cursor: pointer;
}

.logo-img {
  height: 40px; /* adjust as needed */
  margin-right: 0.5rem;
}

.logo-text {
  font-family: 'Georgia', serif; /* or your current font */
}

/* Navigation */
.nav {
  display: none;
}

.nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.nav__list li a {
  text-decoration: none;
  color: #2e003e;
  padding: 0.5rem;
}

.nav__list li a:hover {
  color: #6a0dad;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 30px;
  width: 30px;
  gap: 5px;
  padding: 0;
}

.nav--visible {
  display: block;
}

/* Hero Section */
.hero {
  background-color: #6a0dad;
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
}

/* Flavors Section */
.flavor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.flavor-card img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

/* Showcase Section */
.showcase-slider {
  position: relative;
  max-width: 600px;
  margin: 2rem auto;
  overflow: hidden;
}

.showcase-track {
  display: flex;
  transition: transform 0.5s ease;
}
.showcase-viewport {
  overflow: hidden;
  width: 100%;
}

.showcase-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.showcase-item img {
  width: 100%;
  max-width: 300px;
  height: 300px; /* Fixed height for consistency */
  object-fit: cover;
  border: 8px solid #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #6a0dad;
  border: 2px solid #6a0dad;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  z-index: 10;
  font-size: 1.25rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.slider-button:hover {
  background: #6a0dad;
  color: #fff;
}


.slider-button.prev {
  left: 10px;
}

.slider-button.next {
  right: 10px;
}

/* Contact Section */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: #f8f4fb;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(106, 13, 173, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

/* Button */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #6a0dad;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #4b0082;
}

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

/* Responsive Navigation */
@media (min-width: 768px) {
  .nav {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 0;
  }

  .nav--visible {
    display: block;
  }
}

@media (max-width: 768px) {


.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background: #6a0dad;
  transition: 0.3s ease;
  position: relative;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(5px);
}

}

