/* Reset sectie bovenaan - Cache refresh 2024 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e5e0d2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', Verdana, Geneva, sans-serif;
}

h1 {
    text-align: center;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

main {
    flex: 1 0 auto;
    padding-top: 90px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 2rem;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

header > nav {
    max-width: 1200px;
    margin: 0 auto;
}

header.nav-hidden {
    transform: translateY(-100%);
}

header.nav-visible {
    transform: translateY(0);
}

nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5em 1.5em;
    font-family: 'Montserrat', Verdana, Geneva, sans-serif;
    box-shadow: 0 8px 32px rgba(169, 99, 59, 0.15), 0 4px 16px rgba(169, 99, 59, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: auto;
    justify-content: center;
    max-width: 900px;
}

nav:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(169, 99, 59, 0.2), 0 6px 20px rgba(169, 99, 59, 0.15);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
    flex-wrap: wrap;
    width: auto;
}

nav ul li {
    display: flex;
    justify-content: center;
}

nav ul li a {
    background: rgba(101, 100, 52, 0.9);
    backdrop-filter: blur(5px);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    padding: 0.7em 1.8em;
    border-radius: 2.5em;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', Verdana, Geneva, sans-serif;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(101, 100, 52, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

nav ul li a:hover,
nav ul li a:focus {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #656434;
    box-shadow: 0 6px 20px rgba(101, 100, 52, 0.3);
    outline: none;
    transform: translateY(-2px);
}

#logo-nav {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

#logo-nav img {
    height: 64px;
    width: auto;
    transition: transform 0.3s ease;
    margin-top: 3px;
}

#logo-nav img:hover {
    transform: scale(1.2);
}

/* Hamburger menu button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: rgba(101, 100, 52, 0.9);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(101, 100, 52, 1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Footer */
.site-footer {
    background-color: #656434;
    color: #E9E2D2;
    margin-top: 4rem;
    padding: 0;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Logo Section */
.footer-logo-section {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(233, 226, 210, 0.2);
}

.footer-main-logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Main Content */
.footer-content {
    padding: 2.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    max-width: 100%;
}

.footer-section {
    display: flex;
    flex-direction: column;
    min-height: 180px;
}



.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #E9E2D2;
    font-family: 'Poppins', Verdana, Geneva, sans-serif;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #A9633B;
}

.info-content {
    margin-top: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Address Styling */
.address {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', Verdana, Geneva, sans-serif;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', Verdana, Geneva, sans-serif;
}

.contact-label {
    font-weight: 600;
    color: #E9E2D2;
    min-width: 55px;
}

.contact-link {
    color: #E9E2D2;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: #fff;
}

.btw-number {
    color: #E9E2D2;
    font-weight: 500;
    font-family: 'Poppins', Verdana, Geneva, sans-serif;
    letter-spacing: 0.5px;
}

/* Hours Styling */
.hours-schedule {
    font-family: 'Poppins', Verdana, Geneva, sans-serif;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    padding: 0.3rem 0;
    font-size: 0.95rem;
}

.day {
    font-weight: 600;
    color: #E9E2D2;
    min-width: 140px;
    margin-right: 15px;
}

.time {
    font-weight: 500;
    color: #E9E2D2;
}

.hours-note {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(233, 226, 210, 0.8);
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(233, 226, 210, 0.2);
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.social-text {
    font-family: 'Poppins', Verdana, Geneva, sans-serif;
    font-weight: 500;
    color: #E9E2D2;
    font-size: 0.95rem;
}

/* Responsive header/nav */
@media (max-width: 900px) {
    header {
        padding: 0.5rem 1.5rem;
    }
    nav {
        padding: 0.45em 1.5em;
        gap: 1.2rem;
    }
    nav ul {
        gap: 1em;
    }
    nav ul li a {
        font-size: 1em;
        padding: 0.6em 1.4em;
    }
    #logo-nav img {
        height: 56px;
    }
    main {
        padding-top: 85px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.4rem 1rem;
    }
    
    nav {
        padding: 0.4em 2em;
        border-radius: 20px;
        position: relative;
        width: 100%;
        justify-content: space-between;
        gap: 2rem;
    }
    
    main {
        padding-top: 80px;
    }
    
    .hamburger {
        display: flex;
        order: 3;
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(169, 99, 59, 0.3);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 0.5rem;
        flex-direction: column;
        gap: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(169, 99, 59, 0.2);
    }
    
    nav ul.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        width: 100%;
        text-align: center;
        font-size: 1.1em;
        padding: 0.8em 1.5em;
        border-radius: 12px;
        background: rgba(101, 100, 52, 0.9);
        color: #fff;
        font-weight: 600;
    }
    
    nav ul li a:hover,
    nav ul li a:focus {
        background: rgba(101, 100, 52, 1);
        transform: none;
    }
    
    #logo-nav img {
        height: 60px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 0.3rem 0.8rem;
    }
    
    nav {
        padding: 0.3em 1.5em;
        border-radius: 16px;
        width: 100%;
        justify-content: space-between;
        gap: 1.8rem;
    }
    
    main {
        padding-top: 75px;
    }
    
    nav ul {
        padding: 0.8rem;
        border-radius: 12px;
    }
    
    nav ul li a {
        font-size: 1em;
        padding: 0.7em 1.2em;
    }
    
    #logo-nav img {
        height: 60px;
    }
}

@media (max-width: 550px) {
    header {
        padding: 0.25rem 0.7rem;
    }
    
    nav {
        padding: 0.28em 1.35em;
        border-radius: 14px;
        gap: 1.65rem;
    }
    
    main {
        padding-top: 73px;
    }
    
    nav ul {
        padding: 0.7rem;
        border-radius: 11px;
    }
    
    nav ul li a {
        font-size: 0.98em;
        padding: 0.65em 1.1em;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.2rem 0.6rem;
    }
    
    nav {
        padding: 0.25em 1.2em;
        border-radius: 12px;
        width: 100%;
        justify-content: space-between;
        gap: 1.5rem;
    }
    
    main {
        padding-top: 70px;
    }
    
    nav ul {
        padding: 0.6rem;
        border-radius: 10px;
    }
    
    nav ul li a {
        font-size: 0.95em;
        padding: 0.6em 1em;
    }
    
    #logo-nav img {
        height: 60px;
    }
}

/* Banner styling */
.banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    margin-top: 2rem;
}

/* Default banner styling */
.banner-image {
    margin-left: 10%;
    width: 80%;
    height: auto;
    min-height: 350px;
    max-height: 450px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 50px;
    display: block;
}

/* Banner voor grote schermen - alleen boven 768px */
@media (min-width: 769px) {
    .banner-image {
        margin-left: 15%;
        width: 70%;
        min-height: 400px;
        max-height: 500px;
        object-fit: cover;
        object-position: center 40%;
        border-radius: 40px;
    }
}

/* Banner voor extra grote schermen - betere zichtbaarheid van inhoud */
@media (min-width: 1400px) {
    .banner-image {
        margin-left: 20%;
        width: 60%;
        min-height: 450px;
        max-height: 550px;
        object-position: center 40%;
    }
}

/* Responsive banner voor tablets */
@media (max-width: 768px) {
    .banner-container {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .banner-image {
        margin-left: 5%;
        width: 90%;
        min-height: 300px;
        max-height: 400px;
        object-position: center 45%;
        border-radius: 25px;
    }
}

@media (max-width: 600px) {
    .banner-container {
        margin: 1.3rem auto;
        padding: 0 0.8rem;
    }
    
    .banner-image {
        margin-left: 3%;
        width: 94%;
        min-height: 250px;
        max-height: 350px;
        object-position: center 45%;
        border-radius: 20px;
    }
}

@media (max-width: 550px) {
    .banner-container {
        margin: 1.15rem auto;
        padding: 0 0.65rem;
    }
    
    .banner-image {
        margin-left: 1.5%;
        width: 97%;
        min-height: 230px;
        max-height: 320px;
        object-position: center 45%;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        margin: 1rem auto;
        padding: 0 0.5rem;
    }
    
    .banner-image {
        margin-left: 0;
        width: 100%;
        min-height: 220px;
        max-height: 300px;
        object-position: center 45%;
        border-radius: 15px;
    }
}

/* Extra optimalisatie voor iPhone 12 Pro Max en vergelijkbare */
@media (max-width: 430px) {
    .banner-image {
        min-height: 210px;
        max-height: 290px;
        object-position: center 45%;
    }
}

/* Extra optimalisatie voor iPhone 12/13/14 (390px breed) */
@media (max-width: 390px) {
    .banner-image {
        min-height: 200px;
        max-height: 280px;
        object-position: center 45%;
    }
    
    #h1-main {
        font-size: 2.4rem;
        margin: 1rem 0;
    }
    
    #p-main {
        width: 90%;
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .preview-title {
        font-size: 1.95rem;
        margin: 1.25rem auto 0.85rem auto;
        max-width: 92%;
        padding: 0 0.4rem 0.55rem 0.4rem;
    }
    
    .preview-text {
        font-size: 0.86rem;
        max-width: 88%;
        padding: 0 0.4rem;
        line-height: 1.45;
    }
    
    .pasta-slideshow {
        width: 93%;
        height: 200px;
    }
    
    .glass-troeven-container h2 {
        font-size: 1.95rem;
        margin-bottom: 1.15rem;
    }
}

