@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f1eb;
    color: #2b2b2b;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.9;
}

/* HEADER */

header {
    background: #1f2430;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

header p {
    font-size: 18px;
    color: #d9d9d9;
    max-width: 700px;
    margin: auto;
}

/* NAVIGATION */

nav {
    background: white;
    padding: 22px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}

nav a {
    color: #1f2430;
    text-decoration: none;
    margin: 0 20px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover {
    color: #8b7355;
}

/* MAIN BLOG CARD */

.blog-post {
    background: white;
    width: 85%;
    max-width: 1000px;
    margin: 60px auto;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.06);
}

/* TITLES */

.blog-post h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    margin-bottom: 25px;
    color: #1f2430;
}

/* PARAGRAPHS */

.blog-post p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444;
}

/* IMAGES */

.hero-image,
.tip-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    margin-bottom: 35px;
    display: block;
}
/* QUOTE BOX */

.quote-box {
    background: #f3eee7;
    border-left: 5px solid #8b7355;
    padding: 30px;
    margin: 40px 0;
    border-radius: 14px;

    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    color: #3b3b3b;
}

/* LISTS */

ul {
    margin: 25px 0 35px 30px;
}

ul li {
    margin-bottom: 15px;
    font-size: 18px;
}

/* ARTICLE CARDS */

.tip-card {
    background: #ffffff;
    padding: 45px;
    margin-bottom: 40px;
    border-radius: 22px;
    box-shadow: 0px 8px 24px rgba(0,0,0,0.05);
}

.tip-card h2 {
    margin-bottom: 25px;
}

/* BUTTONS */

.gumroad-btn,
.amazon-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;

    border-radius: 12px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

/* GUMROAD BUTTON */

.gumroad-btn {
    background: #1f2430;
    color: white;
}

.gumroad-btn:hover {
    background: #353c4d;
}

/* AMAZON BUTTON */

.amazon-btn {
    background: #ff9900;
    color: white;
}

.amazon-btn:hover {
    background: #e68a00;
}

/* FOOTER */

footer {
    text-align: center;
    padding: 50px 20px;
    color: #666;
    font-size: 15px;
}

/* MOBILE RESPONSIVE */

@media(max-width: 768px) {

    header {
        padding: 60px 20px;
    }

    header h1 {
        font-size: 48px;
    }

    .blog-post {
        width: 92%;
        padding: 35px;
    }

    .blog-post h2 {
        font-size: 34px;
    }

    .quote-box {
        font-size: 24px;
    }

    nav a {
        display: inline-block;
        margin: 10px;
    }

}