
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Lato:wght@300;400&display=swap');

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

body {
    font-family: 'Lato', sans-serif;
    background: black;
    color: #f5f5f5;
    line-height: 1.6;
}

header {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 1em 2em;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
    color: #ffd700;
}

nav a {
    margin-left: 1.5em;
    color: #ddd;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffd700;
}

.hero {
    background: url('background.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2em;
    color: #fff;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4em;
    color: #ffd700;
    margin-bottom: 0.5em;
}

.hero-content p {
    font-size: 1.2em;
}

section {
    padding: 4em 2em 3em 2em;
    background-color: rgba(0, 0, 0, 0.6);
    margin: 0 auto;
    max-width: 900px;
    border-radius: 10px;
    margin-top: 2em;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    margin-bottom: 0.5em;
    color: #ffd700;
}

footer {
    text-align: center;
    padding: 2em 1em;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 0.9em;
    color: #bbb;
    margin-top: 4em;
}
