/* Global layout */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: url("images/minimalistfountain5.jpeg") no-repeat center center fixed;
    background-size: cover;
    color: #e5e5e5;
    line-height: 1.6;
}

/* Background overlay — extremely light so fountain is clear */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.08); /* almost no darkness */
    backdrop-filter: blur(0px);      /* no blur at all */
    z-index: -1;
}

/* TAP‑TO‑REVEAL — hides all content until user taps */
.reveal-hidden {
    opacity: 0;
    pointer-events: none; /* prevents accidental clicks before reveal */
    transition: opacity 1.2s ease;
}

.reveal-visible {
    opacity: 1;
    pointer-events: auto;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #fff;
    color: #000;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Header */
.site-header {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 1rem 2rem;
    border-bottom: 1px solid #333;
    backdrop-filter: blur(1px);
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
}

/* Navigation */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    gap: 1rem;
}

.nav-list a {
    color: #e5e5e5;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background-color: rgba(40, 40, 40, 0.45);
    transition: background-color 0.2s ease;
}

.nav-list a:hover {
    background-color: rgba(80, 80, 80, 0.60);
}

.nav-list a[aria-current="page"] {
    background-color: rgba(120, 120, 120, 0.70);
}

/* Hero section */
.hero {
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.22);
    text-align: center;
    border-bottom: 1px solid #222;
    backdrop-filter: blur(0.5px);
}

.button-row {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.button {
    padding: 0.6rem 1.2rem;
    border: none;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.button.primary {
    background-color: #3a7bd5;
    color: #fff;
}

.button.secondary {
    background-color: #444;
    color: #fff;
}

/* Content sections */
.section {
    padding: 2.5rem 2rem;
    background-color: rgba(0, 0, 0, 0.22);
    border-bottom: 1px solid #222;
    backdrop-filter: blur(0.5px);
}

/* Lists */
.feature-list {
    list-style: disc;
    padding-left: 1.5rem;
}

/* Form container */
.form-container {
    max-width: 500px;
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

input, textarea, select {
    width: 100%;
    padding: 0.6rem;
    background-color: rgba(20, 20, 20, 0.60);
    border: 1px solid #444;
    color: #e5e5e5;
    border-radius: 4px;
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid #3a7bd5;
}

/* Confirmation message */
.confirmation-message {
    margin-top: 1rem;
    font-size: 1rem;
    color: #9ecfff;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.45);
    border-top: 1px solid #333;
    backdrop-filter: blur(1px);
}