html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    overflow-x: hidden;
}

.container {

    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

h1 {
    font-family: "Playfair", serif;
}

header {

    display: grid;
    grid-template-columns: 1fr 100px;
    align-items: center;
    padding: 10px 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    left: 15px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, .95);
}

.logo-box {

    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-right: -100px;
}

header img {
    width: 50px;
}

.logo-text {

    font-family: "Playfair", serif;
    font-weight: 600;
    font-size: 24px;
}

.contact-header-button {

    border: 0;
    height: fit-content;
    padding: 12px 16px;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .4s ease;
    background-color: #DDD;
}

.contact-header-button:hover {
    background-color: #CCC;
}

.head-box {

    background-image: url("../images/cover.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
    color: #FFF;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px;
}

.head-title {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 60px;
    font-weight: 600;
    gap: 5px;
}

.tagline {
    font-weight: 500;
    font-size: 20px;
}

.section {
    padding: 60px 15px;
}

.section h2 {

    font-family: "Playfair", serif;
    font-weight: 700;
    font-size: 40px;
    text-align: center;
}

.sub-title {

    font-family: "Playfair", serif;
    font-style: italic;
    display: block;
    margin-bottom: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.section-desc {
    text-align: center;
    opacity: .85;
}

.services {
    margin-top: 40px;
}

.services-list {

    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.services-list li {

    background-color: #EAEAEA;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
}

#contact {
    background-color: #222;
    color: #FFF;
}

#contact a {
    color: #FFF;
}

#contact a:hover {
    text-decoration: underline;
}

.contact-list {

    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px 40px;
    flex-wrap: wrap;
    margin: 20px auto 0;
}

.contact-info {

    margin-top: 30px;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

footer {

    background-color: #000;
    color: #FFF;
    padding: 20px;
    text-align: center;
}

@media(max-width: 550px) {

    header img {
        width: 40px;
    }

    .logo-text {
        font-size: 20px;
    }

    .contact-header-button {
        display: none;
    }

    .head-title {
        font-size: 40px;
    }

    .tagline {
        font-weight: 500;
        font-size: 18px;
    }
}
