:root {
  --color1: #ded6c0;
  --color2: #e6ddd3;
  --color3: #050b24;
  --color4: #1b3347;
  --color5: #92a2a9;
}

body {
  font-family: "Georgia", serif;
  background-color: var(--color2);
  color: var(--color3);
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.decorative-line {
  position: absolute;
  height: 2px;
  background: var(--color5);
  opacity: 0.3;
}

.text-balance {
  text-wrap: balance;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 1rem 1.5rem;
  background: var(--color4);
  color: var(--color2);
  border-radius: 8px;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.notification.show {
  transform: translateX(0);
}

.image-frame {
  position: relative;
  overflow: hidden;
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 3px solid var(--color1);
  z-index: -1;
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.diagonal-section {
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.wave-divider {
  position: relative;
  width: 100%;
  height: 80px;
  background: var(--color1);
}

.wave-divider::before {
  content: "";
  position: absolute;
  top: -79px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80'%3E%3Cpath fill='%23ded6c0' d='M0,48 C150,80 350,0 600,48 C850,96 1050,16 1200,48 L1200,80 L0,80 Z'/%3E%3C/svg%3E")
    no-repeat;
  background-size: cover;
}

/* Cookie Consent Popup Styles */
#cookieConsent {
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(214, 214, 192, 0.2);
}

#cookieConsent button {
  transition: all 0.2s ease;
  border-radius: 6px;
}

#cookieConsent button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#cookieConsent a {
  transition: color 0.2s ease;
}

#cookieConsent a:hover {
  color: var(--color2);
}

/* Mobile responsiveness for cookie popup */
@media (max-width: 768px) {
  #cookieConsent {
    padding: 1rem;
  }

  #cookieConsent .container {
    flex-direction: column;
    gap: 1rem;
  }

  #cookieConsent .flex {
    width: 100%;
    justify-content: center;
  }
}
