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

@font-face {
    font-family: 'GoodVibrations';

    src: url('/assets/GoodVibrations\ Script.ttf') format('ttf');
    font-weight: 100;
    font-style: oblique;
}

:root {
    --primary-color: #A68771;
    /* --primary-color: #382C23; */
    --secondary-color: #C3AA95;
    /* --secondary-color: #523E2E; */
    --tertiary-color: #DAE7B7;
    --background-color: white;

    --font-size: 16px;
    --font-family: 'GoodVibrations', sans-serif;
    --font-family-secondary: Montserrat, Arial;

    --pages-size: 30px;
}

a {
    color: black;
}

a:hover {
    color: var(--tertiary-color)
}

header {
    color: var(--background-color);
    position: fixed;
    top: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    height: 170px;
    font-size: larger;
    display: grid;
}

#main-header {
    background-color: var(--primary-color);
    align-content: center;
    display: flex;
}

header a {
    color: black;
    text-decoration: none;
}

header a:hover {
    color: var(--tertiary-color);
}

#logo {
    margin: auto;
    margin-right: 30px;
    float: right;
    height: auto;
    max-height: 100px;
    max-width: 100%;
    border-radius: 20px;
}

#logo-text {
    height: 60px;
}

#title {
    float: left;
    margin: auto;
    padding-left: 16%;
    font-family: var(--font-family);
}

#title h1 {
    font-size: 50px;
    font-weight: 100;
    padding-left: 5px;
}

#title p {
    font-family: var(--font-family-secondary);
    color: var(--tertiary-color);
}

#title a {
    font-family: var(--font-family-secondary);
    color: var(--tertiary-color);
    text-decoration: none;
}

#title a:hover {
    text-decoration: underline;
}

#textBlock {
    padding: 5%;
}

.main-header {
    position: relative;
    width: fit-content;
    left: 50%;
    transform: translate(-50%);
}

.main-header h1 {
    padding: 10px 15px;
    padding-top: 30px;
    border-bottom: var(--tertiary-color) 5px solid;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: center;
    font-family: var(--font-family-secondary);
    font-size: 2rem;
    font-weight: 300;
}

.second-header {
    padding-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    padding-left: 15px;
    border-bottom: var(--tertiary-color) 5px solid;
    font-family: var(--font-family-secondary);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    font-weight: 300;
    font-size: 25px;
}

/* #before-pages {
    height: 100%;
    align-content: center;
} */

#main p {
    font-size: 1.2rem;
    font-family: var(--font-family-secondary);
    margin-bottom: 30px;
    line-height: 2rem;
}

footer {
    display: flex;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--background-color);
    height: auto;
    width: 100%;
    font-weight: bold;
    font-size: large;
}

footer div {
    padding: 10px;
}

footer div p {
    margin-bottom: 10px;
}

.gallery {
    width: 100%;
}

.gallery img {
    width: 200px;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.map-box {
    width: 100%;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}

.map {
    height: 500px;
    width: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
}