/* Basic page styling */

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.60)
        ),
        url("background.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: #e0d4b5;
    font-family: Georgia, serif;
    text-align: center;
}


/* Main content area */

.container {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 40px 30px 100px;
}


/* Logo */

.logo {
    display: block;
    width: 320px;
    max-width: 80%;
    height: auto;

    margin: 0 auto 25px;
}


/* Navigation */

nav {
    margin: 20px 0 40px;
}

nav a {
    margin: 0 15px;

    color: #d4b06a;
    font-size: 22px;
    text-decoration: none;

    transition: color 0.25s ease;
}

nav a:hover,
nav a[aria-current="page"] {
    color: #f0d39a;
}

.nav-divider {
    color: #9f8d70;
}


/* Main headings */

h1 {
    margin: 0 0 40px;

    color: #e7d3b0;
    font-family: "Cinzel Decorative", serif;
    font-size: 82px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.15;

    text-shadow:
        2px 2px 6px rgba(0, 0, 0, 0.75),
        0 0 20px rgba(230, 200, 150, 0.15);
}

.about-title {
    font-size: 62px;
}

h2 {
    margin: 0 0 25px;

    color: #e7d3b0;
    font-family: "Cinzel Decorative", serif;
    font-size: 36px;
    font-weight: 700;
}


/* Text */

.tagline {
    margin: 0 0 50px;

    color: #f0dfc0;
    font-size: 24px;
    font-style: italic;
}

.features {
    margin: 0 0 45px;

    color: #d8c09b;
    font-size: 20px;
}

.description {
    max-width: 950px;
    margin: 0 auto 24px;

    font-size: 21px;
    line-height: 1.8;
}


/* About page sections */

.about-section {
    margin: 70px auto 0;
}

.standards-list {
    max-width: 700px;
    margin: 30px auto 0;
    padding: 0;

    font-size: 21px;
    line-height: 1.8;
    list-style: none;
}

.standards-list li {
    margin-bottom: 14px;
}

.standards-list li::before {
    content: "✓";
    margin-right: 12px;

    color: #d4b06a;
}


/* Contact link */

.contact-link {
    display: inline-block;
    margin-top: 50px;

    color: #d4b06a;
    font-size: 30px;
    text-decoration: none;

    transition: color 0.25s ease;
}

.contact-link:hover {
    color: #f0d39a;
}


/* Mobile layout */

@media (max-width: 700px) {

    .container {
        padding: 25px 20px 70px;
    }

    .logo {
        width: 240px;
    }

    h1,
    .about-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 28px;
    }

    .tagline {
        font-size: 21px;
    }

    .features,
    .description,
    .standards-list {
        font-size: 18px;
    }

    nav a {
        margin: 0 8px;
        font-size: 20px;
    }

    .contact-link {
        font-size: 25px;
    }
}