* {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Special+Elite&display=swap');

:root {
    --light-bg: #f5f2ed;
    --dark-text: #2b241c;
    --medium-bg: #e2cca7;
    --accent: #bd7f49;
    --accent-dark: #a66a3c;
    --grey: #837f7a;
}

body {
    font-family: Arial, serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", "Outfit";
}

a {
    color: var(--dark-text);
    text-decoration: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--light-bg);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
    padding: 0;
}

.nav-links a {
    margin-top: 10px;
}

.hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('images/lake.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-bg);
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    padding: 20px;
}

.star_box {
    height: 100px;
}

.statistics {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    gap: 30px;
}

.statistics .statsbox {
    flex: 0 0 325px;
    padding: 20px;
    height: 325px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: var(--medium-bg);
    box-shadow: 5px 5px 13px rgba(0,0,0,0.3);
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 50px;
    width: 100%;
    padding: 50px;
    padding-top: 125px;
    background-color: var(--light-bg);
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 20px;
    padding: 50px 0;
    background-color: var(--light-bg);
}

.services h2 {
    grid-column: 1/4;
    text-align: center;
    margin-bottom: 40px;
}

.service-card {
    width: 300px;
    text-align: center;
}

.image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services h3 {
    margin-top: 10px;
}

label, input {
    display: block;
    width: 100%;
    padding-bottom: 5px;
}

input {
    margin-bottom: 10px;
}

label {
    padding-top: 10px;
}

.form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    margin: auto;
    gap: 100px;
    padding: 50px 0;
}

.form-content {
    margin-left: 50px;
}

form {
    max-width: 600px;
    width: 100%;
    padding: 10px;
    background-color: var(--medium-bg);
    border-radius: 15px;
    margin-right: 50px;
    box-shadow: 5px 5px 13px rgba(0,0,0,0.3);
}

form button {
    background-color: var(--accent);
    color: white;
}

form button:hover {
    background-color: var(--accent-dark);
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--light-bg);
    border-top: 2px solid var(--dark-text);
}

footer a {
    margin: 0 20px;
}

button {
    background-color: var(--accent);
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: bolder;
    box-shadow: 5px 5px 13px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.form-section {
    padding: 80px 0;
}
