/* Custom styles for Mandurah Millions
 *
 * The design draws inspiration from the vintage postcard provided by the
 * customer.  Warm creams and sun‑washed oranges are used as the base
 * palette, complemented by rich teal accents.  Typography is set in
 * Montserrat to provide a clean, modern feel that still pairs well with the
 * retro imagery.
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

/* Colour palette */
:root {
    --cream: #fdf6e3;
    --sunset: #f8b500;
    --ocean: #006d77;
    --sand: #fae5d3;
    --forest: #2a9d8f;
    --text-dark: #333;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Hero section */

/* Header section now contains a centred logo instead of a background image */
.hero-section {
    background-color: #163D44;
    text-align: center;
}

/* Style for the logo image in the header */
.logo-image {
    max-width: 100%;
    height: auto;
}

/* About section */
.about-section {
    padding: 3rem 0;
}

.about-section h2 {
    color: var(--ocean);
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Form styles */
.signup-card {
    background-color: var(--sand);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.signup-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--ocean);
}

.form-label {
    font-weight: 600;
}

.btn-primary {
    background-color: var(--ocean);
    border-color: var(--ocean);
}

.btn-primary:hover {
    background-color: var(--forest);
    border-color: var(--forest);
}

/* Postcard image styling */
.postcard {
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--ocean);
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

/* Responsive spacing */
@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-section {
        height: 200px;
    }
}