﻿@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Lobster&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bgcolor-primary: #f0f8ff;
    --bgcolor-secondary: #ffffff;
    --bgcolor-accent: #e9f6ff;
    --text-color: #083044;
    --text-secondary: #145067;
    --accent-color: #008CBA;
    --accent-color-dark: #006e91;
    --border-soft: rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', sans-serif;
    color: var(--text-color);
    line-height: 1.6;

    background:
        linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.85)),
        url('../img/bg-pattern.jpg');
    background-size: 300px;
    background-repeat: repeat;
    background-attachment: fixed;
}

header {
    text-align: center;
    padding: 30px 20px;
    background: var(--bgcolor-secondary);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

#page-logo {
    width: 130px;
    height: auto;
    margin-bottom: 10px;
}

header h1 {
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    color: var(--text-secondary);
}

#body {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

section {
    background: var(--bgcolor-secondary);
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-bottom: 35px;
    border-left: 6px solid var(--accent-color);

    transition: transform .15s ease, box-shadow .15s ease;
}

section:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

section h2 {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

button {
    font-family: 'Lexend', sans-serif;
    background: var(--accent-color);
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: background .2s ease, transform .1s ease;
}

button:hover {
    background: var(--accent-color-dark);
    transform: translateY(-2px);
}

dl dt {
    font-weight: 700;
    margin-top: 10px;
}

dl dd {
    margin-left: 10px;
    margin-bottom: 10px;
    font-weight: 400;
}

a {
    color: var(--accent-color-dark);
    text-decoration: none;
    transition: color .2s;
}

a:hover {
    color: var(--accent-color);
}

#reservations ul {
    list-style: none;
    margin-top: 10px;
}

#reservations li {
    margin-bottom: 5px;
}

footer {
    text-align: center;
    padding: 20px;
    background: var(--bgcolor-secondary);
    margin-top: 50px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-soft);
}
