:root {
    --primary-font: 'Inter', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --text-color: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.1);
}

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

body, html {
    min-height: 100%;
    font-family: var(--primary-font);
    background-color: #1a1a1a;
    color: var(--text-color);
}

/* Background image setup */
body {
    background: url('assets/background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: 1;
    pointer-events: none;
}

/* Page content wrapper for scrolling */
.page-wrapper {
    position: relative;
    z-index: 5;
    padding: 6rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.text-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.6;
}

.text-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.text-content h2 {
    font-family: var(--heading-font);
    margin: 2rem 0 1rem;
}

.text-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

footer {
    position: relative;
    width: 100%;
    padding: 3rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    z-index: 10;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 2rem;
    z-index: 10;
}

nav .logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

main {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    padding: 1rem;
}

.hero .content {
    text-align: center;
    max-width: 800px;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero .content.visible {
    opacity: 1;
    transform: translateY(0);
}

h1 {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

@media (max-width: 600px) {
    .hero .content {
        padding: 2rem 1rem;
    }
}
