:root {
    --dark-blue: #292b68;
    --orange: #f7941f;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 66px;
}

body {
    background-color: var(--dark-blue);
    font-family: 'Inter', sans-serif;
    color: white;
    padding-top: 66px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

p {
    font-size: 1.2rem;
    opacity: 0.85;
}

.logo {
    height: 40px;
}

.navbar {
    border-bottom: 1px solid var(--dark-blue) ;
}

.nav-link {
    color: var(--dark-blue);
    transition: color 0.2s ease;
}

.nav-link:visited {
    color: var(--dark-blue);
}

.nav-link:hover {
    color: var(--orange);
}

.lang-btn {
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.lang-btn:hover {
    background-color: var(--dark-blue);
    color: white;
}

.lang-active {
    background-color: var(--dark-blue);
    color: white;
    border-color: var(--dark-blue);
}

.navbar-toggler {
    border-color: var(--dark-blue);
}

.navbar-toggler-icon {
    filter: invert(17%) sepia(40%) saturate(600%) hue-rotate(210deg);
}

.hero-img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    object-fit: cover;
    border-radius: 50%;
}

.hero-img-left {
    left: -300px;
}

.hero-img-right {
    right: -300px;
}

.hero-content {
    max-width: 50%;
}

.hero-title {
    font-size: 4rem;
    letter-spacing: 1px;
    /*font-weight: 600;*/
    font-family: Arial, Helvetica, sans-serif;
}

.hero-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
}

.cta-btn {
    background-color: var(--orange);
    border-color: var(--orange);
    text-transform: uppercase;
    color: white;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    border-radius: 20px;
}

.cta-btn:hover {
    background-color: var(--dark-blue);
    border-color: var(--orange);
}

.promo {
    background-color: white;
}

.promo-title {
    color: var(--dark-blue);
}

.promo-text {
    color: var(--dark-blue);
}

.pizza-wrapper {
    position: relative;
    max-width: 500px;
    margin: auto;
}

.pizza-slice {
    position: absolute;
    width: 50%;
    height: 50%;
    cursor: pointer;
    background: rgba(0,0,0,0.05);
}

.slice-1 { top: 0; left: 0; }
.slice-2 { top: 0; right: 0; }
.slice-3 { bottom: 0; left: 0; }
.slice-4 { bottom: 0; right: 0; }

.pizza-slice:hover {
    background: none;
}

.pizza-slice.active {
    outline: 5px solid white;
    background: none;
}

.slice-1.active {
    border-radius: 100% 0% 0% 0%;
}

.slice-2.active {
    border-radius: 0% 100% 0% 0%;
}

.slice-3.active {
    border-radius: 0% 0% 0% 100%;
}

.slice-4.active {
    border-radius: 0% 0% 100% 0%;
}

.pizza-info-box {
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    border: 5px solid var(--orange);
}

.pizza-info-box h3 {
    color: var(--dark-blue);
    font-weight: 600;
}

.pizza-info-box p {
    color: var(--dark-blue);
    opacity: 0.85;
}

.restaurant {
    background-color: white;
}

.restaurant-title {
    color: var(--dark-blue);
}

.restaurant-text {
    color: var(--dark-blue);
}

.menu {
    background-image: url("/frontend/img/menu_background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.menu-box {
    max-height: 80vh; 
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 12px;
    background: var(--orange);
}

.menu-btn {
    background-color: var(--orange);
    border-color: var(--orange);
    text-transform: uppercase;
    color: white;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    border-radius: 20px;
}

.menu-btn:hover {
    background-color: var(--dark-blue);
    border-color: var(--orange);
}

.contact {
    background-color: white;
}

.contact-title {
    color: var(--dark-blue);
}

.contact-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-blue);
}

.contact-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.map-box {
    max-height: 350px;    
    border: 5px solid var(--dark-blue);
    border-radius: 16px;
    overflow: hidden;     
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-logo {
    height: 40px;
}

.footer-brand {
    /*font-weight: 600;*/
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    letter-spacing: 1px;
}

.footer-icon {
    height: 90px;
}

.footer-link {
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--orange);
    text-decoration: none;
}

.szechenyi-logo {
    position: absolute;
    top: 0;
    right: 0;
    height: 200px;
}

.sechenyi-content {
    background-color: white;
    color: var(--dark-blue);
}

@media (max-width: 1200px) {
    .hero-img-left {
        left: -400px;
    }

    .hero-img-right {
        right: -400px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .hero-content{
        max-width: 90%;
    }

    .menu-box {
        max-height: 70vh;
        padding: 5px;
    }

    .szechenyi-logo {
        height: 80px;
    }
}