/*
Theme Name: Shawn Tucker Theme
Theme URI: https://shawnrtucker.com
Author: Shawn R. Tucker
Description: Custom theme for Shawn Tucker.
Version: 1.1
Text Domain: shawn-tucker
*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

/* ==========================
   VARIABLES
========================== */

:root{

    --bg:#FAF8F3;
    --text:#2F2F2F;
    --blue:#243447;
    --gold:#A88B52;
    --burgundy:#6E2C2C;

    --content-width:1280px;

}

/* ==========================
   RESET
========================== */

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

html{
    scroll-behavior:smooth;
}

body{

    background:var(--bg);

    color:var(--text);

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

    font-size:20px;

    line-height:1.8;

}

/* ==========================
   WRAPPER
========================== */

.st-wrapper{

    width:min(var(--content-width),92%);

    margin:auto;

}

/* ==========================
   TYPOGRAPHY
========================== */

h1,h2,h3{

    font-family:'Cormorant Garamond',serif;

    font-weight:500;

    color:var(--text);

}

a{

    color:inherit;

    text-decoration:none;

}/* ==========================
   HEADER
========================== */

header{

    padding:30px 0;

    background:var(--bg);

}

.site-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    width:min(var(--content-width),92%);

    margin:auto;

}

.logo h1{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    font-weight:500;

    line-height:1;

    margin-bottom:8px;

}

.logo h1 a{

    color:var(--text);

}

.logo p{

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:2px;

    color:var(--blue);

}

/* ==========================
   NAVIGATION
========================== */

.main-menu{

    display:flex;

    gap:42px;

    list-style:none;

    margin-top:10px;

}

.main-menu li{

    list-style:none;

}

.main-menu a{

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--text);

    transition:.25s;

    position:relative;

}

.main-menu a:hover{

    color:var(--blue);

}

.main-menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.25s;

}

.main-menu a:hover::after{

    width:100%;

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

.st-home{
    background:var(--bg);
}

.st-hero{

    padding:120px 0 90px;

}

.st-hero-inner{

    max-width:860px;

    margin:0 auto;

    text-align:center;

}

.st-label{

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

    text-transform:uppercase;

    letter-spacing:5px;

    font-size:13px;

    font-weight:600;

    color:var(--gold);

    margin-bottom:30px;

}

.st-question{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(3.5rem,7vw,5.8rem);

    font-weight:500;

    line-height:1.05;

    margin-bottom:34px;

}

.st-hero-text{

    max-width:700px;

    margin:0 auto 48px;

    font-size:1.18rem;

    color:#555;

    line-height:1.9;

}

.st-button{

    display:inline-block;

    padding:18px 42px;

    background:var(--blue);

    color:white;

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

    border-radius:3px;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:14px;

    font-weight:600;

    transition:all .25s ease;

}

.st-button:hover{

    background:transparent;

    color:var(--blue);

    transform:translateY(-3px);

}
}/* ==========================
   FOUR CONVERSATIONS
========================== */

.st-conversations{

    padding:120px 0 140px;

}

.st-section-title{

    text-align:center;

    font-size:52px;

    margin-bottom:70px;

}

.st-books{

    display:grid;

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

    gap:50px;

    align-items:start;

}

.st-book{

    text-align:center;

}

.st-book img{

    width:100%;

    max-width:220px;

    display:block;

    margin:0 auto 28px;

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

    transition:.30s;

}

.st-book:hover img{

    transform:translateY(-8px);

}

.st-book h3{

    font-size:30px;

    line-height:1.2;

    margin-bottom:18px;

    min-height:76px;

}

.st-book p{

    font-size:17px;

    line-height:1.6;

    color:#555;

    margin-bottom:22px;

    min-height:90px;

}

.st-link{

    display:inline-block;

    color:var(--blue);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:13px;

    font-weight:600;

    transition:.25s;

}

.st-link:hover{

    color:var(--gold);

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

footer{

    padding:80px 0;

    border-top:1px solid rgba(0,0,0,.08);

    text-align:center;

    font-size:15px;

    color:#666;

}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:1100px){

    .st-books{

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

        gap:60px;

    }

}

@media (max-width:768px){

    header{

        padding:20px 0;

    }

    .site-header{

        flex-direction:column;

        align-items:center;

        gap:30px;

    }

    .logo{

        text-align:center;

    }

    .main-menu{

        flex-wrap:wrap;

        justify-content:center;

        gap:18px;

    }

    .st-question{

        font-size:48px;

    }

    .st-section-title{

        font-size:40px;

    }

    .st-books{

        grid-template-columns:1fr;

        gap:70px;

    }

}