/* 
* Wozuxu-Fejopi - Natural Tea Website
* Main Stylesheet
* Colors:
* - Lime Green: #C3F73A
* - Deep Graphite: #1B1B1B
* - Milk White: #FBFAF5
* - Warm Amber: #F6A623
* - Ice Blue: #A3C4F3
*/

/* Base Styles & Reset */
:root {
  --lime: #C3F73A;
  --graphite: #1B1B1B;
  --white: #FBFAF5;
  --amber: #F6A623;
  --blue: #A3C4F3;
  
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --shadow: 0 8px 30px rgba(0,0,0,0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--graphite);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--lime);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--amber);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--lime);
  margin-top: 15px;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  text-align: center;
}

.btn-accent {
  background-color: var(--lime);
  color: var(--graphite);
}

.btn-accent:hover {
  background-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--graphite);
}

.btn-text {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-text:hover {
  background-color: var(--white);
  color: var(--graphite);
}

/* Header */
.main-header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(27, 27, 27, 0.95);
  backdrop-filter: blur(5px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: block;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.main-nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--lime);
  transition: var(--transition);
}

.main-nav a:hover:after {
  width: 100%;
}

.contact-info a {
  color: var(--lime);
  font-weight: 600;
}

/* Main Content */
main {
  padding-top: 100px;
}

section {
  padding: 80px 0;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(27,27,27,0.7), rgba(27,27,27,0.9)), url('../img/RdIdS1.jpg') no-repeat center/cover;
  text-align: center;
  padding: 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* About Product Section */
.about-product {
  background-color: var(--white);
  color: var(--graphite);
  border-radius: 30px 30px 0 0;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-content ul {
  margin-bottom: 1.5rem;
}

.about-content li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.about-content li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lime);
  font-weight: bold;
}

/* How It Works Section */
.how-it-works {
  background-color: var(--white);
  color: var(--graphite);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.step-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  background-color: rgba(163, 196, 243, 0.1);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--lime);
  color: var(--graphite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Comparison Section */
.comparison {
  background: linear-gradient(rgba(27,27,27,0.8), rgba(27,27,27,0.8)), url('../img/TAzuD8.jpg') no-repeat center/cover;
  color: var(--white);
  text-align: center;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.comparison-item {
  padding: 30px;
  border-radius: var(--border-radius);
  background-color: rgba(251, 250, 245, 0.1);
  backdrop-filter: blur(5px);
}

.comparison-item h3 {
  color: var(--lime);
  margin-bottom: 20px;
}

/* Product Cards Section */
.products {
  background-color: var(--white);
  color: var(--graphite);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background-color: #fff;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 20px;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.product-description {
  margin-bottom: 15px;
  color: #666;
}

.product-price {
  font-size: 1.8rem;
  color: var(--amber);
  font-weight: bold;
  margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--graphite);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background-color: rgba(251, 250, 245, 0.05);
  padding: 30px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--lime);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid var(--lime);
}

.author-name {
  font-weight: bold;
}

.author-location {
  color: #999;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  background-color: var(--white);
  color: var(--graphite);
}

.faq-grid {
  margin-top: 50px;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(27,27,27,0.1);
  padding-bottom: 20px;
}

.faq-question {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--graphite);
  font-weight: 600;
}

/* Order Form Section */
.order-form {
  background: linear-gradient(rgba(27,27,27,0.7), rgba(27,27,27,0.9)), url('../img/RnAEof.jpg') no-repeat center/cover;
  padding: 80px 0;
}

.order-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(251, 250, 245, 0.95);
  padding: 40px;
  border-radius: var(--border-radius);
  color: var(--graphite);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--lime);
  outline: none;
  box-shadow: 0 0 0 3px rgba(195, 247, 58, 0.3);
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231B1B1B' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input {
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-group label {
  font-size: 0.9rem;
}

.form-errors {
  background-color: rgba(255, 0, 0, 0.1);
  color: #d00;
  padding: 15px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.form-errors ul {
  padding-left: 15px;
  list-style-type: disc;
}

/* Footer */
.main-footer {
  background-color: var(--graphite);
  padding: 60px 0 20px;
  border-top: 1px solid rgba(251, 250, 245, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer-about p {
  margin-top: 20px;
  opacity: 0.8;
}

.footer-contact h3,
.footer-links h3 {
  color: var(--lime);
  position: relative;
  padding-bottom: 15px;
}

.footer-contact h3:after,
.footer-links h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--lime);
}

.footer-contact ul,
.footer-links ul {
  margin-top: 20px;
}

.footer-contact li,
.footer-links li {
  margin-bottom: 10px;
}

.footer-contact span {
  display: block;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.footer-contact address {
  font-style: normal;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(251, 250, 245, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(27, 27, 27, 0.95);
  backdrop-filter: blur(5px);
  padding: 15px 0;
  z-index: 1000;
  border-top: 1px solid var(--lime);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
  padding-right: 20px;
}

.cookie-content form {
  display: flex;
  gap: 10px;
}

/* Thank You Page */
.thank-you {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--lime);
  margin-bottom: 30px;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 60px;
  background-color: var(--white);
  color: var(--graphite);
  min-height: 80vh;
}

.legal-content {
  margin: 30px 0;
  padding: 30px;
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.legal-content h2 {
  color: var(--graphite);
  margin-top: 30px;
  font-size: 1.5rem;
}

.legal-content h2:after {
  width: 50px;
  background: var(--amber);
}

.legal-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.last-updated {
  font-style: italic;
  color: #666;
  margin-top: 30px;
  text-align: right;
}

/* Responsive */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .about-grid,
  .product-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .about-grid,
  .comparison-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-content p {
    margin-bottom: 15px;
    padding-right: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-about {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .product-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .order-container {
    padding: 20px;
  }
} 