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

body {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
        url("images/background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #F6F1E7;

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.35);
}

.overlay {
    text-align: center;
    max-width: 700px;

    /* Move content slightly lower */
    transform: translateY(80px);

    /* Gentle fade-in */
    animation: fadeIn 1.2s ease-out; 
}

h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 4.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

h2 {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: #D8C29A;
    margin-bottom: 30px;
}

.line {
    width: 120px;
    height: 1px;
    background: #C79A5A;
    opacity: 0.8;
    margin: 0 auto 40px;
}

.contact-row {
    margin: 22px auto;
    text-align: center;
}


.contact-row a {
    color: #F6F1E7;
    text-decoration: none;

    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(80px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .overlay {
        transform: translateY(40px);
        padding: 0 20px;
    }

    h1 {
        font-size: 3.2rem;
    }

    h2 {
        font-size: 0.8rem;
        letter-spacing: 0.4em;
    }

    .contact {
        font-size: 1rem;
    }
}
.social {
    margin-top: 30px;
}

.social a {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #F6F1E7;
    text-decoration: none;
    transition: color 0.25s ease;
}

.social a:hover {
    color: #F6F1E7;
}