/* ==========================================
   MADEIRA KEYS
   Luxury Coming Soon Landing Page
========================================== */

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

:root{

    --gold:#d6b98c;
    --gold-light:#edd9b3;
    --sand:#f5eee4;
    --white:#ffffff;

    --overlay:rgba(20,18,16,.42);

}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;

    color:white;

    overflow:hidden;

    background:#111;

}


/* ==========================================
   BACKGROUND
========================================== */

.background{

    position:fixed;

    inset:0;

    background-image:url("imagem1.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    animation:kenburns 28s ease-in-out infinite alternate;

    transform:scale(1.05);

}


.overlay{

    position:fixed;

    inset:0;

    background:

    linear-gradient(

        rgba(18,18,18,.20),

        rgba(18,18,18,.45)

    ),

    linear-gradient(

        90deg,

        rgba(40,32,20,.25),

        rgba(20,18,16,.15)

    );

}


/* ==========================================
   HERO
========================================== */

.hero{

    position:relative;

    z-index:5;

    min-height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

}


/* ==========================================
   LOGO
========================================== */

.logo{

    width:340px;

    max-width:85%;

    margin-bottom:80px;

    animation:fadeUp 1.5s ease;

    filter:

    drop-shadow(0 0 15px rgba(214,185,140,.35));

}


/* ==========================================
   TEXT
========================================== */

.subtitle{

    color:var(--gold-light);

    letter-spacing:9px;

    font-size:14px;

    margin-bottom:18px;

    text-transform:uppercase;

}


h1{

    font-family:

    "Cormorant Garamond",

    serif;

    font-size:62px;

    line-height:0.95;

    font-weight:400;

    letter-spacing:3px;

    text-shadow:

    0 10px 40px rgba(0,0,0,.45);

}

.divider{

    width:140px;

    height:2px;

    background:var(--gold);

    margin:45px auto;

}

.coming{

    font-size:16px;

    letter-spacing:10px;

    color:var(--sand);

}


/* ==========================================
   FOOTER
========================================== */

footer{

    position:absolute;

    bottom:45px;

    width:100%;

    z-index:10;

}

.contact{

    display:flex;

    justify-content:center;

    gap:70px;

    color:white;

    font-size:15px;

    letter-spacing:1px;

}

.icon{

    color:var(--gold);

    margin-right:10px;

}


/* ==========================================
   ANIMATIONS
========================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes kenburns{

    from{

        transform:scale(1.05);

    }

    to{

        transform:scale(1.12);

    }

}


/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

.logo{

    width:180px;

    margin-bottom:55px;

}

h1{

    font-size:64px;

}

.contact{

    gap:35px;

    font-size:14px;

    flex-wrap:wrap;

}

}


/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

body{

    overflow:auto;

}

.hero{

    padding:30px;

}

.logo{

    width:145px;

    margin-bottom:45px;

}

.subtitle{

    font-size:11px;

    letter-spacing:5px;

}

h1{

    font-size:42px;

    line-height:1.05;

}

.divider{

    width:80px;

    margin:28px auto;

}

.coming{

    font-size:13px;

    letter-spacing:5px;

}

footer{

    position:relative;

    bottom:auto;

    padding-bottom:35px;

}

.contact{

    flex-direction:column;

    align-items:center;

    gap:18px;

    font-size:14px;

}

}


/* ==========================================
   LARGE SCREENS
========================================== */

@media(min-width:1800px){

.logo{

    width:260px;

}

h1{

    font-size:120px;

}

.subtitle{

    font-size:18px;

}

}
