/* 
  Pogete Pexada - Main Stylesheet
  Colors:
  - #FFE26D (sunny yellow - main accent)
  - #7BBF56 (leaf green - section backgrounds)
  - #F5F7F0 (light linen - background)
  - #333333 (rich black - text)
  - #FF5757 (red marker - for CTAs and animations)
*/

:root {
  --color-yellow: #FFE26D;
  --color-green: #7BBF56;
  --color-bg: #F5F7F0;
  --color-text: #333333;
  --color-red: #FF5757;
  --gradient-main: linear-gradient(135deg, #FFE26D 0%, #7BBF56 100%);
  --font-main: 'Rubik', sans-serif;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--color-text);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease-in;
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Buttons */
.cta-button {
  display: inline-block;
  background: var(--gradient-main);
  color: var(--color-text);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button.outline {
  background: transparent;
  border: 2px solid var(--color-green);
}

.cta-button.red {
  background: var(--color-red);
  color: white;
}

/* Header */
.site-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: block;
}

.main-nav ul {
  display: flex;
}

.main-nav li {
  margin-left: 25px;
}

.main-nav a {
  font-weight: 500;
  position: relative;
}

.main-nav a:hover, 
.main-nav a.active {
  color: var(--color-green);
}

.main-nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: var(--transition);
}

.main-nav a:hover:after,
.main-nav a.active:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: var(--color-text);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: var(--gradient-main);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-image {
  flex: 1;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: translateY(-10px);
}

/* About Section */
.about {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-main);
  margin: 15px auto;
  border-radius: 2px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Benefits Section */
.benefits {
  background-color: var(--color-green);
  color: white;
  padding: 80px 0;
}

.benefits .section-title:after {
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: white;
  color: var(--color-text);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  margin: 0 auto 20px;
  width: 60px;
  height: 60px;
}

.benefit-card h3 {
  margin-bottom: 15px;
  color: var(--color-green);
}

/* Products Section */
.products {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 250px;
  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-info {
  padding: 20px;
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.product-description {
  margin-bottom: 15px;
  color: #666;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.old-price {
  font-size: 1rem;
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--color-yellow);
  padding: 80px 0;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 20px 0;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content:before,
.testimonial-content:after {
  content: '"';
  font-size: 50px;
  color: var(--color-green);
  opacity: 0.3;
  position: absolute;
}

.testimonial-content:before {
  top: -20px;
  left: -15px;
}

.testimonial-content:after {
  bottom: -40px;
  right: -15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  color: #666;
  font-size: 0.9rem;
}

/* Delivery Section */
.delivery {
  padding: 80px 0;
}

.delivery-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.delivery-image {
  flex: 1;
}

.delivery-text {
  flex: 1;
}

.delivery-steps {
  margin-top: 30px;
}

.step {
  display: flex;
  margin-bottom: 20px;
}

.step-number {
  background: var(--gradient-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Order Form Section */
.order-form {
  background: var(--gradient-main);
  padding: 80px 0;
  position: relative;
}

.order-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-title {
  text-align: center;
  margin-bottom: 30px;
}

.form-row {
  margin-bottom: 20px;
}

.form-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-family: var(--font-main);
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--color-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(123, 191, 86, 0.2);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-checkbox input {
  margin-right: 10px;
  margin-top: 5px;
}

.form-submit {
  margin-top: 20px;
  width: 100%;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  background: #f9f9f9;
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: var(--transition);
}

.faq-question:hover {
  background: #f0f0f0;
}

.faq-answer {
  padding: 20px;
  background: white;
  border-top: 1px solid #ddd;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--color-bg);
}

.contact-content {
  display: flex;
  gap: 40px;
}

.contact-content-centered {
  display: flex;
  justify-content: center;
}

.contact-info {
  flex: 1;
  max-width: 600px;
}

.contact-detail {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  margin-right: 15px;
  color: var(--color-green);
}

.cta-container {
  margin-top: 30px;
  text-align: center;
}

.contact-map {
  flex: 1;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* Footer */
.site-footer {
  background: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-description {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-column h3 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-yellow);
}

.footer-links li,
.contact-list li {
  margin-bottom: 10px;
}

.footer-links a,
.contact-list a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover,
.contact-list a:hover {
  opacity: 1;
  color: var(--color-yellow);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

.back-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-main);
  color: var(--color-text);
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  font-size: 24px;
  transition: var(--transition);
}

.back-to-top a:hover {
  transform: translateY(-5px);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(51, 51, 51, 0.95);
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.cookie-text {
  flex: 1;
  margin-right: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-main);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn.accept {
  background-color: var(--color-green);
  color: white;
}

.cookie-btn.accept:hover {
  background-color: #6cad49;
}

.cookie-btn.decline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn.decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .benefits-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content,
  .delivery-content,
  .contact-content {
    flex-direction: column;
  }
  
  .about-image,
  .delivery-image,
  .contact-map {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    clip-path: circle(0% at top right);
    transition: clip-path 0.4s ease;
  }
  
  .main-nav.active {
    clip-path: circle(150% at top right);
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav li {
    margin: 10px 0;
  }
  
  .mobile-hidden {
    display: none;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    margin-bottom: 30px;
  }
  
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .benefits-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .footer-columns {
    flex-direction: column;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
} 