/* ==========================
   SEVENTH WINES
   Version 0.1
========================== */

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

html{
    scroll-behavior:smooth;
}

body{

    background:#f7f3ed;

    color:#1f1f1f;

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

    line-height:1.7;

}

img{

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

/* ==========================
   Navigation
========================== */

nav{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    padding:28px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(247,243,237,.92);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(0,0,0,.05);

}

.logo{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    letter-spacing:6px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:40px;

}

nav li{

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

}

/* ==========================
   Hero
========================== */

.hero{

    height:100vh;

    background:url("images/hero.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    z-index:5;

    text-align:center;

    color:white;

    width:min(700px,90%);

}

.hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:100px;

    letter-spacing:14px;

    font-weight:400;

}

.hero h2{

    margin-top:10px;

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    font-weight:300;

}

.hero p{

    margin:40px auto;

    font-size:20px;

    opacity:.92;

}

.small{

    margin-top:22px;

    font-size:14px;

    opacity:.8;

}

/* ==========================
   Button
========================== */

.button{

    display:inline-block;

    background:white;

    color:#1f1f1f;

    padding:18px 42px;

    border-radius:999px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:13px;

    transition:.35s;

}

.button:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 35px rgba(0,0,0,.18);

}

/* ==========================
   Sections
========================== */

section{

    padding:150px 10%;

}

.container{

    max-width:1150px;

    margin:auto;

}

section h2{

    font-family:'Cormorant Garamond',serif;

    font-size:62px;

    margin-bottom:35px;

    font-weight:400;

}

section p{

    max-width:700px;

    font-size:20px;

    color:#555;

}

/* ==========================
   Philosophy
========================== */

.three-columns{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:70px;

    margin-top:80px;

}

.three-columns h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    margin-bottom:20px;

}

/* ==========================
   Waitlist
========================== */

#waitlist{

    background:#efe8dd;

    text-align:center;

}

form{

    margin-top:60px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

input{

    width:420px;

    max-width:90%;

    padding:18px;

    border:none;

    font-size:16px;

    border-radius:6px;

}

button{

    border:none;

    background:#222;

    color:white;

    padding:18px 38px;

    border-radius:6px;

    cursor:pointer;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.3s;

}

button:hover{

    background:#444;

}

/* ==========================
   Footer
========================== */

footer{

    background:#181818;

    color:white;

    text-align:center;

    padding:90px 10%;

}

footer h3{

    font-family:'Cormorant Garamond',serif;

    font-size:48px;

    letter-spacing:6px;

}

footer p{

    margin-top:15px;

    opacity:.7;

}

/* ==========================
   Mobile
========================== */

@media(max-width:900px){

.hero h1{

    font-size:62px;

    letter-spacing:8px;

}

.hero h2{

    font-size:26px;

}

nav{

    flex-direction:column;

    gap:18px;

}

.three-columns{

    grid-template-columns:1fr;

}

section h2{

    font-size:44px;

}

}