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

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #ee7214;
    color: black;
    font-family: "aileron", sans-serif;
    font-weight: 400;
    font-style: normal;
    height: 100%;
    height: 100vh;
    height: 100dvh;
}

.site-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    /*border: 2px solid #0fce83;*/
}

.site-header .nav {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1300px;
}

@media (max-width: 1024px) {
    .site-header .nav {
        gap: 50px;
    }
}

.site-header .nav a,
.address-section a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    line-height: 2;
}


.site-header .nav .nav__logo a {
    display: flex;
    align-items: center;
}

.site-header .nav .nav__logo a:after {
    content: none !important;
}

.address-section a.wp-block-button__link {
    border: none;
    padding: 0;
}

h1.text-slogan {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 20px;
}

@media (max-width: 480px) {
    h1.text-slogan {
        flex-wrap: wrap;
    }
}

.site-header .nav a {
    font-size: 20px;
}

.site-header .nav__logo {
    display: flex;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.site-header .nav__left,
.site-header .nav__right {
    display: flex;
    flex: 1;
    gap: 1rem;
    justify-content: space-around;
}

@media (max-width: 1024px) {
    .site-header .nav__left,
    .site-header .nav__right {
        display: none;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .nav__logo {
        margin-left: -60px;
        margin-right: -60px;
    }
}

.site-header .nav a::after,
.address-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px; /* Thickness of the underline */
    background-color: #000; /* Underline color stays black */
    transition: width 0.3s ease;
}

.site-header .nav a:hover::after,
.address-section a:hover::after {
    width: 100%;
}

@media (max-width: 480px) {
    .address-section a {
        line-height: 1.5;
    }
}

.site-header .nav-item {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.site-header .nav__logo img {
    max-width: 70px;
}

@media (max-width: 1024px) {
    .site-header .nav__logo img {
        max-width: 50px;
    }
}

.site-content {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 100px;
    width: 100%;
}

@media (max-width: 1024px) {
    .site-content {
        padding: 0 50px;
    }
}

.content-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    /*border: 2px solid black;*/
}

.text-logo {
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-logo > .wp-block-group__inner-container {
    width: 100%;
}

.text-logo img {
    width: 90%;

    @media (max-width: 1440px) {
        width: 80%;
    }
}

@media (max-width: 1440px) {
    .text-logo img {
        width: 80%;
    }
}

.site-footer {
    width: 100%;
    padding: 10px 20px;
    text-align: center;
    /*border: 2px solid #3b82f6;*/
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon {
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: flex;
}

.social-icon a {
    display: flex;
}

.social-icon img {
    width: 50px;
}

.content-text,
.opening-hours-table table td,
.opening-hours-table table th,
.address-section a {
    font-family: "aileron", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
}

@media (max-width: 1440px) {
    .content-text,
    .opening-hours-table table td,
    .opening-hours-table table th,
    .address-section a {
        font-size: 24px;
    }
}

.content-text-bold {
    font-weight: 700;
}

@media (max-width: 480px) {
    .opening-hours {
        margin-bottom: 1rem;
    }
}

.opening-hours-table table {
    display: flex;
    justify-content: center;
}

.opening-hours-table table td,
.opening-hours-table table th {
    border: none;
    padding: 0;
}

.opening-hours-table table td:first-child {
    text-align: left;
    padding-right: 15px;
}

.opening-hours-table table td:last-child {
    padding-left: 15px;
}

.opening-hours-table table td {
    text-align: left;
}

.nav__toggle {
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-between;  /* Distribute space evenly between the bars */
    gap: 0.4rem;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    right: 2rem;
    width: 30px;  /* Set a consistent width for the toggle */
    height: 22px; /* Set a fixed height */
    display: none;
}

@media (max-width: 1024px) {
    .nav__toggle {
        display: flex;
    }
}

.nav__toggle-bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When menu is open, change the bars to a cross */
.nav__toggle.nav__toggle--open .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg); /* Move the top bar slightly down */
}

.nav__toggle.nav__toggle--open .nav__toggle-bar:nth-child(2) {
    opacity: 0; /* Hide the middle bar */
}

.nav__toggle.nav__toggle--open .nav__toggle-bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg); /* Move the bottom bar slightly up */
}

.nav__mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 1rem;
    background-color: #ecb27d;
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen initially */
    height: 100%;
    width: 70%; /* Adjust width as needed */
    max-width: 300px;
    transition: right 0.3s ease;
    z-index: 1000;
}

.nav__mobile-menu.nav__mobile-menu--open {
    right: 0; /* Slides into view */
}

.nav__mobile-item {
    margin: 0;
}

.nav__link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.nav__link:hover {
    text-decoration: underline;
}

/* Optional: Add overlay effect */
.nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: opacity 0.3s ease;
}

.nav__overlay.nav__overlay--visible {
    opacity: 1;
    visibility: visible;
}

.cky-consent-bar .cky-btn {
    border-color: #ee7214 !important;
    color: #ee7214 !important;
}

.cky-consent-bar .cky-btn.cky-btn-accept {
    background-color: #ee7214 !important;
    color: #fff !important;
}

.contact-page__contact-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-page__contact-details-container {
    margin: 0 auto;
}

.contact-page__phone,
.contact-page__email {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-page__contact-details-wrapper a,
.site-content a {
    text-decoration: underline;
    color: black;
}

.contact-page__contact-details-wrapper a:visited,
.site-content a:visited {
    color: black; /* Ensure visited links remain black */
}

.text-menu-container ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.text-menu-container ul li {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
}

.text-menu-container ul li strong {
    font-size: 1.2rem;
    color: #000;
}

.text-menu-container ul li span {
    display: block;
    margin-top: 5px;
    font-size: 0.95rem;
    color: #666;
}

/* =====   TEMPLATE CONTENT PAGES START   ===== */
.page-template-template-menu-page .content-wrapper,
.page-template-template-content-pages .content-wrapper {
    max-width: 1320px;
    justify-content: normal;
}

.page-template-template-menu-page .content-wrapper a,
.page-template-template-content-pages .content-wrapper a {
    color: black;
    /*text-decoration: none;*/
}

.page-template-template-content-pages .site-content {
    margin-top: 2rem;
    /*max-width: 1200px;*/
    padding: 0 20px;
}

.page-template-template-content-pages .content-wrapper {
    height: auto;
}

.page-template-template-content-pages p {
    margin: 0 0 1.5em 0;
}

.page-template-template-content-pages .site-content ul {
    list-style: none;
    padding-left: 0;
    width: fit-content;
    margin: 0 auto 1.5em auto;
}

.page-template-template-content-pages h2 {
    margin-bottom: 1.5em;
}

.page-template-template-content-pages li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 0.5em;
    text-align: left;
}

.page-template-template-content-pages .site-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: inherit;
}

.page-template-template-content-pages ul.check-list li:before {
    content: "✔";
}

.img-fat-border {
    margin: 20px 0 50px 0;
}

.img-fat-border img {
    border: 10px solid #000;
    border-radius: 20px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4)) !important;
}

.about-us-foogallery {
    margin: 20px 0 50px 0;
}

.home .address-section .wp-element-button {
    background-color: transparent;
}


/*
Aileron Regular
font-family: "aileron", sans-serif;
font-weight: 400;
font-style: normal;

Aileron Bold
font-family: "aileron", sans-serif;
font-weight: 700;
font-style: normal;
 */