/* =============================================================================
   RESET & BASE
   ============================================================================= */

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

:root {
    --ocean:      #1a7fc1;
    --ocean-dark: #0d5a8f;
    --ocean-light:#e8f4fd;
    --sand:       #f5e6c8;
    --sand-dark:  #e8d5a3;
    --white:      #ffffff;
    --text:       #2c2c2c;
    --text-light: #666666;
    --border:     #dde6ee;
    --radius:     12px;
    --shadow:     0 2px 12px rgba(0,0,0,0.08);
    --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: #f4f8fb;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--ocean);
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =============================================================================
   HOMEPAGE HERO
   ============================================================================= */

.homepage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0a3d62 0%, #1a7fc1 55%, #74b9ff 100%);
}

/* Drop your hero photo as /assets/images/hero-beach.jpg to enable this overlay */
.homepage::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/hero-beach.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 1.5rem;
    max-width: 560px;
}

.hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: clamp(1rem, 3.5vw, 1.15rem);
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-content a {
    color: var(--sand);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
}
