* {
    box-sizing: border-box;
}

body, html {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Roboto Condensed", helvetica, sans-serif;
    font-size: 18px;
    overflow-x: hidden;
    min-height: 100vh;

    --color-primary: #2C2C2C;
    --color-primary-inv: white;
    --color-secondary: #8B4513;
    --color-secondary-inv: white;
    --color-accent: #000000;
    --padding: 3em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s, transform 0.2s;
}

a:hover {
    opacity: 0.9;
}

.restaurant-name {
    font-size: 4em;
    color: white;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.info-section {
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;
    max-width: 400px;
}

.phone-number {
    font-size: 1.2em;
    color: white;
    text-align: center;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.phone-number a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.phone-number a:hover {
    opacity: 0.8;
}

.legal-note {
    font-size: 0.7em;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 0.2em;
    margin-bottom: 0.5em;
    font-family: 'Work Sans', sans-serif;
}

.schedule-section {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 0.8em;
    padding: 1.5em;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.schedule-title {
    font-size: 1.4em;
    color: white;
    font-weight: 700;
    margin-bottom: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.schedule-time {
    font-size: 1.3em;
    color: white;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    text-align: center;
}

.menu-item {
    font-size: 2em;
    color: white;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
    display: block;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.menu-item:hover {
    transform: translateX(10px);
    opacity: 0.9;
}

.reservation-button {
    font-size: 2.5em;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5em 1em;
    border-radius: 0.5em;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin-top: 0.5em;
    margin-bottom: 1.5em;
    color: white;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.reservation-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1.5em;
    justify-content: center;
    width: 100%;
    margin-top: 2em;
}

.social-links a img {
    width: 2em;
    height: 2em;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.social-links a:hover img {
    opacity: 1;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 1em;
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 600;
    transition: transform 0.2s;
}

.whatsapp-link:hover {
    transform: scale(1.05);
}

.whatsapp-link img,
.whatsapp-icon {
    width: 2em;
    height: 2em;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.whatsapp-icon {
    cursor: pointer;
    transition: transform 0.2s;
}

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

.split-container {
    display: flex;
    width: 100%;
}

.left-section {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.right-section {
    flex: 0 0 40%;
    background-color: var(--color-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3em;
    position: relative;
}

.centered {
    text-align: center;
    justify-content: center;
    margin: 0 auto;
}

.insta {
    display:block;
    width:90vw;
    margin:auto;
    height: calc( 60vw + 88px + 24px + 24px);
    margin-bottom:1rem;
}

@media only screen and (max-width: 1000px) {
    body, html {
        font-size: 14px;
        --padding: 1em;
    }
    
    .split-container {
        flex-direction: column;
    }

    .left-section {
        flex: 1;
        min-height: 50vh;
    }

    .right-section {
        flex: 1;
        min-height: 50vh;
    }

    .restaurant-name {
        font-size: 3em;
        margin-bottom: 1em;
    }

    .reservation-button {
        font-size: 2em;
    }

    .menu-item {
        font-size: 1.5em;
    }

    .whatsapp-link {
        font-size: 1.2em;
    }

    .schedule-section {
        padding: 1.2em;
    }

    .schedule-title {
        font-size: 1.2em;
    }

    .schedule-time {
        font-size: 1.1em;
    }
}


@media only screen and (max-width: 480px) {
    .restaurant-name {
        font-size: 2.5em;
    }

    .reservation-button {
        font-size: 1.8em;
    }

    .menu-item {
        font-size: 1.3em;
    }

    .whatsapp-link {
        font-size: 1em;
    }

    .right-section {
        padding: 2em 1.5em;
    }

    .schedule-section {
        padding: 1em;
    }

    .schedule-title {
        font-size: 1.1em;
    }

    .schedule-time {
        font-size: 1em;
    }
    
    .insta {
        height: calc( 60vw + 56px + 24px + 24px);
    }
}

