﻿:root {
  
  --color-mint: #F2FFE9;
  --color-sage: #A6CF98;
  --color-forest: #557C55;
  --color-coral: #FA7070;
  --color-text: #333333;
  --color-background: #FFFFFF;

  
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Quicksand', sans-serif;

  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 6px 16px rgba(0, 0, 0, 0.12);

  
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  font-weight: 600;
  color: var(--color-forest);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--color-forest);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-coral);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
.button {
  display: inline-block;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-forest);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast);
}



section {
  padding: var(--space-lg) var(--space-sm);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}


header {
  position: relative;
  background-color: rgba(242, 255, 233, 0.9);
  padding: var(--space-sm) 0;
  transition: all var(--transition-medium);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: block;
}

.logo img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.logo img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: rotate(0);
}


@media (max-width: 992px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

.nav-desktop a {
  font-weight: 500;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-coral);
  transition: width var(--transition-fast);
}

.nav-desktop a:hover::after {
  width: 100%;
}


.burger-menu {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  border: 0.8rem solid greenyellow;
  border-radius: 50%;
}

.burger-menu i {
  color: var(--color-forest);
  font-size: 1.5rem;
}


.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(242, 255, 233, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium);
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile ul {
  list-style: none;
  text-align: center;
}

.nav-mobile li {
  margin-bottom: var(--space-md);
}

.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 500;
}

.close-menu {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-forest);
  font-size: 1.5rem;
}


.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(242, 255, 233, 0.7), rgba(166, 207, 152, 0.7));
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-forest);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-texture.jpg') no-repeat center center/cover;
  opacity: 0.3;
  z-index: 1;
}

.glitch-line {
  position: absolute;
  height: 2px;
  background-color: var(--color-coral);
  width: 100%;
  opacity: 0.7;
  transform: translateX(-50%);
  z-index: 2;
}

.glitch-line:nth-child(1) {
  top: 20%;
  animation: glitch-animate 8s infinite linear;
}

.glitch-line:nth-child(2) {
  top: 60%;
  animation: glitch-animate 12s infinite linear reverse;
}

@keyframes glitch-animate {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}


.features {
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-card {
  background-color: rgba(242, 255, 233, 0.5);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-sage);
}

.feature-card:hover::after {
  background-color: var(--color-coral);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-sage);
  border-radius: 50%;
  margin-bottom: var(--space-sm);
  color: white;
  font-size: 1.5rem;
}


.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.product-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-medium);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.product-image {
  height: 250px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.product-content {
  padding: var(--space-md);
}

.product-title {
  margin-bottom: var(--space-xs);
}

.product-price {
  color: var(--color-coral);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}


.founders-section {
  background-color: rgba(166, 207, 152, 0.2);
}

.founder-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-md);
}

.founder-image {
  height: 300px;
  background-position: center top;
  background-size: cover;
}

.founder-content {
  padding: var(--space-md);
}


.membership-section {
  background-color: rgba(242, 255, 233, 0.7);
}

.membership-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  margin-bottom: var(--space-md);
}

.membership-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-forest);
  margin-bottom: var(--space-sm);
}

.membership-period {
  color: var(--color-coral);
  font-size: 1rem;
  display: block;
  margin-top: -0.5rem;
}

.membership-features {
  list-style: none;
  margin: var(--space-md) 0;
}

.membership-features li {
  margin-bottom: var(--space-xs);
  position: relative;
  padding-left: 1.5rem;
}

.membership-features li::before {
  content: 'вњ“';
  position: absolute;
  left: 0;
  color: var(--color-sage);
}


.contact-section {
  background-color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.contact-info {
  margin-bottom: var(--space-md);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.contact-method i {
  margin-right: var(--space-sm);
  color: var(--color-coral);
}

.contact-form {
  background-color: rgba(242, 255, 233, 0.5);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-sage);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-forest);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
}

.form-checkbox input {
  margin-right: var(--space-xs);
  margin-top: 5px;
}


footer {
  background-color: var(--color-forest);
  color: white;
  padding: var(--space-md) 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
}

.footer-nav {
  margin: var(--space-sm) 0;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}


.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: var(--space-md);
  z-index: 900;
  transform: translateY(100%);
  transition: transform var(--transition-medium);
}

.privacy-popup.active {
  transform: translateY(0);
}

.privacy-popup-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.privacy-popup p {
  margin: 0;
  flex: 1;
}

.privacy-buttons {
  display: flex;
  gap: var(--space-sm);
}


.error-page {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-content h1 {
  font-size: 6rem;
  margin-bottom: 0;
  color: var(--color-coral);
}


.thank-you {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--color-sage);
  margin-bottom: var(--space-sm);
}


@media (min-width: 576px) {

  .features-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    text-align: right;
  }
}

@media (min-width: 992px) {
  .nav-desktop {
    display: block;
  }

  .burger-menu {
    display: none;
  }

  .features-grid,
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  section {
    padding: var(--space-xl) 0;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }
}