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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f7f5f1;
    color: #333;
}

.hero {
    min-height: 100vh;

    background:
        linear-gradient(rgba(60,40,20,.45), rgba(60,40,20,.45)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='800'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop stop-color='%23d9c7a0'/%3E%3Cstop offset='1' stop-color='%23b58d5a'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='800' fill='url(%23g)'/%3E%3Cg fill='%23ffffff22'%3E%3Ccircle cx='200' cy='180' r='90'/%3E%3Ccircle cx='930' cy='170' r='120'/%3E%3Ccircle cx='1000' cy='650' r='160'/%3E%3Ccircle cx='260' cy='620' r='140'/%3E%3C/g%3E%3C/svg%3E");

    background-size: cover;
    background-position: center;
}

.overlay {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.card {
    background: rgba(255,255,255,.92);
    max-width: 700px;
    width: 100%;
    padding: 50px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.logo {
    font-size: 54px;
    margin-bottom: 15px;
}

h1 {
    font-size: 3rem;
    color: #7d5b2d;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

hr {
    margin: 35px auto;
    width: 120px;
    border: none;
    border-top: 2px solid #d3b37d;
}

h2 {
    color: #7d5b2d;
    margin-bottom: 20px;
}

.info p {
    margin: 18px 0;
    line-height: 1.8;
    font-size: 1.05rem;
}

.opening {
    margin-top: 35px;
    background: #f3ead9;
    padding: 18px;
    border-radius: 10px;
    font-weight: 600;
    color: #6d4b1f;
}

footer {
    background: #6d4b1f;
    color: white;
    text-align: center;
    padding: 18px;
    font-size: .9rem;
}

@media (max-width: 700px) {

    .card {
        padding: 30px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}