/* Extra kleine schermen */
@media (max-width: 360px) {
    .banner-image {
        min-height: 190px;
        max-height: 260px;
        object-position: center 45%;
        border-radius: 12px;
    }
}

@font-face {
    font-family: 'Chatara Regular';
    src: url('fonts/Chatara.otf') format('opentype'),
         url('fonts/Chatara.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
  
#h1-main {
    font-family: 'Chatara Regular', Arial, sans-serif;
    font-size: 5rem;
    text-align: center;
    margin: 2rem 0;
    color: #656434;
    letter-spacing: 0.1em;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.menu-title {
    font-family: 'Chatara Regular', Arial, sans-serif;
    font-size: 4.5rem;
    text-align: center;
    margin: 2.5rem 0 2rem;
    color: #656434;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .menu-title {
        font-size: 3.5rem;
        margin: 2rem 0 1.5rem;
    }
}

@media (max-width: 600px) {
    .menu-title {
        font-size: 3rem;
        margin: 1.5rem 0 1.2rem;
    }
}

@media (max-width: 550px) {
    .menu-title {
        font-size: 2.75rem;
        margin: 1.35rem 0 1.15rem;
    }
}

@media (max-width: 480px) {
    .menu-title {
        font-size: 2.5rem;
        margin: 1.2rem 0 1rem;
    }
}

@media (max-width: 430px) {
    .menu-title {
        font-size: 2.3rem;
        margin: 1rem 0 0.9rem;
    }
}

@media (max-width: 390px) {
    .menu-title {
        font-size: 2.2rem;
        margin: 0.9rem 0 0.8rem;
    }
}

.preview-title {
    font-family: 'Chatara Regular', Arial, sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin: 2rem 0 1rem 0;
    color: #656434;
    letter-spacing: 0.05em;
    padding-bottom: 1rem;
    border-bottom: 2px solid #656434;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.preview-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #656434;
    text-align: center;
    max-width: 50%;
    margin: 0 auto 2rem auto;
    font-weight: 500;
}

.text-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

#p-main {
    background: rgba(229, 224, 210, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(169, 99, 59, 0.8);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(169, 99, 59, 0.4), 0 0 20px rgba(169, 99, 59, 0.3);
    text-align: center;
    width: 70%;
    transition: all 0.3s ease;
    margin: 2rem auto 4rem auto;
}

/* P-main voor extra grote schermen - gelijk aan banner breedte */
@media (min-width: 1400px) {
    #p-main {
        width: 60%;
    }
}

.slideshows-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 90%;
    margin: 2rem auto 4rem auto;
}

.pasta-slideshow {
    width: 450px;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.left-slideshow {
    box-shadow: 0 0 30px rgba(169, 99, 59, 0.6), 0 0 50px rgba(169, 99, 59, 0.4);
}

.right-slideshow {
    box-shadow: 0 0 30px rgba(169, 99, 59, 0.6), 0 0 50px rgba(169, 99, 59, 0.4);
}

.pasta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 20px;
}

.pasta-image.active {
    opacity: 1;
}

#p-main p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #656434;
    margin: 0;
    font-weight: 500;
}

/* Responsive text styling */
@media (max-width: 768px) {
    #h1-main {
        font-size: 3.5rem;
        margin: 1.5rem 0;
        letter-spacing: 0.05em;
    }
    
    #p-main {
        width: 85%;
        padding: 1.5rem;
        margin: 1.5rem auto 3rem auto;
    }
    
    .preview-title {
        font-size: 2rem;
        margin: 1.5rem auto 0.8rem auto;
        max-width: 85%;
        padding-bottom: 0.8rem;
    }
    
    .preview-text {
        font-size: 1rem;
        max-width: 85%;
        margin: 0 auto 1.5rem auto;
    }
    
    .slideshows-container {
        max-width: 90%;
        gap: 20px;
        margin: 1.5rem auto 3rem auto;
    }
    
    .pasta-slideshow {
        width: 350px;
        height: 350px;
    }
    
    #p-main p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (max-width: 600px) {
    #h1-main {
        font-size: 3rem;
        margin: 1.2rem 0;
    }
    
    #p-main {
        width: 88%;
        padding: 1.2rem;
        margin: 1.2rem auto 2.5rem auto;
        border-radius: 12px;
    }
    
    .preview-title {
        font-size: 2.3rem;
        margin: 1.2rem auto 0.7rem auto;
        max-width: 90%;
        padding-bottom: 0.7rem;
    }
    
    .preview-text {
        font-size: 0.95rem;
        max-width: 90%;
        margin: 0 auto 1.2rem auto;
    }
    
    .slideshows-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 1.2rem auto 2.5rem auto;
    }
    
    .pasta-slideshow {
        width: 90%;
        height: 280px;
        border-radius: 15px;
    }
    
    .pasta-image {
        border-radius: 15px;
    }
    
    #p-main p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 550px) {
    #h1-main {
        font-size: 2.75rem;
        margin: 1.1rem 0;
        letter-spacing: 0.04em;
    }
    
    #p-main {
        width: 89%;
        padding: 1.1rem;
        margin: 1.1rem auto 2.25rem auto;
        border-radius: 11px;
    }
    
    .preview-title {
        font-size: 2.2rem;
        margin: 1.15rem auto 0.75rem auto;
        max-width: 90%;
        padding-bottom: 0.65rem;
    }
    
    .preview-text {
        font-size: 0.93rem;
        max-width: 90%;
        margin: 0 auto 1.1rem auto;
    }
    
    .pasta-slideshow {
        width: 93%;
        height: 260px;
        border-radius: 13px;
    }
    
    .pasta-image {
        border-radius: 13px;
    }
    
    #p-main p {
        font-size: 0.98rem;
        line-height: 1.55;
    }
}

@media (max-width: 480px) {
    #h1-main {
        font-size: 2.5rem;
        margin: 1rem 0;
        letter-spacing: 0.03em;
    }
    
    #p-main {
        width: 90%;
        padding: 1rem;
        margin: 1rem auto 2rem auto;
        border-radius: 10px;
    }
    
    .preview-title {
        font-size: 2.1rem;
        margin: 1.2rem 0 0.8rem 0;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 0.6rem;
    }
    
    .preview-text {
        font-size: 0.9rem;
        max-width: 90%;
        margin: 0 auto 1rem auto;
    }
    
    .pasta-slideshow {
        width: 95%;
        height: 240px;
        border-radius: 10px;
    }
    
    .pasta-image {
        border-radius: 10px;
    }
    
    #p-main p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .glass-troeven-container h2 {
        font-size: 2.1rem;
        margin-bottom: 1.4rem;
    }
}

/* Menu Cards Styling */
.menu-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 3rem auto;
    flex-wrap: wrap;
}

.menu-card {
    width: 320px;
    height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(169, 99, 59, 0.4), 0 4px 16px rgba(169, 99, 59, 0.3);
    border: none;
    transition: all 0.4s ease;
    background-image: url('images/pasta_1.jpg');
    background-size: cover;
    background-position: center;
}

.menu-card:nth-child(2) {
    background-image: url('images/pizza_1.JPG');
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(169, 99, 59, 0.7), 0 8px 20px rgba(169, 99, 59, 0.5);
}

