/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { margin: 0; -webkit-font-smoothing: antialiased; }

/* ── Custom Properties ── */
:root {
    --coral: #E07A5F;
    --coral-light: #FFD5C8;
    --coral-dark: #C9624A;
    --charcoal: #3D405B;
    --charcoal-light: #636770;
    --cream: #FDFCFA;
    --cream-dark: #F3EFE5;
    --sage: #D8DFCC;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Navigation ── */
.nav-fixed {
    background: rgba(253, 252, 250, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(61, 64, 91, 0.06);
    transition: box-shadow var(--transition);
}
.nav-fixed.scrolled {
    box-shadow: 0 4px 30px rgba(61, 64, 91, 0.08);
}
.nav-link { position: relative; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    border-radius: 1px;
    transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--coral);
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(224, 122, 95, 0.3);
}
.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 122, 95, 0.4);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--charcoal);
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(61, 64, 91, 0.15);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-secondary:hover {
    border-color: var(--coral);
    color: var(--coral);
    transform: translateY(-2px);
}

/* ── Hero ── */
.hero {
    background: linear-gradient(135deg, #FDFCFA 0%, #FFF5F2 50%, #F6F7F4 100%);
    position: relative;
}
.hero-blob { transition: transform 0.6s ease; }
.hero-content { opacity: 1; transform: translateY(0); }
.hero-image-container { opacity: 1; transform: translateY(0); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.hero-float-card { animation: float 4s ease-in-out infinite; }

.scroll-indicator {
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Menu Tabs ── */
.menu-tab {
    background: transparent;
    color: var(--charcoal-light);
    border: none;
    cursor: pointer;
}
.menu-tab.active {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 4px 15px rgba(224, 122, 95, 0.3);
}
.menu-tab:not(.active):hover {
    background: var(--cream-dark);
    color: var(--charcoal);
}
.menu-panel { transition: opacity 0.3s ease, transform 0.3s ease; }
.menu-panel.hidden { display: none; }

/* ── Menu Cards ── */
.menu-card {
    border: 1px solid rgba(61, 64, 91, 0.06);
    transition: all var(--transition);
}
.menu-card:hover {
    border-color: rgba(224, 122, 95, 0.2);
    transform: translateY(-4px);
}

/* ── Tags ── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--cream-dark);
    color: var(--charcoal-light);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(61, 64, 91, 0.08);
    transition: all var(--transition);
}
.tag:hover {
    background: var(--coral-light);
    color: var(--coral-dark);
    border-color: var(--coral);
}

/* ── Vibe Gallery ── */
.vibe-img {
    transition: transform var(--transition);
}
.vibe-img:hover { transform: scale(1.02); }
.vibe-img img {
    transition: transform 0.6s ease;
}
.vibe-img:hover img { transform: scale(1.05); }

/* ── Inputs ── */
.input-field {
    background: var(--cream);
}
.input-field:focus {
    background: #fff;
    border-color: var(--coral);
}
select.input-field {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23636770' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ── Contact Form ── */
.contact-form {
    transition: all var(--transition);
}
.success-message {
    animation: slideDown 0.4s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mobile Menu ── */
.mobile-menu {
    animation: slideDownMenu 0.3s ease;
}
@keyframes slideDownMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.mobile-link {
    border-bottom: 1px solid rgba(61, 64, 91, 0.06);
}
.mobile-link:last-child { border-bottom: none; }

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero-float-card { animation: none; }
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .hero { min-height: auto; padding: 6rem 0 4rem; }
    .hero-content { text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-float-card { position: relative; bottom: auto; left: auto; margin-top: 1rem; }
    .about-img-secondary { display: none; }
    .vibe-img { margin-top: 0 !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content h1 { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
    .hero-content { padding-right: 2rem; }
}
