:root {
    --cyan-primary: #5EC4C6;
    --cyan-light: #89D5D7;
    --cyan-soft: #B8E5E6;
    --cyan-pale: #E8F6F7;
    --cyan-dark: #4AA8AA;

    --warm-brown: #C17A5B;
    --warm-orange: #E89C74;
    --warm-cream: #F5EBE0;
    --warm-sand: #FFF8F0;

    --charcoal: #2D3748;
    --gray-700: #4A5568;
    --gray-600: #718096;
    --gray-400: #A0AEC0;
    --gray-300: #CBD5E0;
    --gray-200: #E2E8F0;
    --gray-100: #F7FAFC;
    --white: #FFFFFF;

    --font-display: 'Lexend', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --ease-breathe: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-gentle: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--warm-sand);
    color: var(--charcoal);
    line-height: 1.75;
    overflow-x: hidden;
    letter-spacing: 0.01em;
}

@keyframes breathe {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.8;
    }
}

@keyframes float-gentle {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-8px) rotate(1deg);
    }

    66% {
        transform: translateY(-4px) rotate(-0.5deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-soft {
    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-breathe), transform 1s var(--ease-breathe);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(94, 196, 198, 0.1);
    transition: all 0.4s var(--ease-breathe);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transition: transform 0.3s var(--ease-gentle);
}

.logo:hover img {
    transform: scale(1.05) rotate(-2deg);
}

.logo span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--cyan-primary);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--cyan-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.4s var(--ease-gentle);
    box-shadow: 0 4px 16px rgba(94, 196, 198, 0.2);
}

.nav-cta:hover {
    background: var(--cyan-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(94, 196, 198, 0.3);
}
