:root {
    --text-color: #222222;
    --light-brown: #dcc8ae;
    --dark-brown: #a78864;
    --button-bg: #222;
    --button-text: #fff;
}

* {
    box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color:transparent
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.4px;
    font-weight: 400;
    font-optical-sizing: auto;   
    color: var(--text-color);
    min-height: 100svh;
    background: url('assets/background/background-top.webp') no-repeat center bottom;
    background-size: cover;
}

body > .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    flex: 1;
    min-height: 100svh;
}

body.basic {
    background: #fff;
}

.container {
    width: 100%;
    max-width: 1220px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-self: center;
    position: relative;
}

a {
    transition: color 0.3s; 
    color: var(--text-color);
    text-decoration: none;
}

@media (hover: hover) {
    a:hover {
        color: #444;
    }
}

h1 {
    font-weight: 400;
    font-size: 48px;
    letter-spacing: 0.4px;
    line-height: 48px;
    margin: 0;
}

h2 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.basic .main-container {
    justify-content: flex-start;
    width: 820px;
    max-width: 100%;
    align-self: center;
    gap: 80px;
}

.hero {
    text-align: center;
    margin-top: 80px;
}

.hero img {
    max-width: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info {
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info p {
    margin: 0;
}

.contact-info h2 {
    margin: 0;
}

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background: url('assets/background/background-bottom.webp') no-repeat center bottom;
    background-size: cover;
    font-weight: 500;
    line-height: 16px;
}

.basic .footer {
    background: #fff;
}

.footer nav {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.button {
    background: #222222;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    display: flex;
    gap: 8px;
    border-radius: 48px;
    text-decoration: none;
    transition: background 0.3s;
}

@media (hover: hover) {
    .button:hover {
        background-color: #444;
        color: #fff;
    }
}



.button-container {
    position: fixed;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 140px;
    align-items: end;
}

div.mobile-nav {
    display: none;
}

.paragraph {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.paragraph h2 {
    margin: 0;
}

.paragraph p {
    margin: 0;
}

.paragraph div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.paragraph p > span {
    font-weight: 500;
}

.paragraph strong {
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        margin-top: 80px;
    }

    .spacer {
        display: none;
    }

    .button-container {
        bottom: 20px;
        position: fixed;
    }

    .button {
        width: 100%;
        justify-content: center;
    }

    .footer {
        height: 88px;
        padding: 0;
    }

    .footer nav {
        display: none;
    }

    div.mobile-nav {
        display: flex;
        gap: 40px;
        flex-direction: row;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {

}