/* 
* Necune-Nameca - Main Stylesheet
* Color Palette:
* - Background: #F5FFF5
* - Accent: #B8E986
* - CTA Buttons: #306E5D
* - Headings: #333333
* - Text: #555555
* - Block BG: #E0F2E9
*/

/* ---------- Reset & Base Styles ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #555555;
  background-color: #F5FFF5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #306E5D;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #1a3e33;
}

h1, h2, h3, h4, h5, h6 {
  color: #333333;
  margin-bottom: 2rem;
  line-height: 1.2;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 8rem;
  height: 0.4rem;
  background-color: #B8E986;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 1.6rem;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  border-radius: 5rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.6rem;
}

.btn-primary {
  background-color: #306E5D;
  color: white;
  box-shadow: 0 0.4rem 1rem rgba(48, 110, 93, 0.2);
}

.btn-primary:hover {
  background-color: #265548;
  color: white;
  transform: translateY(-0.3rem);
  box-shadow: 0 0.6rem 1.5rem rgba(48, 110, 93, 0.3);
}

.btn-secondary {
  background-color: #B8E986;
  color: #333333;
  box-shadow: 0 0.4rem 1rem rgba(184, 233, 134, 0.2);
}

.btn-secondary:hover {
  background-color: #a6d572;
  color: #333333;
  transform: translateY(-0.3rem);
  box-shadow: 0 0.6rem 1.5rem rgba(184, 233, 134, 0.3);
}

.btn-nav {
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
}

/* ---------- Header & Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(245, 255, 245, 0.95);
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 1000;
  backdrop-filter: blur(0.5rem);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 5rem;
}

.main-nav .menu {
  display: flex;
  align-items: center;
}

.main-nav .menu li {
  margin-left: 2.5rem;
}

.main-nav .menu a {
  font-weight: 600;
  font-size: 1.6rem;
}

.menu-toggle {
  display: none;
}

.menu-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.4rem;
  cursor: pointer;
}

.menu-toggle-label span {
  display: block;
  height: 0.3rem;
  width: 100%;
  background-color: #306E5D;
  border-radius: 0.2rem;
  transition: all 0.3s ease;
}

/* ---------- Cookie Popup ---------- */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(48, 110, 93, 0.95);
  color: white;
  padding: 2rem;
  z-index: 2000;
  box-shadow: 0 -0.2rem 1rem rgba(0, 0, 0, 0.1);
}

