/* General styles */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    /* Use the beach photo as the page background */
    background-image: url('./assets/beach.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    /* Apply a navy blue outline around text for better contrast */
    text-shadow: -1px -1px 0 #001f3f, 1px -1px 0 #001f3f, -1px 1px 0 #001f3f, 1px 1px 0 #001f3f;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

header {
    margin-top: 40px;
}

.logo {
    width: 100px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
}

.site-title {
    font-size: 2rem;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.subtitle {
    font-size: 1.8rem;
    margin: 20px 0 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Forms */
form {
    margin: 20px 0;
}

input[type="email"],
input[type="text"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

button {
    background-color: #004e7c;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #00375a;
}

.contact-link,
.home-link {
    /* Use white text with a navy outline for readability against the background */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    text-shadow: -1px -1px 0 #001f3f, 1px -1px 0 #001f3f, -1px 1px 0 #001f3f, 1px 1px 0 #001f3f;
}

.contact-link:hover,
.home-link:hover {
    text-decoration: underline;
}

footer {
    margin-top: auto;
    padding: 20px 0;
    font-size: 0.9rem;
    /* Footer text uses white with a navy outline */
    color: #ffffff;
    text-shadow: -1px -1px 0 #001f3f, 1px -1px 0 #001f3f, -1px 1px 0 #001f3f, 1px 1px 0 #001f3f;
}

.hidden {
    display: none;
}

/* Landing page specific styles */
.launch-heading {
    font-size: 3rem;
    margin-top: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.homepage .site-title {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.signup-prompt {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

