/* --- Ocean Breeze Palette & Reset --- */
:root {
    --bg-light: #f7fafc;       /* Crisp, airy sky background */
    --text-dark: #2d3748;      /* Deep slate gray for readable prose */
    --sea-blue: #1a5f7a;       /* Primary deep ocean blue */
    --foam-teal: #57c5b6;      /* Accent bright coastal teal */
    --sand-neutral: #f0ece3;   /* Soft beach sand accents */
    --card-white: #ffffff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

hr {
    border: 0;
    height: 1px;
    background: var(--sand-neutral);
    margin: 10px 0;
}

/* --- Header / Navigation --- */
.navbar {
    background: var(--card-white);
    border-bottom: 2px solid var(--sand-neutral);
    padding: 10px 0; /* Slightly reduced padding to match header layout proportions */
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--sea-blue);
    text-decoration: none;
}

.logo span {
    color: var(--foam-teal);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--sea-blue);
    text-decoration: none;
}

.logo-text span {
    color: var(--foam-teal);
}

/* Flex wrapper holding links and the logo together on the right */
.nav-right-wrapper {
    display: flex;
    align-items: center;
    gap: 30px; /* Space between the last nav link and your logo */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--sea-blue);
}

/* New Right-Aligned Nav Logo Styling */
.nav-logo {
    max-height: 40px; /* Limits size to sit cleanly inline with the navbar height */
    width: auto;
    display: block;
    
    /* Keeps crisp pixelated lines intact */
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* --- Airy Hero Section --- */
.hero {
    /* Forces background to cover the full width, staying vertically centered */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* Uses Flexbox to layer and perfectly center the logo and text on top */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
}

.hero-content {
    /* Removes the white background card and shadow box completely */
    background: none;
    padding: 50px 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    
    /* Centers the layout and defines width */
    max-width: 700px;
    width: 100%;
}

.hero h1 {
    font-size: 42px;
    color: #1a5f7a; /* Sea blue */
    margin-bottom: 15px;
    
    /* Adds a soft, subtle glow behind the text so it pops off the wave details */
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 
                 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #2d3748; /* Dark slate gray */
    font-weight: 500; /* Makes text slightly bolder for better legibility on a background */
    
    /* Crisp drop shadow to prevent text from washing out over light parts of the waves */
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

/* --- Hero Logo Optimization --- */
/* Keeps your pixel-art logo hovering perfectly on top */
.hero-logo {
    max-width: 120px;
    height: auto;
    display: inline-block;
    image-rendering: pixelated; 
    image-rendering: crisp-edges;
}

/* --- Functional Layout Buttons --- */
.btn-primary {
    display: inline-block;
    background-color: var(--sea-blue);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background-color: #114254;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--foam-teal);
    color: white;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 15px;
}

/* --- Section Layouts --- */
.section {
    padding: 10px 0;
}

.section h2 {
    color: var(--sea-blue);
    font-size: 28px;
}

/* --- Form Formatting --- */
.contact-form {
    background: var(--card-white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--sand-neutral);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--sea-blue);
}

/* --- Form Privacy Disclaimer Styling --- */
.form-disclaimer {
    margin-top: 20px;
    font-size: 14px;
    color: #4a5568; /* Soft slate gray */
    line-height: 1.5;
    border-top: 1px dashed var(--sand-neutral);
    padding-top: 15px;
    text-align: left;
}

.form-disclaimer strong {
    color: var(--sea-blue);
}

/* --- Footer --- */
.footer {
    background-color: var(--card-white);
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 2px solid var(--sand-neutral);
    font-size: 14px;
    color: #718096;
}
