* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color1: #ff96bc;
  --color2: #ffcf91;
  --color3: #3f0b0a;
  --color4: #90827b;
  --color5: #fffaf2;
}

body {
  font-family: "Georgia", serif;
  color: var(--color3);
  background-color: var(--color5);
  overflow-x: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.decorative-line {
  position: absolute;
  height: 2px;
  opacity: 0.2;
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.rotating {
  animation: rotating 20s linear infinite;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

header {
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 250, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(63, 11, 10, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--color1);
  color: var(--color3);
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color2);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 150, 188, 0.3);
}

.form-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--color2);
  color: var(--color3);
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  transform: translateX(400px);
  transition: transform 0.4s ease;
}

.form-notification.show {
  transform: translateX(0);
}

/* Cookie Popup Styles */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--color5);
  border: 2px solid var(--color4);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  padding: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  min-width: 100px;
}

.accept-btn {
  background-color: var(--color1);
  color: var(--color3);
}

.accept-btn:hover {
  background-color: var(--color2);
  transform: translateY(-1px);
}

.decline-btn {
  background-color: transparent;
  color: var(--color4);
  border: 1px solid var(--color4);
}

.decline-btn:hover {
  background-color: var(--color4);
  color: var(--color5);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cookie-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .cookie-content {
    padding: 16px;
  }

  .cookie-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cookie-btn {
    width: 100%;
    max-width: 200px;
  }
}

.image-reveal {
  position: relative;
  overflow: hidden;
}

.image-reveal::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color5);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.image-reveal.revealed::after {
  transform: translateX(100%);
}

@media (max-width: 768px) {
  .decorative-circle {
    width: 100px !important;
    height: 100px !important;
  }
}
