/* ===================================================
   ComeSeeMeToday.com — Global Stylesheet
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lora:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Main palette */
    --navy: #0d1117;
    --navy2: #161c26;
    --gold: #3b82f6;
    --gold2: #1d4ed8;
    --gold-warm: #e8a020;
    --gold-warm2: #c47c10;
    --white: #ffffff;
    --offwhite: #faf7f2;
    --warm: #f5ede0;
    --light: #edeae3;
    --muted: #8a8880;
    --border: rgba(0,0,0,0.10);
    --success: #2aaa98;
    --error: #d94f3a;

    /* Spacing */
    --nav-height: 80px;
    --nav-height-minimal: 60px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--offwhite);
    color: var(--navy);
    overflow-x: hidden;
}

/* ===================================================
   SHARED BUTTON STYLES
   =================================================== */
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(59,130,246,0.35);
    display: inline-block;
}

.btn-gold:hover {
    background: #60a5fa;
    transform: translateY(-2px);
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(0,0,0,0.2);
    padding: 0.88rem 1.5rem;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline-dark:hover {
    border-color: var(--navy);
    background: rgba(0,0,0,0.04);
}

/* ===================================================
   SCROLL REVEAL ANIMATION
   =================================================== */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ===================================================
   KEYFRAMES
   =================================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================
   SHARED NAV BRAND (used in NavBar & MinimalNav)
   =================================================== */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-brand-dancing {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
}

.nav-brand-dancing .accent {
    color: #60a5fa;
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
    background: var(--navy);
    padding: 1.5rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
}

.footer-logo span {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
}

/* ===================================================
   FORM FIELDS (shared across pages)
   =================================================== */
.field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
}

.field input {
    width: 100%;
    padding: 0.82rem 1rem;
    border: 1.5px solid var(--light);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--offwhite);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.field input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13,17,23,0.08);
    background: var(--white);
}

.field.hidden {
    display: none;
}

/* Validation */
.validation-message {
    font-size: 0.75rem;
    color: var(--error);
    margin-top: 2px;
}

/* ===================================================
   STICKY FOOTER
   Keep FooterBar pinned to the bottom of the viewport
   on short pages. Applies to MainLayout (.main-layout)
   only; other layouts use their own root class.
   =================================================== */
.main-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

    .main-layout main {
        flex: 1 0 auto;
    }
