body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background: url('laforet.jpg') no-repeat center center;
    background-size: contain;
    background-attachment: fixed;
    background-color: #faf3e9;
    font-family: 'Poppins', sans-serif;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 243, 233, 0.9);
    border-bottom: 1px solid #e2d7c9;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.brand {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 30px;
    font-weight: bold;
    color: #3b3a2e;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: #3b3a2e;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

nav a:hover {
    color: #d6c8b4;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 100%;
    background: #3b3a2e;
    border-radius: 2px;
    transition: 0.3s;
}


main {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
    padding: 0 16px;
}

.hero {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #e2d7c9;
    padding: 24px 28px;
    border-radius: 8px;
    max-width: 720px;
}

.hero h1 {
    margin: 0 0 8px 0;
    font-family: Georgia, 'Times New Roman', serif;
    color: #2f2e24;
    font-size: 32px;
}

.hero p {
    margin: 0;
    color: #4a493c;
    font-size: 16px;
}


@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 64px;
        right: 0;
        background: rgba(250, 243, 233, 0.98);
        border-top: 1px solid #e2d7c9;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 12px 0;
        display: none;
    }

    nav.active {
        display: flex;
    }

    nav a {
        width: 100%;
        padding: 10px 20px;
        font-size: 20px;
        border-bottom: 1px solid #e2d7c9;
    }

    .menu-toggle {
        display: flex;
    }

    .brand {
        font-size: 24px;
    }


}