/* 
   templates.css — Typography and Global Animations
*/

/* ============================================================
   GLOBAL UTILITIES
   ============================================================ */
:root {
    --transition-slow: 0.8s cubic-bezier(0.77, 0, 0.18, 1);
    --transition-mid: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.2s ease;
}

/* Base resets */
body:not(.admin-body), .se-preview-wrap {
    background-color: var(--brand-bg);
    color: var(--brand-text);
    transition: background-color var(--transition-mid), color var(--transition-mid);
}

/* Typography application */
h1, h2, h3, .nav-logo {
    font-family: var(--font-serif);
}
body, button, input, select, textarea {
    font-family: var(--font-sans);
}

/* Hero Content layout adjustments */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

/* Section label styling */
.section-label {
    color: var(--brand-text-muted);
}

/* Button styling */
.btn-book-now, 
.btn-hero-primary,
.btn-reserve {
    background-color: var(--brand-accent);
    color: var(--brand-accent-text, #FFF);
    transition: all 0.3s ease;
}

.btn-book-now:hover, 
.btn-hero-primary:hover,
.btn-reserve:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}
