/* SniffHQ Marketing Site — style.css */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,400&display=swap');

:root {
    --navy:      #1B2D4F;
    --teal:      #3DBDB5;
    --teal-dark: #2A9E96;
    --teal-pale: #EAF8F7;
    --teal-mid:  #B2E4E1;
    --cream:     #FAFAF8;
    --gray:      #6B7280;
    --gray-light:#F3F4F6;
    --white:     #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.13);
    --radius:    14px;
    --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--navy);
    line-height: 1.6;
    font-size: 16px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    line-height: 1.2;
}

/* ── Navigation ── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--teal);
    padding: 0 2rem;
}

.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 68px;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-links a:hover { background: var(--teal-pale); color: var(--teal-dark); }
.nav-links a.active { color: var(--teal-dark); }

.nav-cta {
    background: var(--teal) !important;
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 50px !important;
    margin-left: 0.5rem;
}

.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: white;
    box-shadow: 0 4px 14px rgba(61,189,181,0.35);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61,189,181,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--navy);
}

.btn-white:hover {
    background: var(--teal-pale);
    transform: translateY(-2px);
}

/* ── Sections ── */
section { padding: 5rem 2rem; }

.container {
    max-width: 1140px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    background: var(--teal-pale);
    color: var(--teal-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    color: white;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--teal); }

.footer-copy {
    font-size: 0.82rem;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

/* ── Cards ── */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }

.form-label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
    color: var(--navy);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
    color: var(--navy);
}

.form-control:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(61,189,181,0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ── Utilities ── */
.text-center { text-align: center; }
.text-teal   { color: var(--teal); }
.bg-navy     { background: var(--navy); color: white; }
.bg-teal-pale{ background: var(--teal-pale); }

/* ── Check list ── */
.check-list { list-style: none; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
}

.check-list li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.cross-list { list-style: none; }
.cross-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    color: #9CA3AF;
}

.cross-list li::before {
    content: '–';
    font-weight: 800;
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    section { padding: 3rem 1.25rem; }
    .footer-inner { flex-direction: column; text-align: center; }
}
