@charset "utf-8";
/* CSS Document */

:root {
    --gold: #b99a58;
    --dark: #222222;
    --text: #555555;
    --bg: #f8f6f2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: "Inter", sans-serif;

    background:
        linear-gradient(
            rgba(248,246,242,0.94),
            rgba(248,246,242,0.94)
        ),
       
url("images/background-champagne-week.jpg");
	
    background-size: cover;
    background-position: center;

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--dark);
}

.hero {
    width: 90%;
    max-width: 900px;
}

.content {
    text-align: center;
}

.logo {
    width: 230px;
    max-width: 80%;
    margin-bottom: 60px;
}

h1 {
    font-family: domaine, -apple-system, Arial, sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: 15px;
}

h2 {
    color: var(--text);
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.7;
}

.separator {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 50px auto;
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.construction p {
    color: var(--text);
    line-height: 1.7;
    max-width: 500px;
    margin: auto;
}

.construction span {
    display: inline-block;
    margin-top: 25px;

    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: 500;

    color: var(--gold);
}

@media (max-width: 768px) {

    .logo {
        width: 180px;
        margin-bottom: 60px;
    }

    h2 {
        font-size: 1.1rem;
    }

    h3 {
        font-size: 1.6rem;
    }

}