/* Kneadyboi Brand Styles - Updated to match current website */
:root {
  --primary-red: #D21C23;
  --primary-green: #285E37;
  --beige: #E2D6C5;
  --gold: #FBA406;
  --off-white: #FDFFF6;
  --dark-gray: #333333;
}

body {
  font-family: 'Poppins', 'Lora', sans-serif;
  background-color: var(--primary-red);
  color: var(--dark-gray);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

p {
  line-height: 1.8;
  font-weight: 300;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header / Logo area */
header {
  background-color: var(--beige);
  width: 100%;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.logo-area {
  padding: 15px 20px;
  text-align: left;
  background-color: var(--beige);
  display: flex;
  align-items: center;
}

.logo-area img {
  max-height: 70px;
  margin-left: 15px;
}

/* Green banner with scrolling text */
.marquee-banner {
  background-color: var(--primary-green);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  width: 100%;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

/* Section Headings - Kneadyboi style */
.section-heading {
  margin-bottom: 30px;
}

.section-heading-upper {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-red);
}

.section-heading-lower {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
}

/* Hero Section */
.hero-section {
  margin: 30px 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  min-height: 400px;
  justify-content: center;
}

.message-box {
  background-color: var(--off-white);
  padding: 40px;
  max-width: 800px;
  margin: 30px auto;
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.teaser-image, .closing-image {
  margin-top: 30px;
  text-align: center;
}

.teaser-image img, .closing-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* Stage 2: Closing Down Sale Specific Styles */
.sale-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--primary-red);
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  transform: rotate(5deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-details {
  margin-top: 30px;
  padding: 25px 0;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.product-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.price-box {
  flex: 1;
  min-width: 250px;
}

.price-original {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: #888;
  display: block;
  font-weight: 300;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-right: 10px;
  font-family: 'Poppins', sans-serif;
}

.unit {
  font-size: 1.1rem;
  color: #555;
  font-weight: 400;
}

.shipping-info {
  font-size: 0.9rem;
  margin-top: 8px;
  color: #666;
  font-style: italic;
}

.product-features {
  margin-top: 25px;
  flex: 1 1 100%;
}

.product-features ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
}

.product-features li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  flex: 1 1 250px;
  padding-left: 30px;
  position: relative;
  font-weight: 300;
}

.product-features i {
  color: var(--primary-green);
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 5px;
}

.buy-button {
  margin-top: 35px;
  text-align: center;
}

.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 30px;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-primary:hover {
  background-color: #1c4628;
  border-color: #1c4628;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(40, 94, 55, 0.3);
}

.btn-lg {
  padding: 0.85rem 3rem;
  font-size: 1.1rem;
}

/* Contact Form - Mobile Optimized */
.contact-form {
  background-color: var(--off-white);
  padding: 30px 25px;
  margin: 30px auto;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Smaller spacing for mobile */
.form-group {
  margin-bottom: 18px;
}

/* Optimize form fields size */
.form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: 'Poppins', sans-serif;
  background-color: white;
  font-size: 16px; /* Prevents zoom on mobile */
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box; /* Ensures padding doesn't add to width */
  max-width: 100%; /* Prevents overflow */
}

.form-control:focus {
  border-color: var(--primary-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(40, 94, 55, 0.1);
}

/* Smaller labels */
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #444;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

/* Smaller text area */
textarea.form-control {
  min-height: 90px;
  resize: vertical;
  max-height: 150px;
}

/* Footer */
.footer {
  background-color: var(--beige);
  color: var(--dark-gray);
  padding: 30px 0;
  margin-top: 40px;
}

.footer p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .marquee-content {
    animation-duration: 15s; /* Faster on mobile */
    font-size: 12px;
  }
  
  .hero-content {
    min-height: auto;
  }
  
  .message-box {
    padding: 25px;
    margin: 15px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .sale-badge {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  /* Compact button for mobile */
  .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* Additional mobile optimizations */
@media (max-width: 576px) {
  .message-box {
    padding: 25px 20px;
    margin: 15px 10px;
    border-radius: 12px;
  }
  
  .section-heading-lower {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .contact-form {
    padding: 20px 15px;
    margin: 15px 5px;
  }
  
  /* Better touch targets for mobile */
  .btn {
    padding: 12px 24px;
    min-height: 44px; /* Better for touch */
  }
  
  /* Optimize form fields for mobile */
  .form-control {
    padding: 8px 10px;
  }
  
  textarea.form-control {
    min-height: 80px;
  }
  
  .logo-area img {
    max-height: 50px;
  }
  
  .price {
    font-size: 2.2rem;
  }
}
/* Add this to your styles.css file */
.shipping-notice {
  background-color: var(--primary-red);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile responsiveness for the shipping notice */
@media (max-width: 576px) {
  .shipping-notice {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}
/* Add these styles to your styles.css file */
#stage-3 h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-top: 30px;
}

#stage-3 .closing-image {
  margin-top: 40px;
}

#stage-3 .message-box {
  padding: 50px;
}

/* Mobile responsiveness for Stage 3 */
@media (max-width: 768px) {
  #stage-3 .message-box {
    padding: 30px;
  }
  
  #stage-3 h3 {
    font-size: 1.3rem;
    margin-top: 25px;
  }
}

@media (max-width: 576px) {
  #stage-3 .message-box {
    padding: 25px;
  }
  
  #stage-3 h3 {
    font-size: 1.2rem;
    margin-top: 20px;
  }
}
