@font-face {
    font-family: 'GT Sectra';
    src: url('font/GT-Sectra-Book.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'GT Sectra', serif;
    background-color: #F4F2EA;
    color: #000000;
    line-height: 1.15;
}

/* Desktop Layout */
.main-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100vh;
}

.left-panel {
    padding: 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.logo-section {
    width: fit-content;
    margin: auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 378px;
    height: auto;
}

.restaurant-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 3vw;
}

.restaurant-info h1 {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.4;
}


.contact, .hours {
    font-size: 20px;
    line-height: 1.4;
}

.right-panel {
    flex: 1;
    background-color: #385542;
    background-image: url('images/Krone_Muster_Desktop_Black-RGB.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    padding: 20px;
}

.buttons-container {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 20px;
    margin-top: auto;
}

.cta-button {
    background-color: #F4F2EA;
    color: #000000;
    padding: 10px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.cta-button::after {
    content: "→";
    font-size: 16px;
}
.mobile {
    display: none;
}
.flex-column {
    display: flex;
    flex-direction: column;
}
a {
    color: inherit;
    text-decoration: none;
}
/* Mobile Layout */
@media (max-width: 1024px) {
    .logo-section {
        width: fit-content;
    
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .main-content {
        grid-template-columns: 1fr;
    }
    .restaurant-info {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .contact-items {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        justify-content: flex-start;
    }

    .contact-hours {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        justify-content: flex-end;
    }

    .main-content {
        flex-direction: column;
    }
    .logo {
        width: 136px;
    }

    .restaurant-info {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 24px;
    }
    
    .address {
        grid-column: 1;
        grid-row: 2;
    }
    
    .contact-items {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        justify-content: flex-start;
    }
    
    .contact-hours {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        justify-content: flex-end;
    }

    .restaurant-info h1 {
        font-size: 16px;
    }

    .contact, .hours {
        font-size: 16px;
    }

    .left-panel {
        height: 50vh;
    }
    .right-panel {
        height: 50vh;
        background-image: url('images/Krone_Muster_Mobile_Black-RGB.svg');
    }

    .buttons-container {
        margin-bottom: auto;
        margin-top: 0;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
}
