/* =========================================
   PENROSE RECORD ROOM
   Week 7 Stylesheet
   ========================================= */

/* ---------- General ---------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #f1e7d5;
    color: #30251f;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

header {
    background-color: #30251f;
    color: #f1e7d5;
    padding: 22px 0;
    border-bottom: 5px solid #9a3f32;
}

.header-container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 2px;
}

.tagline {
    margin-top: 3px;
    color: #cdbb9e;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---------- Navigation ---------- */

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
}

nav a {
    color: #f1e7d5;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav a:hover {
    color: #c56a58;
}

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

.hero {
    min-height: 480px;
    background-color: #6f3029;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 70px 20px;
}

.hero-content {
    max-width: 800px;
    color: #f1e7d5;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 72px;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: 2px;
}

.hero p {
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 20px;
}

/* ---------- Buttons ---------- */

.button {
    display: inline-block;
    padding: 13px 28px;
    background-color: #f1e7d5;
    color: #6f3029;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 2px;
}

.button:hover {
    background-color: #30251f;
    color: #f1e7d5;
}

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

section {
    padding: 65px 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    margin: 0 0 35px;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    letter-spacing: 1px;
}

/* ---------- Introduction ---------- */

.intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro p {
    font-size: 18px;
}

/* ---------- Product Cards ---------- */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background-color: #e5d5bd;
    padding: 30px 25px;
    text-align: center;
    border-top: 5px solid #9a3f32;
}

.product-card h3 {
    margin-top: 5px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.product-card p {
    font-size: 15px;
}

/* ---------- Interior Page Banner ---------- */

.page-banner {
    background-color: #6f3029;
    color: #f1e7d5;
    text-align: center;
    padding: 70px 20px;
}

.page-banner h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 60px;
    letter-spacing: 2px;
}

/* ---------- Content ---------- */

.content-section {
    max-width: 850px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
}

.content-section p {
    font-size: 17px;
}

/* ---------- Contact ---------- */

.contact-info {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
}

.contact-info p {
    font-size: 18px;
}

.contact-info a {
    color: #6f3029;
    font-weight: bold;
}

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

footer {
    background-color: #30251f;
    color: #f1e7d5;
    text-align: center;
    padding: 28px 20px;
    margin-top: 30px;
}

footer p {
    margin: 5px 0;
    font-size: 14px;
}

/* ---------- Mobile ---------- */

@media (max-width: 800px) {

    .header-container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero h1 {
        font-size: 48px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .page-banner h1 {
        font-size: 44px;
    }
}