* {
    box-sizing: border-box;
}

:root {
    --banner-height: 64px;
    --hero-gap: 32px;
}

body {
    margin: 0;
    font-family: 'Saira', sans-serif;
    color: #fff;
}

.home {
    background-color: #0B4F2B;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner {
    background-color: #0B4F2B;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    min-height: var(--banner-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
}

.banner-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.banner-title {
    font-size: 27px;
    font-weight: 500;
    margin: 0;
}

.menu-toggle {
    background-color: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 6px 0 6px 6px;
}

.menu-toggle:focus-visible {
    outline: 2px solid #FF7133;
    outline-offset: 4px;
}

.menu-toggle .line {
    display: block;
    height: 2.5px;
    min-height: 2.5px;
    max-height: 2.5px;
    width: 36px;
    background-color: #fff;
    transition: transform 234ms ease, opacity 182ms ease;
    transform-origin: center;
}

.banner.menu-open .line-1 {
    transform: translateY(9px) rotate(45deg);
}

.banner.menu-open .line-2 {
    opacity: 0;
}

.banner.menu-open .line-3 {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 208ms ease, transform 234ms ease, padding 208ms ease;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0B4F2B;
    pointer-events: none;
}

.banner.menu-open .menu-links {
    padding: 12px 0 14px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-link {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.4px;
}

.menu-link:focus-visible {
    outline: 2px solid #FF7133;
    outline-offset: 4px;
    border-radius: 4px;
    padding: 2px 6px;
}

.hero {
    padding: calc(var(--banner-height) + var(--hero-gap)) 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    margin: 0 0 var(--hero-gap);
}

.hero-intro {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400; 
    margin: 0 0 30px; 
}


.hero-image {
    width: 100%;
    max-width: 400px;
    border-radius: 5px; 
    align-self: center;
    margin-bottom: 10px; 
}

.pricing {
    background-color: #0B4F2B;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.pricing-title {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}

.pricing-day {
    font-size: 22px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 15px;
}

.price-item {
    background-color: #FF7133;
    border-radius: 10px;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.price-item + .pricing-day {
    margin-top: 22px;
}

.pricing-footer {
    margin-top: 5px;
}

.pricing-footer p {
    font-size: 16px;
    font-weight: 400;
    margin: 5px 0;
    line-height: 20px; 
}

.visit-us {
    background-color: #0B4F2B;
    padding: 50px 20px 20px;
    display: flex;
    flex-direction: column;
}

.visit-us-title {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
}

.visit-us-intro {
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
    text-align: left;
    margin: 0 0 30px 10px;
}

.opening-hours {
    background-color: #FF7133;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.opening-hours-title {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.hours-item:last-child {
    margin-bottom: 0;
}

.location {
    margin-bottom: 30px;
}

.location-title {
    font-size: 22px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 10px;
}

.location-address {
    font-size: 20px;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1.1px;
    text-underline-offset: 3px;
    margin-top: 0;
    margin-bottom: 30px;
}

.map {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 4 / 3;
    margin: 0 auto;
}

.map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer {
    background-color: #0B4F2B;
    padding: 20px;
}

.sitemap-title {
    font-size: 22px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 15px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-list li {
    margin-bottom: 10px;
}

.sitemap-list a {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-decoration: underline;
    text-decoration-thickness: 1.1px;
    text-underline-offset: 3px;
}

.sitemap-divider {
    border: 0;
    height: 1px;
    background-color: #fff;
    opacity: 0.7;
    margin: 20px 0;
}

.credits {
    margin-top: 30px;
}

.credits p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.credits a {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1.1px;
    text-underline-offset: 3px;
}
