﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #ffffff;
    overflow: hidden;
}

/* Full-screen background with a waving fabric Gloucestershire flag */
.hero-background {
    height: 100%;
    width: 100%;
    background-image: url('images/glos flag.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

/* 1. BRIGHTENED OVERLAY: Reduced opacity from 0.8 to 0.35 so the flag pops out vividly */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Landing Page Content Box */
/* 2. DARKER INNER CARD: Darkened this specific container to ensure the white text
           remains perfectly readable against the newly brightened flag behind it. */
.content-box {
    text-align: center;
    padding: 3rem 2.5rem;
    max-width: 650px;
    width: 90%;
    background: rgba(10, 20, 15, 0.88); /* Stronger dark background for text protection */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Under Development Badge */
.badge {
    display: inline-block;
    background-color: #d4fc34; /* Pickleball yellow/green */
    color: #0e2418;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 1.4rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(212, 252, 52, 0.3);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: #f1f5f9;
}

/* Call to Action Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2.8rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0e2418;
    background-color: #d4fc34; /* Pickleball yellow/green */
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #e1ff54;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 252, 52, 0.5);
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    /*background-color: red;*/
    font-size:8px;
    color: white;
    /*text-align: center;*/
}