.menu-card-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Figlio Background Green.png');
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    transition: background 0.3s ease;
}

.menu-card:hover .menu-card-glass {
    background-image: url('images/Figlio Background Green.png');
    opacity: 0.95;
}

.menu-card:nth-child(2) .menu-card-glass {
    background-image: url('images/Figlio Background Terracotta.png');
}

.menu-card:nth-child(2):hover .menu-card-glass {
    background-image: url('images/Figlio Background Terracotta.png');
    opacity: 0.95;
}

.menu-card h2 {
    font-family: 'Chatara Regular', Arial, sans-serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

.menu-card p {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.menu-button {
    background: rgba(101, 100, 52, 0.9);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    padding: 0.8em 2em;
    border-radius: 2.5em;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Poppins', Verdana, Geneva, sans-serif;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(169, 99, 59, 0.5);
    border: none;
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #656434;
    box-shadow: 0 6px 20px rgba(169, 99, 59, 0.8);
    transform: translateY(-3px);
    border: none;
}

.menu-card:nth-child(1) .menu-button {
    background: rgba(169, 99, 59, 0.9);
}

.menu-card:nth-child(1) .menu-button:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #A9633B;
}

/* Responsive Menu Cards */
@media (max-width: 768px) {
    .menu-cards-container {
        gap: 30px;
        margin: 2rem auto;
    }
    
    .menu-card {
        width: 280px;
        height: 350px;
    }
    
    .menu-card h2 {
        font-size: 1.8rem;
    }
    
    .menu-card p {
        font-size: 1rem;
    }
    
    .menu-button {
        font-size: 1em;
        padding: 0.7em 1.8em;
    }
}

@media (max-width: 600px) {
    .menu-cards-container {
        gap: 25px;
        margin: 1.5rem auto;
    }
    
    .menu-card {
        width: 85%;
        max-width: 280px;
        height: 260px;
    }
}

@media (max-width: 550px) {
    .menu-cards-container {
        gap: 23px;
        margin: 1.25rem auto;
    }
    
    .menu-card {
        height: 250px;
    }
    
    .menu-card h2 {
        font-size: 1.6rem;
    }
    
    .menu-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .menu-button {
        font-size: 0.95em;
        padding: 0.6em 1.6em;
    }
}

@media (max-width: 480px) {
    .menu-cards-container {
        gap: 20px;
        margin: 1rem auto;
    }
    
    .menu-card {
        height: 240px;
    }
    
    .menu-card h2 {
        font-size: 1.5rem;
    }
    
    .menu-card p {
        font-size: 0.9rem;
        margin-bottom: 1.3rem;
    }
    
    .menu-button {
        font-size: 0.9em;
        padding: 0.55em 1.5em;
    }
}

/* Footer - Oude structuur voor andere pagina's */
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    border: none;
    overflow: hidden;
}

.footer-address {
    text-align: left;
}

.footer-address h3 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.1em;
    text-align: left;
    font-family: 'Poppins', Verdana, Geneva, sans-serif;
    color: #E9E2D2;
    letter-spacing: 0.5px;
}

.footer-address p {
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-openingstijden {
    text-align: left;
}

.footer-openingstijden h3 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.1em;
    text-align: left;
    font-family: 'Poppins', Verdana, Geneva, sans-serif;
    color: #E9E2D2;
    letter-spacing: 0.5px;
}