.cookie-popup-content {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.cookie-popup p {
  margin: 0;
  flex: 1;
  min-width: 30rem;
}

.cookie-popup form {
  flex-shrink: 0;
}

.cookie-popup .btn {
  background-color: #B8E986;
  color: #333;
}

.cookie-popup .btn:hover {
  background-color: #a6d572;
}

/* ---------- Hero Section ---------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(245,255,245,1) 0%, rgba(224,242,233,1) 100%);
  padding-top: 10rem;
}

.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  min-width: 30rem;
  padding-right: 4rem;
}

.hero-content h1 {
  margin-bottom: 2.5rem;
  font-size: 5rem;
}

.hero-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.hero-image {
  flex: 1;
  min-width: 30rem;
  position: relative;
}

.hero-image img {
  border-radius: 2.5rem;
  box-shadow: 2rem 2rem 6rem rgba(0, 0, 0, 0.1);
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: rotate(0);
}

/* ---------- About Section ---------- */
.about-section {
  background-color: #E0F2E9;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 30rem;
  height: 30rem;
  background-color: rgba(184, 233, 134, 0.2);
  border-radius: 50%;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
}

.about-image {
  flex: 1;
  min-width: 30rem;
}

.about-image img {
  border-radius: 2.5rem;
  box-shadow: 1rem 1rem 3rem rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 30rem;
}

/* ---------- Benefits Section ---------- */
.benefits-section {
  position: relative;
}

.benefits-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.benefit-card {
  flex: 1;
  min-width: 25rem;
  background-color: #E0F2E9;
  padding: 4rem 3rem;
  border-radius: 2.5rem;
  text-align: center;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
}

.benefit-card h3 {
  margin-bottom: 1.5rem;
}

/* ---------- Products Section ---------- */
.products-section {
  background-color: #E0F2E9;
}

.products-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.product-card {
  flex: 1;
  min-width: 30rem;
  max-width: 35rem;
  background-color: #F5FFF5;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 25rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card h3 {
  padding: 2rem 2rem 1rem;
}

.product-card p {
  padding: 0 2rem 2rem;
  min-height: 8rem;
}

.product-price {
  padding: 0 2rem 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  color: #306E5D;
}

.product-card .btn {
  margin: 0 2rem 2rem;
  width: calc(100% - 4rem);
}

/* ---------- Testimonials Section ---------- */
.testimonials-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.testimonial-card {
  flex: 1;
  min-width: 30rem;
  background-color: #E0F2E9;
  padding: 3rem;
  border-radius: 2.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: """;
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 8rem;
  color: rgba(184, 233, 134, 0.5);
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-author {
  margin-top: 2rem;
  text-align: right;
}

/* ---------- How It Works Section ---------- */
.how-it-works-section {
  background-color: #E0F2E9;
}

.steps-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.step-card {
  flex: 1;
  min-width: 20rem;
  text-align: center;
  padding: 3rem 2rem;
  background-color: #F5FFF5;
  border-radius: 2.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  position: relative;
}

.step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  background-color: #B8E986;
  color: #333333;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 2rem;
  box-shadow: 0 0.5rem 1.5rem rgba(184, 233, 134, 0.3);
}

/* ---------- Order Form Section ---------- */
.order-section {
  background: linear-gradient(135deg, rgba(245,255,245,1) 0%, rgba(224,242,233,1) 100%);
}

.order-form {
  max-width: 60rem;
  margin: 0 auto;
  background-color: white;
  padding: 4rem;
  border-radius: 2.5rem;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 2.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1.2rem;
  border: 0.2rem solid #E0F2E9;
  border-radius: 1rem;
  font-size: 1.6rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #B8E986;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.4rem;
}

.checkbox-group label {
  flex: 1;
  margin-bottom: 0;
  font-weight: normal;
}

.order-form .btn {
  width: 100%;
  margin-top: 1rem;
}

/* ---------- Contact Section ---------- */
.contact-section {
  position: relative;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.contact-info {
  flex: 1;
  min-width: 30rem;
}

.contact-item {
  margin-bottom: 3rem;
}

.contact-item h3 {
  margin-bottom: 1rem;
}

.contact-map {
  flex: 1;
  min-width: 30rem;
  height: 40rem;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: #306E5D;
  color: white;
  padding: 5rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col {
  flex: 1;
  min-width: 25rem;
}

.footer-col h3 {
  color: white;
  margin-bottom: 2rem;
  position: relative;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 5rem;
  height: 0.3rem;
  background-color: #B8E986;
  position: absolute;
  bottom: -1rem;
  left: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: #B8E986;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

/* ---------- Legal Pages ---------- */
.legal-section {
  padding-top: 12rem;
}

.legal-content {
  margin-top: 3rem;
}

.legal-content h2 {
  text-align: left;
  margin: 4rem 0 2rem;
}

.legal-content h2::after {
  left: 0;
  transform: none;
}

.legal-content ul, 
.legal-content ol {
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.legal-content li {
  margin-bottom: 1rem;
}

.legal-date {
  margin-top: 4rem;
  font-style: italic;
  color: #777;
}

/* ---------- Thanks Page ---------- */
.thanks-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10rem;
}

.thanks-content {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto;
}

.thanks-content h1 {
  margin-bottom: 3rem;
  color: #306E5D;
}

.thanks-actions {
  margin-top: 4rem;
}

/* ---------- Media Queries ---------- */
@media (max-width: 992px) {
  html {
    font-size: 58%;
  }
  
  .hero-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  
  section {
    padding: 6rem 0;
  }
  
  .menu-toggle-label {
    display: flex;
    z-index: 2;
  }
  
  .main-nav .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 40rem;
    height: 100vh;
    background-color: #F5FFF5;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  
  .main-nav .menu li {
    margin: 2rem 0;
  }
  
  .menu-toggle:checked ~ .menu {
    right: 0;
  }
  
  .menu-toggle:checked ~ .menu-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(0.7rem, 0.6rem);
  }
  
  .menu-toggle:checked ~ .menu-toggle-label span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle:checked ~ .menu-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(0.7rem, -0.6rem);
  }
  
  .hero-section .container,
  .hero-content,
  .hero-image {
    text-align: center;
  }
  
  .hero-image img {
    margin: 4rem auto 0;
    max-width: 80%;
  }
  
  .product-card {
    max-width: 100%;
  }
  
  .cookie-popup-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-popup .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 50%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  .order-form {
    padding: 3rem 2rem;
  }
}

/* Animation for elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animations to elements */
.hero-content h1,
.hero-content p,
.hero-content .btn {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content h1 {
  animation-delay: 0.2s;
}

.hero-content p {
  animation-delay: 0.4s;
}

.hero-content .btn {
  animation-delay: 0.6s;
}

.hero-image img {
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
} 