/* --------------------------------------------------
   KING OF STAMPS
   Rhod Smith
-------------------------------------------------- */

:root{
    --bg:#0b0d10;
    --panel:#13171d;
    --gold:#d8b36a;
    --gold-light:#e6c98f;
    --text:#f4f4f4;
    --muted:#b5b5b5;
    --border:rgba(216,179,106,.3);
}

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    color:var(--text);

    background:
        linear-gradient(rgba(8,10,12,.78),rgba(8,10,12,.88)),
        url("london.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    line-height:1.7;
}

/* ---------------- Header ---------------- */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

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

    padding:22px 8%;

    backdrop-filter:blur(12px);

    background:rgba(5,5,5,.25);

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

    z-index:1000;
}

.logo{

    font-family:'Cinzel',serif;
    font-size:1.5rem;
    letter-spacing:4px;
}

nav{

    display:flex;
    gap:35px;
}

nav a{

    color:white;
    text-decoration:none;
    text-transform:uppercase;
    font-size:.9rem;
    letter-spacing:2px;
    transition:.3s;
}

nav a:hover{

    color:var(--gold);
}

/* ---------------- Hero ---------------- */

.hero{

    min-height:100vh;

    display:flex;
    align-items:center;

    padding:140px 8% 80px;
}

.hero-content{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;

    width:100%;
}

.subtitle{

    font-family:'Cinzel',serif;
    color:var(--gold);

    letter-spacing:3px;
    text-transform:uppercase;

    margin-bottom:20px;
}

h1{

    font-family:'Cinzel',serif;
    font-size:5rem;
    line-height:1.05;

    margin-bottom:25px;
}

.coming-soon{

    display:inline-block;

    padding:12px 28px;

    border:2px solid var(--gold);

    color:var(--gold);

    font-family:'Cinzel',serif;
    font-size:1.3rem;
    letter-spacing:4px;

    margin-bottom:30px;
}

.tagline{

    font-size:1.5rem;

    margin-bottom:15px;
}

.description{

    color:var(--muted);

    max-width:550px;

    margin-bottom:40px;
}

.button{

    display:inline-block;

    padding:18px 40px;

    background:var(--gold);

    color:#111;

    text-decoration:none;

    font-weight:600;

    border-radius:4px;

    transition:.35s;
}

.button:hover{

    background:var(--gold-light);

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(216,179,106,.25);
}

/* ---------------- Book ---------------- */

.hero-book{

    text-align:center;
}

.hero-book img{

    width:100%;
    max-width:420px;

    border-radius:8px;

    box-shadow:
        0 35px 70px rgba(0,0,0,.65);

    animation:float 6s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ---------------- Sections ---------------- */

section{

    padding:90px 8%;
}

.container{

    max-width:900px;
    margin:auto;
}

.story{

    background:rgba(8,10,12,.88);

    border-top:1px solid rgba(255,255,255,.05);
}

.story h2,
.signup h2{

    font-family:'Cinzel',serif;

    font-size:2.4rem;

    color:var(--gold);

    margin-bottom:30px;
}

.story p{

    margin-bottom:20px;

    color:#d9d9d9;

    font-size:1.1rem;
}

/* ---------------- Quote ---------------- */

.quote{

    text-align:center;

    background:
        linear-gradient(rgba(10,10,10,.65),rgba(10,10,10,.75)),
        url("london.jpg");

    background-position:center;
    background-size:cover;
}

blockquote{

    max-width:900px;

    margin:auto;

    font-family:'Cinzel',serif;

    font-size:2.3rem;

    color:white;

    line-height:1.5;
}

/* ---------------- Signup ---------------- */

.signup{

    background:var(--panel);

    text-align:center;
}

.signup p{

    color:var(--muted);

    margin-bottom:40px;
}

form{

    display:flex;
    justify-content:center;
    gap:15px;

    flex-wrap:wrap;
}

input{

    width:380px;

    padding:18px;

    border:none;

    border-radius:5px;

    font-size:1rem;
}

button{

    padding:18px 36px;

    background:var(--gold);

    border:none;

    border-radius:5px;

    color:#111;

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

    transition:.3s;
}

button:hover{

    background:var(--gold-light);

    transform:translateY(-2px);
}

/* ---------------- Footer ---------------- */

footer{

    background:#090b0d;

    text-align:center;

    padding:50px 20px;

    border-top:1px solid rgba(255,255,255,.05);
}

footer h3{

    font-family:'Cinzel',serif;

    letter-spacing:3px;

    margin-bottom:10px;
}

footer p{

    color:#999;

    margin-top:10px;
}

/* ---------------- Responsive ---------------- */

@media(max-width:900px){

.hero-content{

    grid-template-columns:1fr;

    text-align:center;
}

.description{

    margin:auto auto 40px;
}

h1{

    font-size:3.5rem;
}

.hero{

    padding-top:140px;
}

.hero-book{

    order:-1;
}

.hero-book img{

    max-width:320px;
}

nav{

    display:none;
}

blockquote{

    font-size:1.8rem;
}

input{

    width:100%;
    max-width:400px;
}

}