.footer-openingstijden p {
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

.footer-brand {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.footer-social a {
    border-bottom: none;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.instagram-icon:hover {
    transform: scale(1.2);
}

/* Footer Responsive Design - Oude structuur */
@media (max-width: 768px) {
    .footer-inner {
        padding: 1.5rem 1.5rem;
        gap: 1.5rem;
    }

    .footer-address p,
    .footer-openingstijden p {
        line-height: 1.7;
    }
}

@media (max-width: 640px) {
    .footer-inner {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        padding: 2rem 1.5rem;
    }

    .footer-brand,
    .footer-address,
    .footer-openingstijden {
        text-align: center !important;
        width: 100%;
    }

    .footer-address {
        order: 1;
        margin-bottom: 0.5rem;
    }

    .footer-address p,
    .footer-address h3 {
        text-align: center !important;
    }

    .footer-openingstijden {
        order: 2;
        margin-bottom: 1.5rem;
    }

    .footer-openingstijden h3 {
        text-align: center !important;
    }

    .footer-brand {
        order: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .footer-social {
        align-items: center;
    }

    .social-item {
        justify-content: center;
    }
}

@media (max-width: 550px) {
    .footer-inner {
        padding: 1.7rem 1.2rem;
        gap: 2.5rem;
    }

    .footer-logo {
        max-width: 140px;
        margin-bottom: 14px;
    }

    .footer-social {
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        padding: 1.5rem 1rem;
        gap: 2.5rem;
    }

    .footer-address p {
        text-align: center;
        width: 100%;
    }

    .footer-logo {
        max-width: 130px;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .social-item {
        margin-bottom: 10px;
        justify-content: center;
        width: 100%;
    }

    .footer-contact p {
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
    }
}

/* Footer Responsive Design - Nieuwe structuur */
@media (max-width: 768px) {
    .footer-logo-section {
        padding: 1.5rem 1.5rem 1rem;
    }

    .footer-main-logo {
        max-width: 160px;
    }

    .footer-content {
        padding: 2rem 1.5rem;
    }

    .footer-row {
        gap: 2rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hours-item {
        font-size: 0.9rem;
    }

    .day {
        min-width: 100px;
    }
}

/* iPad specifieke footer stijlen */
@media only screen and (min-width: 820px) and (max-width: 1366px) {
    .site-footer {
        padding: 3.5rem 0 1.5rem;
        margin-top: 3.5rem;
    }
    
    .footer-container {
        padding: 0 2.5rem;
    }
    
    .footer-logo-section {
        padding: 2.5rem 2rem 1.5rem;
    }
    
    .footer-main-logo {
        width: 200px;
        height: auto;
    }
    
    .footer-content {
        padding: 2.5rem 2rem;
    }
    
    .footer-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.25rem;
        margin-bottom: 1.2rem;
    }
    
    .address {
        font-size: 1.05rem;
    }
    
    .contact-info {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
    
    .btw-number {
        font-size: 1rem;
    }
    
    .hours-item {
        font-size: 1rem;
        padding: 0.3rem 0;
    }
    
    .hours-note {
        font-size: 0.95rem;
    }
    
    .social-link {
        padding: 1rem 1.4rem;
        border-radius: 14px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-text {
        font-size: 1rem;
    }
    
    .footer-bottom {
        padding: 1.2rem 2rem;
    }
    
    .footer-bottom-content {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .footer-logo-section {
        padding: 1.5rem 1rem 1rem;
    }

    .footer-main-logo {
        max-width: 140px;
    }

    .footer-content {
        padding: 1.5rem 1rem;
    }

    .footer-row {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
        min-height: auto;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info {
        justify-content: center;
        flex-direction: column;
        gap: 0.2rem;
        text-align: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-label {
        min-width: auto;
        text-align: center;
        display: block;
        width: 100%;
    }

    .contact-link,
    .btw-number {
        text-align: center;
        display: block;
        width: 100%;
    }

    .hours-item {
        justify-content: center;
        flex-direction: column;
        gap: 0.2rem;
        text-align: center;
    }

    .day {
        min-width: auto;
        font-size: 0.9rem;
    }

    .social-links {
        align-items: center;
    }

    .social-link {
        justify-content: center;
        max-width: 280px;
    }
}

@media (max-width: 550px) {
    .site-footer {
        margin-top: 3.3rem;
    }

    .footer-logo-section {
        padding: 1.35rem 1rem 0.9rem;
    }

    .footer-main-logo {
        max-width: 130px;
    }

    .footer-content {
        padding: 1.35rem 1rem;
    }

    .footer-row {
        gap: 1.7rem;
    }

    .footer-section h4 {
        font-size: 1.05rem;
        margin-bottom: 0.9rem;
    }

    .footer-section h4::after {
        width: 35px;
    }

    .address {
        font-size: 0.97rem;
        margin-bottom: 1.3rem;
    }

    .contact-info {
        margin-bottom: 0.7rem;
        align-items: center;
    }

    .contact-label {
        text-align: center;
        width: 100%;
    }

    .contact-link {
        font-size: 0.93rem;
        text-align: center;
        width: 100%;
    }

    .btw-number {
        font-size: 0.93rem;
        text-align: center;
        width: 100%;
    }

    .hours-item {
        margin-bottom: 0.45rem;
        padding: 0.25rem 0;
        font-size: 0.93rem;
    }

    .hours-note {
        font-size: 0.88rem;
        margin-top: 0.85rem;
    }

    .social-links {
        gap: 0.9rem;
    }

    .social-link {
        padding: 0.65rem 0.85rem;
    }

    .social-icon {
        width: 25px;
        height: 25px;
    }

    .social-text {
        font-size: 0.93rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        margin-top: 3rem;
    }

    .footer-logo-section {
        padding: 1.2rem 1rem 0.8rem;
    }

    .footer-main-logo {
        max-width: 120px;
    }

    .footer-content {
        padding: 1.2rem 1rem;
    }

    .footer-row {
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section h4::after {
        width: 30px;
    }

    .address {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .contact-info {
        margin-bottom: 0.6rem;
        align-items: center;
    }

    .contact-label {
        text-align: center;
        width: 100%;
    }

    .contact-link {
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }

    .btw-number {
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
    }

    .hours-item {
        margin-bottom: 0.4rem;
        padding: 0.2rem 0;
        font-size: 0.9rem;
    }

    .hours-note {
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        padding: 0.6rem 0.8rem;
    }

    .social-icon {
        width: 24px;
        height: 24px;
    }

    .social-text {
        font-size: 0.9rem;
    }
}

/* Specifieke styling voor 390x844 formaat */
/* Specifieke styling voor iPhone 14 Pro Max (430 x 932) - Index pagina */
@media (max-width: 430px) and (min-height: 850px) {
    #h1-main {
        font-size: 2.6rem;
        margin: 1.1rem 0;
    }
    
    #p-main {
        width: 88%;
        padding: 1.1rem;
        font-size: 1rem;
    }
    
    .preview-title {
        font-size: 2.15rem;
        margin: 1.4rem auto 0.95rem auto;
        max-width: 90%;
        padding: 0 0.5rem 0.65rem 0.5rem;
        letter-spacing: 0.01em;
    }
    
    .preview-text {
        font-size: 0.92rem;
        max-width: 88%;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .pasta-slideshow {
        width: 92%;
        height: 215px;
    }
    
    .glass-troeven-container h2 {
        font-size: 2.15rem;
        margin-bottom: 1.4rem;
    }
}

@media (max-width: 430px) {
    .hours-schedule .hours-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        margin-bottom: 0.7rem;
    }
    
    .hours-schedule .day {
        min-width: auto;
        margin-right: 0;
        font-size: 0.9rem;
    }
    
    .hours-schedule .time {
        font-size: 0.85rem;
    }
    
    /* Grotere logo voor kleine apparaten */
    #logo-nav img {
        height: 60px;
    }
    
    /* Verbeterde preview-title styling voor kleine apparaten */
    .preview-title {
        font-size: 2rem;
        margin: 1.3rem auto 0.9rem auto;
        max-width: 92%;
        padding: 0 0.5rem 0.6rem 0.5rem;
        letter-spacing: 0.01em;
    }
    
    .preview-text {
        font-size: 0.88rem;
        max-width: 85%;
        padding: 0 0.5rem;
    }
    
    .glass-troeven-container h2 {
        font-size: 2rem;
        margin-bottom: 1.3rem;
    }
}

/* Footer bottom styling */
.footer-bottom {
    background-color: #656434;
    border-top: 1px solid rgba(233, 226, 210, 0.2);
    padding: 1.5rem 0;
    margin-top: 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    font-family: 'Poppins', Verdana, Geneva, sans-serif;
    font-size: 0.95rem;
    color: #E9E2D2;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding: 1rem 0;
        margin-top: 0;
    }
    
    .footer-bottom-content {
        padding: 0 1rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.85rem;
    }
}
  
/* Over Ons page styling */
.over-ons-title {
    font-family: 'Chatara Regular', Arial, sans-serif;
    font-size: 4.5rem;
    text-align: center;
    margin: 2.5rem 0 2rem;
    color: #656434;
    letter-spacing: 0.1em;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.glass-history-frame {
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.glass-content {
    padding: 3rem;
    color: #656434;
}

.glass-content h2 {
    font-family: 'Chatara Regular', Arial, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.glass-content p {
    font-family: "Bodoni 72", "Bodoni MT", Bodoni, Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.glass-content p:last-child {
    margin-bottom: 0;
}

/* Responsive styling for Over Ons page */
@media (max-width: 1024px) {
    .over-ons-title {
        font-size: 4rem;
        margin: 2rem 0 1.5rem;
    }
    
    .glass-content {
        padding: 2.5rem;
    }
    
    .glass-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .over-ons-title {
        font-size: 3.5rem;
        margin: 2rem 0 1.5rem;
    }
    
    .glass-history-frame {
        border-radius: 25px;
    }
    
    .glass-content {
        padding: 2.5rem;
    }
    
    .glass-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .glass-content p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (max-width: 600px) {
    .over-ons-title {
        font-size: 3rem;
        margin: 1.5rem 0 1.2rem;
    }
    
    .glass-history-frame {
        border-radius: 20px;
    }
    
    .glass-content {
        padding: 2rem;
    }
    
    .glass-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .glass-content p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }
}

@media (max-width: 550px) {
    .over-ons-title {
        font-size: 2.75rem;
        margin: 1.35rem 0 1.1rem;
    }
    
    .glass-history-frame {
        border-radius: 18px;
    }
    
    .glass-content {
        padding: 1.75rem;
    }
    
    .glass-content h2 {
        font-size: 1.9rem;
        margin-bottom: 0.9rem;
    }
    
    .glass-content p {
        font-size: 0.98rem;
        line-height: 1.55;
    }
}

@media (max-width: 480px) {
    .over-ons-title {
        font-size: 2.5rem;
        margin: 1.2rem 0 1rem;
    }
    
    .glass-history-frame {
        border-radius: 15px;
    }
    
    .glass-content {
        padding: 1.5rem;
    }
    
    .glass-content h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .glass-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Specifieke styling voor iPhone Max modellen en vergelijkbare grote schermen */
@media (min-width: 431px) and (max-width: 550px) and (min-height: 850px) {
    .glass-content p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

@media (max-width: 430px) and (min-height: 850px) {
    .glass-content p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}
  
/* Contact pagina styling */
.contact-title {
    font-family: 'Chatara Regular', Arial, sans-serif;
    font-size: 4.5rem;
    text-align: center;
    margin: 2.5rem 0 2rem;
    color: #656434;
    letter-spacing: 0.1em;
}

/* Groot glaselement voor alle secties */
.glass-main-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(169, 99, 59, 0.15), 0 4px 16px rgba(169, 99, 59, 0.1);
    padding: 3rem;
    margin: 0 auto 3rem;
    width: 90%;
    max-width: 1200px;
    overflow: visible;
}

.contact-section {
    margin: 2rem auto;
    max-width: 1200px;
    width: 100%;
}

/* Kaart en Openingstijden grid layout */
.map-openingstijden-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

/* Consistente h2 styling voor alle secties */
.glass-map-container,
.glass-openingstijden-container,
.glass-contact-container {
    display: flex;
    flex-direction: column;
}

.glass-map-container h2,
.glass-openingstijden-container h2,
.glass-contact-container h2 {
    font-family: 'Chatara Regular', Arial, sans-serif;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    text-align: center;
    color: #656434;
    letter-spacing: 0.05em;
    flex: 0 0 auto;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* iPad specifieke h2 styling */
@media only screen and (min-width: 820px) and (max-width: 1366px) {
    .glass-map-container h2,
    .glass-openingstijden-container h2,
    .glass-contact-container h2 {
        font-size: 2.8rem;
        margin-bottom: 1.8rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        min-height: 4rem;
    }
}

/* Responsive h2 styling voor alle secties */
@media (max-width: 768px) {
    .glass-map-container h2,
    .glass-openingstijden-container h2,
    .glass-contact-container h2 {
        font-size: 2.5rem;
        margin-bottom: 1.8rem;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
    }
}

@media (max-width: 600px) {
    .glass-map-container h2,
    .glass-openingstijden-container h2,
    .glass-contact-container h2 {
        font-size: 2.3rem;
        margin-bottom: 1.5rem;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
        min-height: 3.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 375px) {
    .glass-map-container h2,
    .glass-openingstijden-container h2,
    .glass-contact-container h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
    }
}

.glass-map-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
}



.glass-openingstijden-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
}



.location-info {
    background: transparent;
    padding: 0.8rem 1.2rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #A9633B;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.address-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
}

.address-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}



.address-details {
    text-align: center;
}

.address-details h3 {
    color: #A9633B;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    text-align: center;
}

.address-details p {
    color: #656434;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.address-link {
    color: #A9633B;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.address-link:hover {
    color: #A9633B;
}

/* Routebeschrijving knop - Nieuw design */
.map-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.route-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #A9633B;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: 40px;
    transition: all 0.4s ease;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 15px rgba(169, 99, 59, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* iPad optimalisatie voor route button */
@media only screen and (min-width: 820px) and (max-width: 1366px) {
    .route-button {
        padding: 1rem 2.2rem;
        font-size: 1.05rem;
        letter-spacing: 0.5px;
        cursor: pointer;
    }
    
    .route-button:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(169, 99, 59, 0.3);
    }
    
    .route-text {
        font-size: 1.05rem;
    }
    
    .route-arrow {
        font-size: 1.2rem;
    }
}

/* Glanzend effect weggehaald */

/* Alle hover effecten weggehaald */

/* Active effect weggehaald */

.route-icon {
    width: 2rem;
    height: 2rem;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.route-text {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.6px;
}

.route-arrow {
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

/* Hover effect van pijl weggehaald */

/* Hover effect van icoon weggehaald */

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: none;
}

.map-wrapper iframe {
    filter: brightness(0.7) saturate(0.8) contrast(1.1);
    border: none !important;
    outline: none;
    display: block;
}

/* iPad specifieke kaart optimalisaties */
@media only screen and (min-width: 820px) and (max-width: 1366px) {
    .map-wrapper {
        border-radius: 25px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s ease;
    }
    
    .map-wrapper:hover {
        box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    }
    
    .map-wrapper iframe {
        filter: brightness(0.85) saturate(0.9) contrast(1.05);
        transition: filter 0.3s ease;
    }
    
    .map-wrapper:hover iframe {
        filter: brightness(0.95) saturate(1) contrast(1);
    }
}

/* Hover effect van iframe weggehaald */

/* Openingstijden container */
.glass-openingstijden-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.2rem 2rem;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.status-indicator.open {
    border: none;
    border-bottom: 1px solid #8f8e49;
    box-shadow: none;
}

.status-indicator.closed {
    border: none;
    border-bottom: 1px solid #A9633B;
    box-shadow: none;
}

/* Hover effect verwijderd */

.status-dot {
    width: 30px;
    height: 30px;
    position: relative;
    background-image: url('images/dot.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.status-dot.open {
    filter: invert(54%) sepia(9%) saturate(1414%) hue-rotate(28deg) brightness(94%) contrast(88%);
    animation: pulse 1.5s ease-in-out infinite;
}

.status-dot.closed {
    filter: invert(43%) sepia(19%) saturate(1966%) hue-rotate(346deg) brightness(92%) contrast(84%);
    animation: pulse 1.5s ease-in-out infinite;
}

/* Glow animation removed */

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.4);
        opacity: 1;
    }
}

.status-text {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #656434;
    text-align: center;
    margin-left: -10px;
}

.status-text.open {
    color: #8f8e49;
}

.status-text.closed {
    color: #A9633B;
}

.openingstijden-list {
    margin-bottom: 1.5rem;
}

.dag-rij {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(169, 99, 59, 0.2);
}

.dag-rij:last-child {
    border-bottom: none;
}

.dag {
    font-weight: 600;
    color: #656434;
    font-size: 1.1rem;
}

.tijd {
    color: #A9633B;
    font-weight: 500;
    font-size: 1rem;
}

.tijd.gesloten {
    color: #A9633B;
    font-style: italic;
}

.keuken-info {
    text-align: center;
    color: #A9633B;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border-bottom: 1px solid #A9633B;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.keuken-info.keuken-open {
    border-bottom-color: #A9633B;
    color: #A9633B;
}

.keuken-info.keuken-gesloten {
    border-bottom-color: #A9633B;
    color: #A9633B;
}

.keuken-info.keuken-gesloten-pulse {
    border-bottom-color: #A9633B;
    color: #A9633B;
}

/* keukenPulse animation removed */

/* Removed keuken-info hover effect */

/* Contactgegevens sectie styling */
.glass-contact-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2.5rem 2rem 2rem;
    margin: 0 auto;
    width: 100%;
    min-height: auto;
}



.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.contact-item-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 1.2rem 2rem;
    background: transparent;
    border-bottom: 1px solid #A9633B;
    transition: all 0.3s ease;
    justify-content: center;
    width: 85%;
    max-width: 420px;
}

.contact-item-main:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    border-bottom-color: #A9633B;
}

.contact-icon-main {
    font-size: 2rem;
    color: #A9633B;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-right: 0;
    position: relative;
}

.contact-icon-img {
    width: 42px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(39%) sepia(51%) saturate(638%) hue-rotate(343deg) brightness(96%) contrast(91%);
}

.contact-details-main {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    margin-left: 10px;
}

.contact-details-main h3 {
    color: #656434;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: left;
}

.contact-details-main p {
    color: #A9633B;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.contact-details-main a {
    color: #A9633B;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
    border-bottom: 2px solid transparent;
}

.contact-details-main a:hover {
    color: #A9633B;
    border-bottom-color: #A9633B;
    transform: translateY(-1px);
}

/* Specifieke styling voor adres link in contactgegevens */
.contact-item-main .contact-details-main a {
    border-bottom: none;
}

.contact-item-main .contact-details-main a:hover {
    border-bottom: none;
}

/* iPad specifieke aanpassingen voor contactgegevens */
@media only screen and (min-width: 820px) and (max-width: 1366px) {
    .contact-grid {
        gap: 2.5rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .contact-item-main {
        transition: all 0.2s ease;
        cursor: pointer;
    }
    
    .contact-item-main:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.08);
    }
    
    .contact-details-main h3 {
        font-size: 1.15rem;
    }
    
    .contact-details-main p {
        font-size: 1.05rem;
    }
    
    .dag-rij {
        transition: background 0.2s ease;
    }
    
    .dag-rij:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .dag {
        font-size: 1.15rem;
    }
    
    .tijd {
        font-size: 1.05rem;
    }
}

/* Responsive aanpassingen voor contactgegevens */
@media (max-width: 768px) {
    .glass-contact-container {
        padding: 1.5rem;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-item-main {
        padding: 1rem 1.5rem;
        gap: 1.2rem;
        width: 90%;
        max-width: 380px;
        background: transparent;
        border-bottom: 1px solid #A9633B;
    }
    
    .contact-icon-main {
        font-size: 1.6rem;
        width: 40px;
        height: 40px;
        left: -5px;
    }
    
    .contact-icon-img {
        width: 30px;
    }
    
    /* Zorg ervoor dat alle secties dezelfde breedte hebben op kleine schermen */
    .glass-map-container,
    .glass-openingstijden-container {
        max-width: none;
        width: 100%;
    }
}

/* iPad Pro 12.9" - Landscape (1366x1024) */
@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .contact-title {
        font-size: 4rem;
        margin: 2rem 0 2rem;
    }
    
    .glass-main-container {
        padding: 2.5rem;
        width: 85%;
        max-width: 1200px;
    }
    
    .map-openingstijden-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-contact-container {
        padding: 2rem;
        min-height: 450px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    .status-text {
        font-size: 1rem;
    }
    
    .contact-item-main {
        padding: 1rem 1.8rem;
        width: 80%;
    }
}

/* iPad Pro 12.9" - Portrait (1024x1366) */
@media only screen and (min-width: 1024px) and (max-width: 1024px) and (orientation: portrait) {
    .contact-title {
        font-size: 4.2rem;
        margin: 2.5rem 0 2rem;
    }
    
    .glass-main-container {
        padding: 3rem;
        width: 90%;
        max-width: 900px;
    }
    
    .map-openingstijden-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-contact-container {
        padding: 2.5rem;
        min-height: 500px;
    }
    
    .map-wrapper iframe {
        height: 400px;
    }
    
    .contact-item-main {
        padding: 1.2rem 2rem;
        width: 85%;
    }
}

/* iPad Pro 11" & iPad Air - Landscape (1180x820 / 1194x834) */
@media only screen and (min-width: 820px) and (max-width: 1194px) and (orientation: landscape) {
    .contact-title {
        font-size: 3.8rem;
        margin: 1.8rem 0 1.8rem;
    }
    
    .glass-main-container {
        padding: 2rem;
        width: 88%;
        max-width: 1100px;
    }
    
    .map-openingstijden-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.8rem;
    }
    
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-contact-container {
        padding: 1.8rem;
        min-height: 420px;
    }
    
    .map-wrapper iframe {
        height: 320px;
    }
    
    .contact-item-main {
        padding: 1rem 1.5rem;
        width: 82%;
        gap: 1.3rem;
    }
    
    .contact-icon-main {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon-img {
        width: 36px;
    }
    
    .status-indicator {
        padding: 1rem 1.5rem;
    }
    
    .dag-rij {
        padding: 0.7rem 0;
    }
}

/* iPad Pro 11" & iPad Air - Portrait (820x1180 / 834x1194) */
@media only screen and (min-width: 820px) and (max-width: 834px) and (orientation: portrait) {
    .contact-title {
        font-size: 4rem;
        margin: 2.2rem 0 1.8rem;
    }
    
    .glass-main-container {
        padding: 2.5rem;
        width: 92%;
        max-width: 760px;
    }
    
    .map-openingstijden-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-contact-container {
        padding: 2.2rem;
        min-height: 480px;
    }
    
    .map-wrapper iframe {
        height: 380px;
    }
    
    .contact-item-main {
        padding: 1.1rem 1.8rem;
        width: 85%;
        max-width: 500px;
    }
    
    .contact-grid {
        gap: 2rem;
        padding-top: 1.2rem;
    }
    
    .status-text {
        font-size: 1.05rem;
    }
    
    .keuken-info {
        font-size: 1.05rem;
    }
}

/* Algemene tablet optimalisaties */
@media only screen and (min-width: 768px) and (max-width: 1366px) {
    /* Verbeterde hover effecten voor touch devices */
    .contact-item-main:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.03);
    }
    
    .route-button:active {
        transform: scale(0.98);
    }
    
    /* Optimaliseer RestManager widget voor tablets */
    .restomanager-container {
        width: 480px;
        height: 640px;
        right: 20px;
        bottom: 20px;
    }
    
    .restomanager-toggle {
        width: 180px;
        height: 55px;
        left: 65%;
        font-size: 28px;
    }
    
    /* Betere touch targets */
    .contact-details-main a {
        padding: 0.3rem 0;
    }
    
    /* Optimaliseer glassmorphism voor betere prestaties */
    .glass-main-container,
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-contact-container {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

/* Responsive styling voor kleinere schermen */
@media (max-width: 768px) {
    .contact-title {
        font-size: 3.5rem;
        margin: 2rem 0 1.5rem;
    }
    
    .glass-main-container {
        padding: 2rem;
        border-radius: 30px;
        width: 95%;
    }
    
    .contact-section {
        width: 95%;
        margin: 1.5rem auto;
    }
    
    .map-openingstijden-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
    
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-info-container,
    .glass-troeven-container {
        padding: 2rem;
        border-radius: 25px;
        width: 100%;
        max-width: none;
    }
    
    .glass-map-container,
    .glass-openingstijden-container {
        min-height: 550px;
    }
    
    .glass-contact-container {
        padding: 2rem;
        border-radius: 25px;
        width: 100%;
        min-height: 550px;
    }
    

    
    .troeven-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .troef-item {
        padding: 1.2rem;
    }
    
    .troef-icon {
        font-size: 2rem;
    }
    
    .troef-content h3 {
        font-size: 1.1rem;
    }
    
    .troef-content p {
        font-size: 0.9rem;
    }
    
    .location-info {
        padding: 0.8rem 1.2rem;
        margin-bottom: 1.2rem;
        background: transparent;
        border-bottom: 1px solid #A9633B;
    }
    
    .address-details h3 {
        font-size: 1.1rem;
    }
    
    .keuken-info {
        padding: 0.8rem 1.2rem;
        margin-top: 1.2rem;
        font-size: 1rem;
        background: transparent;
        border-bottom: 1px solid #A9633B;
    }
    
    .status-indicator {
        padding: 1rem 1.2rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .status-dot {
        width: 24px;
        height: 24px;
    }
    
    .status-text {
        font-size: 1.1rem;
    }
    
    .route-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .route-icon {
        width: 1.7rem;
        height: 1.7rem;
    }
}

@media (max-width: 600px) {
    .contact-title {
        font-size: 3rem;
        margin: 1.5rem 0 1.2rem;
    }
    
    .glass-main-container {
        padding: 1.5rem;
        border-radius: 25px;
        width: 98%;
    }
    

    
    .contact-item-main {
        width: 95%;
        max-width: 330px;
        background: transparent;
        border-bottom: 1px solid #A9633B;
    }
    
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-info-container,
    .glass-troeven-container {
        padding: 1.5rem;
        border-radius: 20px;
        width: 100%;
        max-width: none;
    }
    
    .glass-map-container,
    .glass-openingstijden-container {
        min-height: 480px;
    }
    
    .glass-contact-container {
        padding: 1.5rem;
        border-radius: 20px;
        width: 100%;
        min-height: 480px;
    }
    

    
    .contact-card {
        padding: 1.2rem;
        border-radius: 20px;
    }
    
    .troeven-grid {
        gap: 1rem;
    }
    
    .troef-item {
        padding: 1rem;
    }
    
    .troef-icon {
        font-size: 1.8rem;
    }
    
    .troef-content h3 {
        font-size: 1rem;
    }
    
    .troef-content p {
        font-size: 0.85rem;
    }
    
    .location-info {
        padding: 0.7rem 1rem;
        margin-bottom: 1rem;
        background: transparent;
        border-bottom: 1px solid #A9633B;
    }
    
    .address-details h3 {
        font-size: 1rem;
    }
    
    .keuken-info {
        padding: 0.7rem 1rem;
        margin-top: 1rem;
        font-size: 0.95rem;
        background: transparent;
        border-bottom: 1px solid #A9633B;
    }
    
    .status-indicator {
        padding: 0.8rem 1rem;
        margin-bottom: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .status-dot {
        width: 22px;
        height: 22px;
    }
    
    .status-text {
        font-size: 1rem;
    }
    
    .dag-rij {
        padding: 0.6rem 0;
    }
    
    .dag {
        font-size: 1rem;
    }
    
    .tijd {
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .route-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 550px) {
    .contact-title {
        font-size: 2.75rem;
        margin: 1.35rem 0 1.15rem;
    }
    
    .glass-main-container {
        padding: 1.35rem;
        border-radius: 23px;
        width: 96%;
    }
    
    .contact-item-main {
        width: 96%;
        max-width: 350px;
    }
    
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-info-container,
    .glass-troeven-container {
        padding: 1.35rem;
        border-radius: 18px;
    }
    
    .glass-map-container,
    .glass-openingstijden-container {
        min-height: 450px;
    }
    
    .glass-contact-container {
        padding: 1.35rem;
        border-radius: 18px;
        min-height: 450px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .location-info {
        padding: 0.75rem 1.1rem;
        margin-bottom: 1.1rem;
    }
    
    .address-details h3 {
        font-size: 1.05rem;
    }
    
    .keuken-info {
        padding: 0.75rem 1.1rem;
        margin-top: 1.1rem;
        font-size: 0.98rem;
    }
    
    .status-indicator {
        padding: 0.9rem 1.1rem;
        margin-bottom: 1.35rem;
    }
    
    .status-dot {
        width: 23px;
        height: 23px;
    }
    
    .status-text {
        font-size: 1.05rem;
    }
    
    .dag-rij {
        padding: 0.65rem 0;
    }
    
    .dag {
        font-size: 1.03rem;
    }
    
    .tijd {
        font-size: 0.93rem;
    }
    
    .route-button {
        padding: 0.75rem 1.35rem;
        font-size: 0.93rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2.5rem;
        margin: 1.2rem 0 1rem;
    }
    
    .glass-main-container {
        padding: 1rem;
        border-radius: 20px;
        width: 94%;
        margin-bottom: 2rem;
    }
    
    .glass-map-container,
    .glass-openingstijden-container {
        padding: 1.2rem;
        border-radius: 15px;
        min-height: 420px;
        display: flex;
        flex-direction: column;
    }
    
    .glass-contact-container {
        padding: 1.2rem;
        border-radius: 15px;
        min-height: 420px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .map-wrapper {
        flex: 1;
        min-height: 250px;
    }
    
    .openingstijden-list {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .status-indicator {
        margin-bottom: 1rem;
        padding: 0.6rem 0.8rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    }
    
    .keuken-info {
        margin-top: auto;
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        background: transparent;
        border-bottom: 1px solid #A9633B;
    }
    
    .glass-map-container h2,
    .glass-openingstijden-container h2,
    .glass-contact-container h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .location-info {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .address-details h3 {
        font-size: 0.9rem;
    }
    
    .status-dot {
        width: 20px;
        height: 20px;
    }
    
    .status-text {
        font-size: 0.9rem;
    }
    
    .dag-rij {
        padding: 0.5rem 0;
    }
    
    .dag {
        font-size: 0.9rem;
    }
    
    .tijd {
        font-size: 0.8rem;
    }
    
    .contact-icon-main {
        width: 45px;
        height: 45px;
    }
    
    .contact-details-main h3 {
        font-size: 0.9rem;
    }
    
    .contact-details-main p {
        font-size: 0.85rem;
    }
    
    .route-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .route-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}

/* Specifieke styling voor iPhone 14 Pro Max en vergelijkbare grote iPhones (430 x 932) */
@media (max-width: 430px) and (min-height: 850px) {
    .contact-title {
        font-size: 2.4rem;
        margin: 1.2rem 0 1rem;
    }
    
    .glass-main-container {
        width: 92%;
        padding: 1.2rem;
        border-radius: 20px;
    }
    
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-contact-container {
        padding: 1.5rem;
        border-radius: 18px;
        min-height: 440px;
    }
    
    .glass-contact-container {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .glass-map-container h2,
    .glass-openingstijden-container h2,
    .glass-contact-container h2 {
        font-size: 2.3rem;
        margin-bottom: 1.4rem;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
        min-height: 3.2rem;
    }
    
    .contact-grid {
        gap: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .contact-item-main {
        width: 100%;
        max-width: 100%;
        padding: 1.1rem 1.4rem;
        gap: 1.3rem;
    }
    
    .contact-icon-main {
        width: 44px;
        height: 44px;
    }
    
    .contact-icon-img {
        width: 38px;
    }
    
    .contact-details-main h3 {
        font-size: 1rem;
    }
    
    .contact-details-main p {
        font-size: 0.92rem;
    }
    
    .dag-rij {
        padding: 0.6rem 0;
    }
    
    .dag {
        font-size: 1rem;
    }
    
    .tijd {
        font-size: 0.9rem;
    }
    
    .status-indicator {
        padding: 0.8rem 1.2rem;
        margin-bottom: 1.4rem;
    }
    
    .status-dot {
        width: 24px;
        height: 24px;
    }
    
    .status-text {
        font-size: 1rem;
    }
    
    .keuken-info {
        padding: 0.8rem 1.2rem;
        margin-top: 1.2rem;
        font-size: 0.95rem;
    }
    
    .location-info {
        padding: 0.8rem 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .address-details h3 {
        font-size: 1rem;
    }
    
    .route-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
    
    .route-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .map-wrapper {
        min-height: 240px;
    }
    
    .openingstijden-list {
        padding: 0.3rem 0;
    }
}

/* Specifieke styling voor 390 x 844 en vergelijkbare formaten */
@media (max-width: 430px) {
    .contact-title {
        font-size: 2.3rem;
        margin: 1rem 0 0.9rem;
    }
    
    .glass-main-container {
        width: 94%;
        padding: 1rem;
        border-radius: 18px;
    }
    
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-contact-container {
        padding: 1.2rem;
        border-radius: 15px;
        min-height: 400px;
    }
    
    .glass-contact-container {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .glass-map-container h2,
    .glass-openingstijden-container h2,
    .glass-contact-container h2 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
        min-height: 3rem;
    }
    
    .contact-grid {
        gap: 1.8rem;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
    
    .contact-item-main {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.2rem;
        gap: 1.2rem;
    }
    
    .contact-icon-main {
        width: 42px;
        height: 42px;
    }
    
    .contact-icon-img {
        width: 36px;
    }
    
    .contact-details-main h3 {
        font-size: 0.95rem;
    }
    
    .contact-details-main p {
        font-size: 0.88rem;
    }
    
    .dag-rij {
        padding: 0.55rem 0;
    }
    
    .dag {
        font-size: 0.95rem;
    }
    
    .tijd {
        font-size: 0.85rem;
    }
    
    .status-indicator {
        padding: 0.7rem 1rem;
        margin-bottom: 1.2rem;
    }
    
    .status-dot {
        width: 22px;
        height: 22px;
    }
    
    .status-text {
        font-size: 0.95rem;
    }
    
    .keuken-info {
        padding: 0.7rem 1rem;
        margin-top: 1rem;
        font-size: 0.9rem;
    }
    
    .location-info {
        padding: 0.7rem 1rem;
        margin-bottom: 1rem;
    }
    
    .address-details h3 {
        font-size: 0.95rem;
    }
    
    .route-button {
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .route-icon {
        width: 1.4rem;
        height: 1.4rem;
    }
    
    .map-wrapper {
        min-height: 220px;
    }
}

/* Extra styling voor 390px schermen */
@media (max-width: 390px) {
    .contact-title {
        font-size: 2.2rem;
        margin: 0.9rem 0 0.8rem;
    }
    
    .glass-main-container {
        width: 96%;
        padding: 0.9rem;
    }
    
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-contact-container {
        padding: 1rem;
        min-height: 380px;
    }
    
    .glass-contact-container {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .glass-map-container h2,
    .glass-openingstijden-container h2,
    .glass-contact-container h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .contact-grid {
        gap: 1.6rem;
    }
    
    .contact-item-main {
        padding: 0.9rem 1rem;
        gap: 1rem;
    }
    
    .contact-icon-main {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon-img {
        width: 34px;
    }
    
    .contact-details-main h3 {
        font-size: 0.9rem;
    }
    
    .contact-details-main p {
        font-size: 0.85rem;
    }
}

/* Kleine apparaten zoals 430 x 932 - gelijke hoogtes voor alle secties */
@media (max-width: 480px) {
    .glass-map-container,
    .glass-openingstijden-container,
    .glass-contact-container {
        display: flex;
        flex-direction: column;
    }
    
    .glass-contact-container {
        justify-content: flex-start;
    }
    
    .contact-grid {
        flex: 1;
        justify-content: space-between;
    }
    
    .contact-item-main {
        flex: 1;
        min-height: 75px;
        display: flex;
        align-items: center;
        background: transparent;
        border-bottom: 1px solid #A9633B;
    }
    
    .map-wrapper {
        flex: 1;
        min-height: 200px;
    }
    
    .openingstijden-list {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .status-indicator {
        margin-bottom: 1rem;
    }
    
    .keuken-info {
        margin-top: auto;
    }
}
  
/* Troeven sectie styling */
.glass-troeven-container {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.glass-troeven-container h2 {
    font-family: 'Chatara Regular', Arial, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #656434;
    letter-spacing: 0.05em;
}

.troeven-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.troef-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(101, 100, 52, 0.15);
}

.troef-item:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(101, 100, 52, 0.25);
}

.troef-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.troef-item:hover::before {
    left: 100%;
}

.troef-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.troef-icon img {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain;
    max-width: 50px !important;
    max-height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
}

.troef-icon-fresh img {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
}

.troef-content h3 {
    color: #656434;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.troef-content p {
    color: #656434;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
  
/* Troeven sectie styling voor index.html */
.troeven-section {
    margin: 3rem 0;
    padding: 0 2rem;
}

.troeven-section .glass-troeven-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive aanpassingen voor troeven sectie */
@media (max-width: 768px) {
    .troeven-section {
        margin: 2.5rem 0;
        padding: 0 1.5rem;
    }
    
    .glass-troeven-container h2 {
        font-size: 2.5rem;
        margin-bottom: 1.8rem;
    }
    
    .troeven-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .troef-item {
        padding: 1.2rem;
    }
    
    .troef-icon {
        width: 50px;
        height: 50px;
    }
    
    .troef-icon img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .troef-icon-fresh img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .troef-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .troef-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .troeven-section {
        margin: 2rem 0;
        padding: 0 1rem;
    }
    
    .glass-troeven-container h2 {
        font-size: 2.3rem;
        margin-bottom: 1.5rem;
    }
    
    .troeven-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .troef-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .troef-icon {
        width: 54px;
        height: 54px;
        margin: 0 auto;
    }
    
    .troef-icon img {
        width: 46px !important;
        height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
    }
    
    .troef-icon-fresh img {
        width: 56px !important;
        height: 56px !important;
        max-width: 56px !important;
        max-height: 56px !important;
        min-width: 56px !important;
        min-height: 56px !important;
    }
    
    .troef-content h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .troef-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 550px) {
    .troeven-section {
        margin: 1.75rem 0;
        padding: 0 0.9rem;
    }
    
    .glass-troeven-container {
        padding: 1.65rem;
        border-radius: 19px;
    }
    
    .glass-troeven-container h2 {
        font-size: 2.25rem;
        margin-bottom: 1.6rem;
    }
    
    .troeven-grid {
        gap: 0.9rem;
    }
    
    .troef-item {
        padding: 0.95rem;
        gap: 0.7rem;
    }
    
    .troef-icon {
        width: 53px;
        height: 53px;
    }
    
    .troef-icon img {
        width: 45px !important;
        height: 45px !important;
        max-width: 45px !important;
        max-height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
    }
    
    .troef-icon-fresh img {
        width: 55px !important;
        height: 55px !important;
        max-width: 55px !important;
        max-height: 55px !important;
        min-width: 55px !important;
        min-height: 55px !important;
    }
    
    .troef-content h3 {
        font-size: 0.98rem;
        margin-bottom: 0.35rem;
    }
    
    .troef-content p {
        font-size: 0.84rem;
        line-height: 1.35;
    }
}

/* Specifieke aanpassingen voor zeer kleine schermen zoals 480px */
@media (max-width: 480px) {
    .troeven-section {
        margin: 1.5rem 0;
        padding: 0 0.8rem;
    }
    
    .glass-troeven-container {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .glass-troeven-container h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .troeven-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .troef-item {
        padding: 0.9rem;
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
        border-radius: 15px;
    }
    
    .troef-icon {
        width: 52px;
        height: 52px;
        margin: 0 auto;
    }
    
    .troef-icon img {
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
    }
    
    .troef-icon-fresh img {
        width: 54px !important;
        height: 54px !important;
        max-width: 54px !important;
        max-height: 54px !important;
        min-width: 54px !important;
        min-height: 54px !important;
    }
    
    .troef-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .troef-content p {
        font-size: 0.82rem;
        line-height: 1.3;
    }
}

/* Specifieke aanpassingen voor iPhone formaten (390 x 844, 430 x 932, etc.) */
@media (max-width: 430px) {
    .troeven-section {
        margin: 1.2rem 0;
        padding: 0 0.6rem;
    }
    
    .glass-troeven-container {
        padding: 1.2rem 0.8rem;
        border-radius: 18px;
    }
    
    .glass-troeven-container h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0.03em;
    }
    
    .troeven-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .troef-item {
        padding: 0.8rem 0.6rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        border-radius: 12px;
        min-height: 130px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    .troef-item-sfeer {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .troef-item-sfeer .troef-content {
        text-align: center !important;
        align-items: center !important;
    }
    
    .troef-item-sfeer .troef-content h3,
    .troef-item-sfeer .troef-content p {
        text-align: center !important;
        width: 100%;
    }
    
    .troef-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
        margin-bottom: 0.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .troef-icon img {
        width: 42px !important;
        height: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        object-fit: contain;
        display: block;
    }
    
    .troef-icon-fresh img {
        width: 52px !important;
        height: 52px !important;
        max-width: 52px !important;
        max-height: 52px !important;
        min-width: 52px !important;
        min-height: 52px !important;
    }
    
    .troef-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .troef-content h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
        letter-spacing: 0;
        font-weight: 600;
    }
    
    .troef-content p {
        font-size: 0.78rem;
        line-height: 1.25;
        max-width: 95%;
        margin: 0 auto;
    }
}

/* Extra kleine schermen zoals 360px breedte */
@media (max-width: 360px) {
    .troeven-section {
        padding: 0 0.5rem;
    }
    
    .glass-troeven-container {
        padding: 1.2rem;
    }
    
    .glass-troeven-container h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .troeven-grid {
        gap: 0.6rem;
    }
    
    .troef-item {
        padding: 0.7rem;
        gap: 0.4rem;
    }
    
    .troef-icon {
        width: 45px;
        height: 45px;
    }
    
    .troef-icon img {
        width: 38px !important;
        height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
    }
    
    .troef-icon-fresh img {
        width: 48px !important;
        height: 48px !important;
        max-width: 48px !important;
        max-height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
    }
    
    .troef-content h3 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .troef-content p {
        font-size: 0.73rem;
    }
}

/* Cadeaubon pagina styling */
.cadeaubon-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Over ons content layout */
.over-ons-content-wrapper {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    max-width: 1400px;
    margin: 3rem auto 0 auto;
    padding: 0 2rem;
}

.glass-history-frame {
    flex: 1;
    min-width: 0;
}

/* Restaurant foto's sidebar - Over ons pagina */
.restaurant-images-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 0 0 300px;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    margin-left: -2rem;
}

.image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.restaurant-images-sidebar .image-wrapper:first-child {
    margin-top: 0.4rem;
}

.restaurant-images-sidebar .image-wrapper:last-child {
    margin-bottom: 0;
}

.restaurant-photo {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.restaurant-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.image-caption {
    margin-top: 1rem;
    color: #656434;
    font-size: 1rem;
    font-style: italic;
    opacity: 0.8;
}

/* Responsive aanpassingen voor over ons layout */
@media (max-width: 1200px) {
    .restaurant-images-sidebar {
        flex: 0 0 280px;
        margin-left: -1.5rem;
    }
    
    .restaurant-photo {
        max-width: 230px;
    }
}

@media (max-width: 1024px) {
    .over-ons-content-wrapper {
        gap: 2rem;
    }
    
    .restaurant-images-sidebar {
        flex: 0 0 250px;
        margin-left: -1rem;
    }
    
    .restaurant-photo {
        max-width: 200px;
    }
    
    .restaurant-images-sidebar .image-wrapper:first-child {
        margin-top: 0.4rem;
    }
    
    .restaurant-images-sidebar .image-wrapper:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .over-ons-content-wrapper {
        flex-direction: column;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .restaurant-images-sidebar {
        flex: 1;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .restaurant-images-sidebar .image-wrapper:first-child,
    .restaurant-images-sidebar .image-wrapper:last-child {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .image-wrapper {
        max-width: 280px;
    }
    
    .restaurant-photo {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 600px) {
    .over-ons-content-wrapper {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .restaurant-images-sidebar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }
    
    .image-wrapper {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .restaurant-photo {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 550px) {
    .over-ons-content-wrapper {
        padding: 0 0.9rem;
        gap: 1.8rem;
    }
    
    .restaurant-images-sidebar {
        gap: 1.35rem;
    }
    
    .image-wrapper {
        max-width: 235px;
    }
    
    .restaurant-photo {
        max-width: 235px;
    }
}

@media (max-width: 480px) {
    .image-wrapper {
        max-width: 220px;
    }
    
    .restaurant-photo {
        width: 100%;
        max-width: 220px;
    }
    
    .restaurant-images-sidebar {
        gap: 1.2rem;
    }
}

@media (max-width: 430px) {
    .image-wrapper {
        max-width: 200px;
    }
    
    .restaurant-photo {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 390px) {
    .image-wrapper {
        max-width: 180px;
    }
    
    .restaurant-photo {
        width: 100%;
        max-width: 180px;
    }
}

@media (max-width: 360px) {
    .image-wrapper {
        max-width: 170px;
    }
    
    .restaurant-photo {
        width: 100%;
        max-width: 170px;
    }
}
  
  
  