:root {
    --brown: #E9AF8D;
    --blue: #8DC7E9;
    --bg: #3F505A;
    --fg: #FFFFFF;
}

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

html {
    font-size: 14pt;
}

body {
    background-color: var(--bg);
    font-family: 'Oswald', sans-serif;
    color: var(--fg);
    
    min-height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    max-width: 100%;
    max-width: 100vw;
    max-width: 100dvw;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    text-align: center;
    padding: 1.33rem;
}

.container {
    width: 100%;
}

.logo {
    max-width: 90%;
    margin-bottom: 2rem;
    display: block;
    margin: 1rem auto;
}

.tagline {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.address {
    font-size: 1.33rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.booking-section {
    margin-bottom: 1rem;
}

.booking-text {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.phone-number {
    color: var(--blue);
    font-size: 1.66rem;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 1rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.phone-number:hover {
    background-color: var(--brown);
    color: var(--blue);
}

.book-online-btn {
    background-color: var(--blue);
    color: var(--bg);
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.book-online-btn:hover {
    background-color: var(--brown);
    color: var(--bg);
}

.hours-section {
    margin-bottom: 1rem;
}

.closed-days {
    font-size: 1.33rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.hours-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hours-list {
    font-size: 1.33rem;
    line-height: 1.8;
}

.day {
    font-weight: 500;
}

.time {
    font-weight: 300;
}

footer {
    font-size: 0.66rem;
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    html {
        font-size: 16pt;
    }
    
    .container {
        max-width: 66%;
    }
    
    .tagline {
        font-size: 2rem;
    }
    
    .address {
        font-size: 2rem;
    }
    
    .phone-number {
        font-size: 2.33rem;
    }
}