/* Base styles */
body {
    font-family: Arial, sans-serif;
    background-color: #fff8f0;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  /* Brand & headers with cursive font */
  h1, h2 {
    font-family: 'Dancing Script', cursive;
    font-weight: normal;
    color: #c94f7c;
  }
  
  /* Header styling */
  header {
    background-color: #ffb6c1;
    padding: 1rem;
    text-align: center;
  }
  
  header h1 {
    font-size: 3rem;
    margin: 0;
  }
  
  /* Navigation */
  nav {
    background: #e75480;
    padding: 0.5rem;
  }
  
  nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
  }
  
  /* Section headings */
  section h2 {
    margin-top: 1.5rem;
    font-size: 2rem;
  }
  
  /* Footer */
  footer {
    background-color: #ffb6c1;
    text-align: center;
    padding: 0.5rem;
    margin-top: 2rem;
  }

  .hero-image {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  /* Two-column layout for intro section */
.intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 2rem;
  gap: 2rem;
}

/* Text section */
.intro-text {
  flex: 1;
  min-width: 280px;
}

/* Image section */
.intro-image img {
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.flavour-image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  margin: 2rem auto;
  max-width: 800px;
}

.flavour-grid p {
  background-color: #fff0f5;
  padding: 0.5rem;
  border-radius: 5px;
  font-weight: bold;
}

.flavour-descriptions {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #fff8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.flavour-descriptions h3 {
  font-size: 1.8rem;
  color: #c94f7c;
  text-align: center;
  margin-bottom: 1rem;
}

.flavour-descriptions ul {
  list-style-type: none;
  padding: 0;
}

.flavour-descriptions li {
  margin-bottom: 0.8rem;
  padding: 0.5rem;
  line-height: 1.4;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: #555;
}


/* Big, classy title */
.flavour-title {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
  color: #c94f7c;
}

/* Wrapper for image + overlay */
.flavour-tray-wrapper {
  position: relative;
  max-width: 600px;
  margin: 2rem auto;
}

/* The tray image */
.flavour-tray {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Overlay flavour names */
.flavour-label {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  font-size: 0.8rem;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  font-weight: bold;
  text-align: center;
  color: #832747;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.flavour-label:hover {
  background-color: #c94f7c;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.flavour-tray-wrapper {
  position: relative;
  max-width: 600px;
  margin: 2rem auto;
  height: auto; /* You can also try a fixed height if the image is cut off */
}

/* Hero section layout */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 2rem;
  gap: 2rem;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-image img {
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #c94f7c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #a33f65;
}

/* Featured Flavours */
.featured-flavours {
  background-color: #fff8f0;
  padding: 2rem;
  text-align: center;
}

.featured-flavours h3 {
  font-size: 2rem;
  color: #c94f7c;
  margin-bottom: 1.5rem;
}

.flavour-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  max-width: 200px;
  text-align: center;
}

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

.card h4 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
}

.basket-icon {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
}

.basket-icon a {
  color: #333;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.basket-icon a:hover {
  color: #c94f7c;
}

header {
  position: relative;
}

nav a.active {
  background-color: #fff;
  color: #c94f7c;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  font-weight: bold;
}

nav a {
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: #fbe2ec;
  color: #c94f7c;
}

/* Order Page Title */
.order-title {
  font-size: 2.5rem;
  text-align: center;
  margin: 2rem 0 1rem;
  color: #c94f7c;
  font-family: 'Dancing Script', cursive;
}

/* Product Grid Layout */
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

/* Each Product Card */
.product-card {
  background-color: #fff;
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: scale(1.03);
}

/* Product Image */
.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

/* Product Name */
.product-card h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #333;
}

/* Tub Sizes + Prices */
.price-options p {
  margin: 0.2rem 0;
  font-weight: bold;
  color: #555;
}

/* Pink Button Style */
.add-button {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background-color: #f7c4d6;
  color: #832747;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #e2a0b7;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.add-button:hover {
  background-color: #eab8cb;
  transform: scale(1.05);
}

/* Add more pink to cards */
.product-card {
  background-color: #fff0f5; /* soft pink background */
  border: 1px solid #f3c8d9;
}

/* Light pink for headings */
.order-title {
  color: #c94f7c;
  text-shadow: 1px 1px 2px #f3d2e0;
}

/* Order form */
.order-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}


.order-form label {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: #555;
}

.order-form select {
  padding: 0.4rem 2.2rem 0.4rem 0.6rem;
  border-radius: 6px;
  border: none;
  background-color: #c94f7c;
  color: #ffffff;
  font-size: 0.95rem;
  appearance: none;
  cursor: pointer;
  transition: background-color 0.3s ease;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%23ffffff' height='18' viewBox='0 0 20 20' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 7l3 3 3-3H7z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1rem;
}

  

.order-form select:hover {
  background-color: #b63d6a;
}



/* Reuse your pink button styling */
.add-button {
  background-color: #f7c4d6;
  color: #832747;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #e2a0b7;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.add-button:hover {
  background-color: #eab8cb;
  transform: scale(1.05);
}

.hero-banner {
  background-image: url("images/hero-background.jpg");
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  position: relative;
  text-align: center;
  color: white;
}

.overlay-text {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.hero-banner .tagline {
  font-size: 2.5rem;
  font-family: 'Dancing Script', cursive;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-banner p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* Basket Page / Cart Summary Styling */
.cart-summary {
  max-width: 800px;
  margin: 4rem auto 2rem;
  padding: 2rem;
  background-color: #ffeaf3;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.cart-summary h2 {
  color: #c94f7c;
  margin-bottom: 1rem;
  font-family: 'Dancing Script', cursive;
}

#cart-items {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
  color: #444;
}

#cart-items li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3c8d9;
}

#cart-total {
  font-size: 1.1rem;
  margin-top: 1rem;
  color: #832747;
}

.buy-button {
  background-color: #c94f7c;
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}

.buy-button:hover {
  background-color: #a63d67;
}

/* Ensure basket icon remains consistent across pages */
header {
  position: relative;
}

.basket-icon {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
}

.basket-icon a {
  color: #333;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.basket-icon a:hover {
  color: #c94f7c;
}

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 100; /* Sits on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5); /* Semi-transparent background */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  text-align: center;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* About Page Styling */
.about-section,
.mission-section,
.values-section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #fff8f0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-section h2,
.mission-section h2,
.values-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #c94f7c;
  margin-bottom: 1rem;
  text-align: center;
}

.about-section p,
.mission-section p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

.values-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.values-section li {
  margin: 1rem 0;
  font-size: 1.05rem;
  color: #832747;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* Contact Page */
.contact-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff8f0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.contact-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #c94f7c;
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
  color: #832747;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #e2a0b7;
  border-radius: 6px;
  background-color: #fff0f5;
  font-size: 0.95rem;
  color: #333;
}

.contact-button {
  align-self: center;
  background-color: #c94f7c;
  color: #fff;
  border: none;
  padding: 0.6rem 1.6rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: #a63d67;
}

.contact-info {
  margin-top: 2rem;
  color: #832747;
  font-size: 1rem;
}

.contact-info i {
  margin-right: 0.5rem;
  color: #c94f7c;
}

.faq-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background-color: #fff0f5;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  color: #c94f7c;
  text-align: center;
  margin-bottom: 2rem;
}

.faq {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3c8d9;
}

.faq h4 {
  font-size: 1.1rem;
  color: #832747;
  margin-bottom: 0.5rem;
}

.faq p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}







  
  