:root {
  --background: #ffffff;
  --foreground: #000000;
  --card: #f5f5f5;
  --card-foreground: #000000;
  --popover: #ffffff;
  --popover-foreground: #000000;
  --primary: #87a878;
  --primary-foreground: #ffffff;
  --secondary: #c4a77d;
  --secondary-foreground: #000000;
  --muted: #f5f5f5;
  --muted-foreground: #666666;
  --accent: #c4a77d;
  --accent-foreground: #000000;
  --destructive: #dc2626;
  --destructive-foreground: #ffffff;
  --border: #e5e5e5;
  --input: #f5f5f5;
  --ring: #87a878;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--background);
  color: var(--foreground);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.boty-shadow,
.apex-shadow {
  box-shadow:
    rgba(0, 0, 0, 0.04) 0 0 0 1px,
    rgba(0, 0, 0, 0.04) 0 1px 1px -0.5px,
    rgba(0, 0, 0, 0.04) 0 3px 3px -1.5px,
    rgba(0, 0, 0, 0.04) 0 6px 6px -3px,
    rgba(0, 0, 0, 0.04) 0 12px 12px -6px,
    rgba(0, 0, 0, 0.04) 0 24px 24px -12px;
}

.boty-transition,
.apex-transition {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes blur-in {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.animate-blur-in {
  animation: blur-in 0.8s ease-out;
}

@keyframes scale-fade-in {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-scale-fade-in {
  animation: scale-fade-in 0.6s ease-out;
}

.aroma-main {
  min-height: 100vh;
}

.aroma-mobile-nav {
  display: none;
}

.aroma-mobile-nav.is-open {
  display: block;
}

.aroma-footer-big-text {
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1;
}

@media (max-width: 1023px) {
  .aroma-desktop-only {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .aroma-mobile-only {
    display: none !important;
  }
}
