﻿/* Typography */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: inherit;
    line-height: 1.6;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    margin-top: 0;
}

/* Layout */
.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Accent colour (Dark Reader will invert it) */
:root {
    --accent: #2fd0e0; /* main turquoise */
    --accent-dark: #1f4f7a; /* deep blue from logo */
}


/* Header */
.site-header {
    padding: 1.5rem 0;
    border-bottom: 2px solid rgba(47,92,143,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

    .logo a {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }

    .logo img {
        height: 48px;
        width: auto;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

/* Navigation */
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.site-nav a {
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
    opacity: 0.8;
    padding: 0.3rem 0.4rem;
    border-radius: 4px;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

    .site-nav a:hover {
        background-color: rgba(47,208,224,0.15); /* turquoise tint */
        opacity: 1;
    }

/* Hero */
.hero {
    padding: 5rem 0 4rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}


.hero-bg {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 200px;
    background: url('../img/hero-curve.svg') no-repeat center top;
    background-size: cover;
    opacity: 0.25; /* gentle, migraine-friendly */
    pointer-events: none;
}

.subtitle {
    margin-top: 1rem;
    font-size: 1.2rem;
    opacity: 0.85;
}

/* Button */
.button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.6rem;
    border: 1px solid var(--accent);
    color: var(--accent-dark); /* deep blue text */
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

    .button:hover {
        background-color: rgba(47,208,224,0.15); /* turquoise tint */
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        opacity: 0.95;
    }

/* Sections */
section {
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(47,208,224,0.25); /* turquoise */
}

/* Cards */
.service-item, .trust-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid rgba(47,208,224,0.25); /* turquoise */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

    .service-item:hover, .trust-item:hover {
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        transform: translateY(-2px);
    }

/* Footer */
.footer {
    text-align: center;
    padding: 2rem
}

.section-divider {
    width: 100%;
    height: 80px;
    background: url('../img/divider-curve.svg') no-repeat center;
    background-size: cover;
    opacity: 0.25;
    margin: 0;
    pointer-events: none;
}

/* Contact form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* space between fields */
    max-width: 600px;
}

    .contact-form label {
        font-family: 'Merriweather', serif;
        font-weight: 400;
        margin-bottom: 0.3rem;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
        font-family: 'Lato', sans-serif;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

.captcha-wrapper {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    background-color: #2a6f97;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .button:hover {
        background-color: #1f5676;
    }
