@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

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

html, body {
    height: 100%;
    width: 100%;
}

body {
    background-image: url('/images/hero-caf.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 10vh;
    padding-bottom: 5vh;
    min-height: 100vh;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 4.8rem;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.2em;
}

.hero-logo {
    margin-top: -1rem;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.contact-form-container {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 0.15em;
    }
    
    .hero-logo {
        max-width: 350px;
    }
    
    .contact-form-container {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
        letter-spacing: 0.1em;
        margin-bottom: 2rem;
    }
    
    .hero-logo {
        max-width: 290px;
        margin-bottom: 3rem;
    }
    
    .contact-form-container {
        padding: 0 0.5rem;
        max-width: 450px;
    }
}