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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter, sans-serif;
    background:#fff;
    color:#111;
    line-height:1.7;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding-left:20px;
    padding-right:20px;
}

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

.site-header{
    position:sticky;
    top:0;
    background:#fff;
    border-bottom:1px solid #eee;
    z-index:100;
}

.site-header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo{
    font-size:28px;
    font-weight:800;
    color:#000;
    text-decoration:none;
}

.main-nav ul{
    display:flex;
    gap:30px;
    list-style:none;
}

.main-nav a{
    text-decoration:none;
    color:#111;
    font-weight:600;
}

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

.hero{
    padding:100px 0 50px;
    text-align:center;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
    font-weight:900;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    color:#666;
    max-width:800px;
    margin:auto;
}

/* =========================
   POPULAR STYLES
========================= */

.popular-styles{
    padding:80px 0;
}

.popular-styles h2{
    font-size:42px;
    text-align:center;
    margin-bottom:40px;
}

.popular-styles ul{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

    list-style:none;
}

.popular-styles li a{

    display:block;

    border:1px solid #eee;

    padding:25px;

    border-radius:16px;

    text-decoration:none;

    color:#111;

    transition:.3s;
}

.popular-styles li a:hover{

    transform:translateY(-5px);

    border-color:#000;
}

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

.site-footer{

    margin-top:80px;

    padding:40px 0;

    border-top:1px solid #eee;

    text-align:center;
}