body, html { height: 100%; margin: 0; font-family: Arial, sans-serif; }

.logo {
    font-family: system-ui, sans-serif;
    font-size: 2.0rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: white;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.hero {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("Background.jpg"); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: fixed;
    filter: brightness(0.4);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(40, 60, 100, 0.45); /* translucent deep blue */
    position: fixed;
    z-index: -1;
}

.hero-content {
    max-width: 800px;        
    padding: 2rem;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.3rem, 5.0vw, 3.3rem);
    font-weight: 300;
    color: rgb(255,216,0);
    margin-bottom: 1.5rem;
}


.subtitle {
    margin-bottom: 1.0rem;
    font-family: "Cormorant Garamond", serif;
    color: rgb(255,216,0);
    font-size: 1.5rem;
    opacity: 0.9;
}

