@import url('https://fonts.googleapis.com/css2?family=Sorts+Mill+Goudy&display=swap');

/*
Theme Name: brassau
Theme URI: 
Author: 
Author URI: 
Description: 
Version: 
License: 

*/

/* Root variables for ghost/overlay effect -- #051021;*/
:root {
    --text-color: #ededed;
    --background-color: #081a36;
    --ghost-color-r: 5;
    --ghost-color-g: 16;
    --ghost-color-b: 33;
    --light-color-r: 255;
    --light-color-g: 255;
    --light-color-b: 255;
    --base-opacity: 0.90;
    --light-base-opacity: 0.03;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}
html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    min-width: 100vw;
    font-family: 'Sorts Mill Goudy', serif;
    position: relative;
    color: var(--text-color);
    background: var(--background-color);
    overflow-x: hidden;
}

/* --- FIXED BACKGROUND LAYERS --- */
.background-image,
.overlay,
.ghost-light {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
}
.background-image {
    object-fit: cover;
    filter: brightness(0.95);
    animation: slow-zoom 22s ease-in-out infinite alternate;
    will-change: transform;
    z-index: -3;
}
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -3;
    filter: brightness(0.95);
    animation: slow-zoom 22s ease-in-out infinite alternate;
    will-change: transform;
    pointer-events: none;
}

.overlay { z-index: -2; transition: background 0.8s cubic-bezier(0.4, 0, 0.2, 1);}
.ghost-light { z-index: -1; }

@keyframes slow-zoom {
    0% { transform: scale(1);}
    50% { transform: scale(1.07);}
    100% { transform: scale(1);}
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.title-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.title {
    color: var(--text-color);
    font-family: 'Sorts Mill Goudy', serif;
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 200;
    letter-spacing: -0.01em;
    line-height: 1.2;
    opacity: 0.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.title em {
    font-style: italic;
    font-weight: 200;
    color: #bdbdbd;
    font-family: "Times New Roman", Times, serif;
}
.title .sealands-delta {
    font-size: 4.8rem;
    font-weight: 200;
    font-family: "Times New Roman", Times, serif;
}
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s;
}
.scroll-arrow {
    color: #bdbdbd;
    font-size: 2.4rem;
    font-weight: 100;
    text-align: center;
    width: 30px;
    height: 50px;
    position: relative;
    transition: all 0.3s ease;
}
.scroll-down:hover .scroll-arrow {
    color: rgba(255,255,255,0.9);
    transform: translateY(5px);
}

/* --- temporary frontpage ---*/

    p { opacity: 0; transition: opacity 0.5s; margin: 0 0 0.4em 0; }
    p.visible { opacity: 1; }
    #arrow { text-align:center; font-size:2em; opacity:0.5; cursor:pointer; transition:opacity .3s; user-select:none;}
    #arrow.hidden { opacity:0; pointer-events:none;}

/* --- CONTENT SECTION --- */
.content-section {
    position: relative;
    z-index: 2;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    padding-top: 4rem;
    backdrop-filter: blur(1px);
}
.content-container {
    max-width: 600px;
    padding: 2rem;
    text-align: justify;
    margin-bottom: 4rem;
    margin-top: 2rem;
    font-size: 1.18rem;
    line-height: 1.8;
    position: relative;
    color: rgba(255,255,255,0.9);
}
.content-container p:not(:first-of-type) {
    text-indent: 1.2em;
}
.content-container h2.title {
    color: rgba(255,255,255,0.9);
    text-align: center;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 100;
    margin-bottom: 1.8rem;
    opacity: 0.85;
}
/* Dropcap styling (uncomment if you want it!) */
/*
.content-container p:first-of-type::first-letter {
    float: left;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 400;
    margin-right: 0.35rem;
    color: rgba(255,255,255,0.9);
    margin-top: 0.08em;
    font-family: 'Sorts Mill Goudy', serif;
}
*/

/* --- Responsive --- */
@media (max-width: 700px) {
    .content-container { padding: 1rem; }
}
@media (max-width: 480px) {
    .title-container { padding: 0 10px; }
    .title .sealands-delta { font-size: calc(4.2rem * 0.7); }
    .scroll-down { bottom: 20px; }
    .content-section { padding-top: 2rem; }
}