@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('header.css');
@import url('home.css');
@import url('menu.css');
@import url('testimonials.css');
@import url('footer.css');

:root {
    --color-primary-0: #ffffff;
    --color-primary-1: #fff9ea;
    --color-primary-2: #ffe8b4;
    --color-primary-3: #ffe100;
    --color-primary-4: #ffe100;
    --color-primary-5: #ffcb45;
    --color-primary-6: #e9a209;

    --color-neutral-0: #fff;
    --color-neutral-1: #1d1d1dad;
}
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}
body {
    background-color: var(--color-primary-1);
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--color-primary-4);
    padding: 10px 14px;
    font-weight: 600;
    color: var(--color-neutral-1);
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-default:hover {
    background-color: var(--color-primary-5);
}

#social-media-buttons {
    display: flex;
    gap: 18px;
}

#social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: var(--color-neutral-0);
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--color-neutral-1);
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

#social-media-buttons a:hover {
    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

.sectio-title {
    color: #e0a209;
    font-size: 1.563rem;
}

.sectio-subtitle {
    font-size: 2.1875rem;
}

@media screen and (max-width: 768px) {
    section {
        padding: 20px 4%;
    }

    .sectio-title {
        font-size: 1.2rem;
    }

    .sectio-subtitle {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    section {
        padding: 15px 2%;
    }

    .sectio-title {
        font-size: 1rem;
    }

    .sectio-subtitle {
        font-size: 1.2rem;
    }

    #social-media-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    #social-media-buttons a {
        width: 40px;
        height: 35px;
        font-size: 1rem;
    }
}

.meme-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.meme-popup img {
    max-width: 90%;
    border-radius: 10px;
}

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;
    z-index: 9999;
}

#loadingScreen.active {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #eee;
    border-top: 5px solid #f4a300;
    border-radius: 50%;

    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}