:root {
  --color-primary: #F25912;
  --color-secondary: #5C3E94;
  --color-tertiary: #412B6B;
  --color-dark: #211832;
  --color-white: #ffffff;
  --color-light: #f8f8f8;
  --color-text: #211832;
  --color-text-light: #666666;
  
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  --shadow-sm: 0 2px 4px rgba(33, 24, 50, 0.1);
  --shadow-md: 0 4px 8px rgba(33, 24, 50, 0.15);
  --shadow-lg: 0 8px 16px rgba(33, 24, 50, 0.2);
  --shadow-xl: 0 12px 24px rgba(33, 24, 50, 0.25);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: relative;
  padding: var(--space-md) 0;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light) 100%);
  border-bottom: 1px solid rgba(33, 24, 50, 0.1);
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-dark);
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 9999999999;
  order: 1;
}

.nav {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav a {
  font-size: 0.9375rem;
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-tertiary) 0%, var(--color-dark) 100%);
  background-image: url('../pictures/bg.jpg');
  background-position: center;
  background-size: cover;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: var(--space-xl) var(--space-md);
  max-width: 800px;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  text-shadow: 3px 3px 3px black;
  animation: fadeInUp 0.8s ease;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  text-shadow: 3px 3px 3px black;
  text-shadow: 3px 3px 3px black;
  animation: fadeInUp 1s ease 0.2s both;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  margin: 15px 0;
}

.btn:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section-alt {
  background: var(--color-light);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-primary);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.card h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.asymmetric-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.asymmetric-item {
  position: relative;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.asymmetric-item:nth-child(odd) {
  transform: rotate(-1deg);
  margin-left: var(--space-md);
}

.asymmetric-item:nth-child(even) {
  transform: rotate(1deg);
  margin-right: var(--space-md);
}

.overlap-section {
  position: relative;
  margin: var(--space-xxl) 0;
}

.overlap-content {
  position: relative;
  z-index: 2;
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  margin-top: -60px;
}

.angled-section {
  position: relative;
  padding: var(--space-xxl) 0;
  background: var(--color-secondary);
  color: var(--color-white);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.angled-section h2,
.angled-section h3 {
  color: var(--color-white);
}

.contact-section {
  background: linear-gradient(135deg, var(--color-tertiary) 0%, var(--color-dark) 100%);
  color: var(--color-white);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.contact-info h2,
.contact-info h3 {
  color: var(--color-white);
}

.contact-info p {
  margin-bottom: var(--space-md);
  opacity: 0.95;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer p {
  margin-bottom: var(--space-xs);
  opacity: 0.8;
}

.footer a {
  color: var(--color-primary);
}

.footer a:hover {
  color: var(--color-white);
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--color-light);
}

.product-info {
  padding: var(--space-lg);
}

.product-info h3 {
  margin-bottom: var(--space-sm);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--space-md);
  font-family: var(--font-display);
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-page h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  max-width: 400px;
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  animation: slideInUp 0.5s ease;
  border: 2px solid var(--color-primary);
}

.privacy-popup p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
}

.privacy-popup-buttons button {
  flex: 1;
  padding: var(--space-xs) var(--space-md);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.privacy-popup-accept {
  background: var(--color-primary);
  color: var(--color-white);
}

.privacy-popup-accept:hover {
  background: var(--color-secondary);
}

.privacy-popup-decline {
  background: var(--color-light);
  color: var(--color-text);
}

.privacy-popup-decline:hover {
  background: var(--color-text-light);
  color: var(--color-white);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 10001;
  }
  
  .nav-toggle .fa-bars {
    display: block;
  }
  
  .nav-toggle .fa-times {
    display: none;
  }
  
  .nav-toggle.active .fa-bars {
    display: none;
  }
  
  .nav-toggle.active .fa-times {
    display: block;
  }
  
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: var(--space-xxl) var(--space-md);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    overflow-y: auto;
    justify-content: center;
    align-items: center;
  }
  
  .nav.active {
    display: flex;
  }
  
  .nav li {
    width: 100%;
    text-align: center;
  }
  
  .nav a {
    display: block;
    padding: var(--space-md);
    font-size: 1.25rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-item:nth-child(odd),
  .asymmetric-item:nth-child(even) {
    transform: none;
    margin-left: 0;
    margin-right: 0;
  }
  
  .overlap-content {
    margin-top: 0;
  }
  
  .privacy-popup {
    right: var(--space-sm);
    left: var(--space-sm);
    max-width: none;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .section {
    padding: var(--space-xl) 0;
  }
  
  .hero {
    min-height: 60vh;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .card {
    padding: var(--space-md);
  }
  
  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.875rem;
  }
}

