/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;

    padding: 120px 20px 80px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.72)
        ),
        url("images/stage-background.jpg");

    background-size: cover;
    background-position: center;

    color: #ffffff;
}

.about-hero .container {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero p {
    max-width: 750px;
    margin: 0 auto 30px;

    font-size: 19px;
    line-height: 1.7;
    color: #e6e6e6;
}


/* =========================
   GENERAL ABOUT SECTIONS
========================= */

.about-section {
    padding: 90px 20px;
}

.about-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-section > .container > p {
    max-width: 850px;
    margin-bottom: 18px;

    font-size: 17px;
    line-height: 1.8;
    color: #444444;
}


/* =========================
   ALTERNATING SECTION
========================= */

.about-alt {
    background: #f5f5f5;
}


/* =========================
   PRODUCT CARDS
========================= */

.about-product-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
    margin-top: 40px;
    margin-bottom: 45px;
}

.about-product-card {
    padding: 30px;

    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.about-product-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);
}

.about-product-card h3 {
    margin-bottom: 12px;

    font-size: 23px;
    font-weight: 700;
}

.about-product-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
}

.about-product-text {
    margin-top: 20px;
}


/* =========================
   HIGHLIGHT MESSAGE
========================= */

.about-highlight {
    max-width: 850px;
    margin-top: 35px;

    padding: 30px 35px;

    border-left: 5px solid #111111;

    background: #ffffff;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.06);
}

.about-highlight p {
    margin: 0;

    font-size: 21px;
    line-height: 1.6;
    font-weight: 700;
}


/* =========================
   FINAL SECTION
========================= */

.about-final {
    text-align: center;

    background: #111111;
    color: #ffffff;

    padding-top: 100px;
    padding-bottom: 100px;
}

.about-final .container {
    max-width: 850px;
}

.about-final h2 {
    font-size: 44px;
}

.about-final p {
    margin-left: auto;
    margin-right: auto;

    color: #d5d5d5;
}

.about-final h3 {
    margin-top: 35px;
    margin-bottom: 30px;

    font-size: 27px;
}


/* =========================
   ABOUT PAGE BUTTONS
========================= */

.about-hero .btn,
.about-final .btn {
    display: inline-block;

    padding: 14px 28px;

    border-radius: 6px;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.about-hero .btn:hover,
.about-final .btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* =========================
   FOOTER
========================= */

.about-final + .footer {
    text-align: center;
    padding: 30px 20px;

    background: #080808;
    color: #aaaaaa;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .about-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .about-section {
        padding: 70px 20px;
    }

    .about-section h2 {
        font-size: 34px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .about-hero {
        min-height: 60vh;
        padding: 100px 20px 60px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-section {
        padding: 55px 18px;
    }

    .about-section h2 {
        font-size: 29px;
    }

    .about-section > .container > p {
        font-size: 16px;
    }

    .about-product-grid {
        grid-template-columns: 1fr;
    }

    .about-product-card {
        padding: 24px;
    }

    .about-highlight {
        padding: 25px;
    }

    .about-highlight p {
        font-size: 18px;
    }

    .about-final h2 {
        font-size: 34px;
    }

    .about-final h3 {
        font-size: 23px;
    }
}

/* Make the About page use full laptop width */

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
}

.about-hero,
.about-section,
.about-final {
    width: 100%;
}

.about-hero .container,
.about-section .container,
.about-final .container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 900px) {
    .about-hero .container,
    .about-section .container,
    .about-final .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 600px) {
    .about-hero .container,
    .about-section .container,
    .about-final .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .about-hero {
        min-height: 80vh;
    }
}