/* Kusego Siziso Landing Page Styles */

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --midnight-blue: #191970;
  --saffron: #F4C430;
  --snow: #FFFAFA;
  --mint: #98FF98;
  --crimson: #DC143C;
  --body-font: 'Roboto', Arial, sans-serif;
  --heading-font: 'Montserrat', Arial, sans-serif;
}

body {
  font-family: var(--body-font);
  background-color: var(--snow);
  color: var(--midnight-blue);
  line-height: 1.6;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--midnight-blue);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.75rem;
  position: relative;
  padding-bottom: 10px;
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--saffron);
  transition: width 0.3s ease;
}

h2:hover:after {
  width: 80px;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--midnight-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--crimson);
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 3rem 0;
}

/* Header */
header {
  background-color: var(--midnight-blue);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 150px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 1.5rem;
}

nav a {
  color: var(--snow);
  position: relative;
  padding-bottom: 5px;
}

nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--saffron);
  transition: width 0.3s ease;
}

nav a:hover:after {
  width: 100%;
}

/* Hero Section */
.hero {
  background-color: var(--midnight-blue);
  color: var(--snow);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(25, 25, 112, 0.8) 0%, rgba(25, 25, 112, 1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--snow);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--saffron);
  color: var(--midnight-blue);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--crimson);
  color: var(--snow);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--saffron);
  color: var(--midnight-blue);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--saffron);
  color: var(--saffron);
}

.btn-secondary:hover {
  background-color: var(--saffron);
  color: var(--midnight-blue);
}

/* Benefits Section */
.benefits {
  background-color: var(--snow);
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background-color: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Recipes Section */
.recipes {
  background-color: #f8f9fa;
}

.recipes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.recipe-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.recipe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.recipe-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.recipe-content {
  padding: 1.5rem;
}

.recipe-content h3 {
  color: var(--midnight-blue);
  margin-bottom: 0.5rem;
}

/* About Section */
.about {
  background-color: var(--snow);
}

.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.about-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

/* Price Table */
.pricing {
  background-color: #f8f9fa;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-table th, 
.pricing-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.pricing-table th {
  background-color: var(--midnight-blue);
  color: var(--snow);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background-color: rgba(152, 255, 152, 0.1);
}

/* Testimonials */
.testimonials {
  background-color: var(--snow);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card:before {
  content: """;
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 4rem;
  color: var(--mint);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: 1rem;
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 600;
}

/* Order Form */
.order {
  background-color: #f8f9fa;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--midnight-blue);
}

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-family: var(--body-font);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 2px rgba(244, 196, 48, 0.25);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

/* Footer */
footer {
  background-color: var(--midnight-blue);
  color: var(--snow);
  padding: 3rem 0 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

.footer-column h3 {
  color: var(--snow);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--saffron);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--snow);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--saffron);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.cookie-content {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  padding: 5rem 0;
}

.thank-you h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.check-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background-color: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .header-container {
    flex-direction: column;
  }
  
  nav ul {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav li {
    margin: 0.5rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 2rem 0;
  }
  
  .hero {
    padding: 5rem 0 2rem;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .benefit-card,
  .recipe-card,
  .testimonial-card {
    padding: 1.5rem;
  }
} 