﻿/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Make sure the page can use full viewport height */
html, body {
    height: 100%;
}

/* Body */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #000; /* only visible if image fails */
    color: #333;

    /* make layout fill screen and push footer to bottom */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Full-screen background image from <img> */
.hero-image {
    position: fixed; /* stick to viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* fill the screen */
    object-fit: cover; /* crop to cover without distortion */
    z-index: -1; /* behind all content */
    display: block;
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    padding: 16px 40px;
    display: flex;
    justify-content: flex-start;
}

.header h1 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;

    /* top padding so text sits under header, space above footer */
    padding: 0 20px 40px;

    /* take remaining space between header and footer */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* keep content toward top */
    align-items: center;
}

/* dark overlay just behind the hero text to help readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;

    /* heavier vignette focused on center so image stays but text pops */
    background:
        radial-gradient(circle at center,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.85) 100%);
}

/* glassy hero card */
.hero-content {
    position: relative;
    z-index: 1; /* above the overlay */
    max-width: 900px;
    margin-top: 40px;

    padding: 24px 32px 28px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

/* small label above the main title */
.hero-kicker {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
}

/* main hero title */
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin: 10px 0 16px;
}

/* original hero paragraph becomes bigger subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    margin: 0 auto 20px;
    max-width: 780px;
}

/* badges row under subtitle */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}

.hero-badge {
    padding: 5px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* reassurance line under badges */
.hero-footnote {
    font-size: 0.9rem;
    color: white;
    opacity: 0.9;
}

/* Button – primary filled (Get Started) */
.cta-btn-primary {
    padding: 15px 30px;
    background-color: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    margin-left: 8px;
    border: 2px solid #ff6f61;
    font-weight: 500;
}

.cta-btn-primary:hover {
    background-color: #e85b50;
    border-color: #e85b50;
}

/* Button – secondary outline (Sign In) */
.cta-btn {
    padding: 15px 30px;
    background-color: transparent;
    color: #ff6f61;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    border: 2px solid #ff6f61;
    font-weight: 500;
}

.cta-btn:hover {
    background-color: rgba(255, 111, 97, 0.15);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 10;

    display: flex;
    flex-direction: column;  /* footer = vertical stack */
    align-items: center;
    gap: 10px;
}

/* Buttons row */
.footer-buttons {
    display: inline-flex;          /* keep buttons on one line */
    justify-content: center;
    gap: 12px;                     /* space between buttons */
}

/* ensure buttons themselves don’t break strangely */
.footer .cta-btn-primary,
.footer .cta-btn {
    white-space: nowrap;
}

.footer p {
    font-size: 1rem;
    margin-top: 4px;
}

/* Logo + wordmark wrapper */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo image */
.site-logo {
    height: 48px;        /* tweak size as you like */
    width: auto;
    border-radius: 8px;  /* optional: soften corners */
}

/* Text next to the logo */
.logo-wordmark {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
}

.light-link {
    color: cyan;
}