:root {
  --primary-dark: #1B3C53;
  --primary-medium: #234C6A;
  --primary-light: #456882;
  --accent: #D2C1B6;
  --text-dark: #1B3C53;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --bg-white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(27, 60, 83, 0.1);
  --shadow-md: 0 4px 8px rgba(27, 60, 83, 0.15);
  --shadow-lg: 0 8px 16px rgba(27, 60, 83, 0.2);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-display: 'Bungee', cursive;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-medium);
}

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(--primary-dark);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.header-container {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  padding: var(--space-lg) 0;
  transform: translateY(0);
  transition: transform var(--transition-slow);
  z-index: 100;
}

.header-container.hidden {
  transform: translateY(-100%);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--text-light);
  z-index: 100;
  margin-right: auto;
  flex-shrink: 0;
}

.header-content nav {
  margin-left: auto;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  padding: var(--space-xs);
  margin-left: auto;
}

.menu-toggle .fa-times {
  display: none;
}

.menu-toggle.active .fa-bars {
  display: none;
}

.menu-toggle.active .fa-times {
  display: inline-block;
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
}

.nav-menu a {
  color: var(--text-light);
  font-size: 0.95rem;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-medium) 50%, var(--primary-dark) 100%);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('../pictures/3.jpeg');
  background-position: center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: var(--space-xl);
  max-width: 800px;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease;
  color: rgba(255, 255, 255, 0.95);
}

.btn-primary {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  border: 2px solid var(--accent);
  animation: fadeInUp 1.2s ease;
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.section {
  padding: var(--space-2xl) 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: var(--radius-sm);
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.asymmetric-section {
  position: relative;
  margin: var(--space-2xl) 0;
}

.asymmetric-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  overflow: hidden;
}

.asymmetric-box {
  background: var(--primary-light);
  color: var(--text-light);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  transform: rotate(-1deg);
  box-shadow: var(--shadow-lg);
  margin: var(--space-lg) 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.asymmetric-box:nth-child(even) {
  transform: rotate(1deg);
  background: var(--primary-medium);
  margin-left: auto;
  max-width: 90%;
  width: 90%;
}

.overlapping-element {
  position: relative;
  z-index: 2;
  background: var(--accent);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: -3rem;
  margin-left: 5%;
  box-shadow: var(--shadow-md);
  max-width: 95%;
  width: 95%;
  box-sizing: border-box;
}

.angled-divider {
  width: 100%;
  max-width: 100%;
  height: 100px;
  background: var(--primary-dark);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
  margin: var(--space-xl) 0;
  box-sizing: border-box;
}

.contact-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  color: var(--text-light);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(210, 193, 182, 0.1);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
  pointer-events: none;
}

@media (max-width: 768px) {
  .contact-section::before {
    width: 300px;
    height: 300px;
    right: -5%;
  }
}

.contact-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  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.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
}

.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: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.btn-submit {
  width: 100%;
  padding: var(--space-sm) var(--space-lg);
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: var(--space-md);
}

.btn-submit:hover {
  background: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  color: var(--text-light);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.btn-cookie {
  padding: var(--space-xs) var(--space-md);
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.btn-cookie.accept {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-cookie:hover {
  opacity: 0.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-lg);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--primary-medium);
  margin-top: var(--space-sm);
}

.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-content h1 {
  font-size: 6rem;
  color: var(--primary-light);
  margin-bottom: var(--space-md);
}

.thank-you-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-medium) 100%);
  color: var(--text-light);
}

.thank-you-content h1 {
  color: var(--text-light);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

.thank-you-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .header-content nav {
    position: static;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    padding-top: 4rem;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
    padding-bottom: var(--space-lg);
    transition: transform var(--transition-base);
    z-index: 1000;
    transform: translateX(100%);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }

  .nav-menu.active {
    display: flex;
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: var(--space-md) 0;
    width: 100%;
  }

  .header-content {
    position: relative;
    z-index: 1001;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-base);
    backdrop-filter: blur(2px);
  }

  .menu-overlay.active {
    display: block;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .asymmetric-box {
    transform: rotate(0deg) !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .asymmetric-box:nth-child(even) {
    transform: rotate(0deg) !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .overlapping-element {
    margin-top: var(--space-md);
    margin-left: 0;
    position: relative;
    max-width: 100%;
  }

  .contact-wrapper > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }

  .section > .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .asymmetric-content > div[style*="position: relative"],
  .section > .container > div[style*="position: relative"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden;
  }

  .asymmetric-content > div[style*="position: relative"] > img,
  .section > .container > div[style*="position: relative"] > img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
  }

  .section > .container > div[style*="margin-left: 10%"],
  .section > .container > div[style*="margin-right: 15%"],
  .section > .container > div[style*="max-width: 75%"],
  .section > .container > div[style*="max-width: 80%"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  div[style*="transform: rotate"] {
    transform: rotate(0deg) !important;
  }

  .hero-canvas {
    width: 100%;
    max-width: 100%;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .header-content {
    padding: 0 var(--space-sm);
  }

  .contact-wrapper {
    padding: 0 var(--space-sm);
  }

  .angled-divider {
    width: 100%;
    max-width: 100%;
  }
}

.contact-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 577px) and (max-width: 768px) {
  .hero-section {
    min-height: 65vh;
  }

  .grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .asymmetric-box {
    padding: var(--space-lg);
  }
}

@media (min-width: 769px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .nav-menu {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 60vh;
    padding: var(--space-lg) 0;
  }

  .hero-content {
    padding: var(--space-md);
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .asymmetric-box {
    padding: var(--space-md);
    margin: var(--space-md) 0;
  }

  .card {
    padding: var(--space-md);
  }

  .contact-form {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-section {
    min-height: 55vh;
  }

  .section {
    padding: var(--space-md) 0;
  }

  .grid-layout,
  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .logo {
    font-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .btn-primary {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.85rem;
  }

  .card-image {
    height: 150px;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 14px;
  }

  .container,
  .header-content,
  .contact-wrapper,
  .asymmetric-content {
    padding: 0 var(--space-xs);
  }

  .header-container {
    padding: var(--space-md) 0;
  }

  .hero-content {
    padding: var(--space-sm);
  }

  h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  h2 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }

  h3 {
    font-size: clamp(1rem, 5vw, 1.25rem);
  }

  .card {
    padding: var(--space-sm);
  }

  .asymmetric-box {
    padding: var(--space-sm);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }

  .container,
  .header-content,
  .contact-wrapper,
  .asymmetric-content {
    padding: 0 var(--space-xs);
  }

  .logo {
    font-size: 0.9rem;
  }

  .menu-toggle {
    font-size: 1.25rem;
  }

  .hero-section {
    min-height: 50vh;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .section {
    padding: var(--space-sm) 0;
  }

  .card-image {
    height: 120px;
  }

  .btn-primary {
    padding: 0.5rem var(--space-sm);
    font-size: 0.8rem;
  }

  .map-container {
    height: 250px;
  }

  .cookie-popup {
    padding: var(--space-sm);
  }

  .cookie-text {
    font-size: 0.75rem;
  }
}
