@font-face {
    font-family: "Graphik Bold";
    src: url("images/GraphikBold.otf") format("opentype");
    font-display: swap;
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #000;
    color: #b2b2b2;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}

/* Logo */
.logo-section {
    display: flex;
    justify-content: center;
    padding: 40px 20px 20px;
    width: 100%;
}

.logo {
    width: 120px;
    height: auto;
}

/* Hero */
.hero {
    text-align: center;
    padding: 20px 20px 10px;
    width: 100%;
    max-width: 700px;
}

h1 {
    font-family: "Graphik Bold", sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 16px;
    color: #c80000;
    margin-bottom: 20px;
}

/* Letter */
.letter {
    text-align: center;
    max-width: 700px;
    width: 100%;
    padding: 0 20px 40px;
}

.letter p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #b2b2b2;
    line-height: 1.6;
}

.letter .signature {
    margin-top: 8px;
}

/* Reviews Section */
.reviews {
    width: 100%;
    max-width: 700px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reviews h2 {
    font-family: "Graphik Bold", serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.rating {
    font-size: 16px;
    color: #b2b2b2;
    text-align: center;
}

.rating .red {
    color: #c80000;
}

/* Review Cards */
.review-card {
    background-color: #121212;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
}

.review-text {
    font-size: 16px;
    color: #b2b2b2;
    line-height: 1.6;
}

.review-divider {
    width: 100px;
    height: 2px;
    background-color: #c80000;
}

.review-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.review-author strong {
    font-size: 16px;
    font-weight: 900;
    color: #b2b2b2;
}

.fb-icon {
    width: 25px;
    height: 25px;
    display: block;
}

/* Read More */
.read-more {
    text-align: center;
    margin-top: 10px;
}

.read-more a {
    font-size: 18px;
    font-weight: 900;
    color: #c80000;
    text-decoration: none;
}

.read-more a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    width: 100%;
    background-color: #121212;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 50px 20px 80px;
}

.footer-logo img {
    width: 200px;
    height: auto;
}

.copyright {
    font-size: 14px;
    color: #b2b2b2;
    text-align: center;
}

/* Responsive - Tablet */
@media (max-width: 999px) {
    main {
        max-width: 690px;
    }
}

/* Responsive - Mobile */
@media (max-width: 689px) {
    main {
        max-width: 375px;
    }

    h1 {
        font-size: 28px;
    }

    .logo {
        width: 100px;
    }

    .reviews h2 {
        font-size: 20px;
    }

    .footer-logo img {
        width: 160px;
    }
}
