:root {
    --bg-overlay: rgba(46, 45, 94, 0.51); /* Derived from site source */
    --text-color: #ffffff;
    --font-heading: 'Nobile', sans-serif;
    --font-body: 'Merriweather', serif;
}

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

body, html {
    height: 100%;
    font-family: var(--font-heading);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Image Handling */
body {
    background-image: url('assets/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

/* Overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-overlay);
    z-index: -1;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 2vw; /* From dump: pagePadding: 2vw */
    position: relative;
    z-index: 1;
}

header {
    padding-top: 1.1vw; /* From dump: header-vert-padding: 1.1vw */
    padding-bottom: 1.1vw;
    margin-bottom: 2rem;
    display: flex;
    justify-content: flex-start;
}

.logo-img {
    height: 37px; /* From dump: header-logo-height: 37px */
    width: auto;
    /* Removed filter: brightness(0) invert(1); assuming logo is correct asset */
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero-text {
    font-family: var(--font-heading);
    font-size: 3.5rem; /* Large but not H1 giant */
    font-weight: 400; /* Nobile 400 is common */
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: 0px;
    white-space: pre-wrap; /* From dump */
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem; /* Slightly wider */
    background-color: #ffffff;
    color: #000000; /* Black text on white button is standard primary */
    text-decoration: none;
    text-transform: none; /* Dump didn't explicitly say uppercase for button text, trying normal */
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    border-radius: 300px; /* Pill shape */
    transition: opacity 0.3s ease;
    border: none; /* Solid style usually has no border */
}

.btn:hover {
    opacity: 0.9;
}

footer {
    padding-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-family: var(--font-heading); /* Usually footer is sans-serif too */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .site-wrapper {
        padding: 6vw; /* From dump: mobile-header-vert-padding */
    }
    
    .hero-text {
        font-size: 2.5rem;
    }
    
    .logo-img {
        height: 30px; /* From dump: header-mobile-logo-max-height */
    }
}
