*, html {
    scroll-behavior: smooth !important;
}

html, body {
    width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

/* Utility Classes */
.section { padding: 50px 0; }
.text-right { text-align: right; }
.makeBold { font-weight: bold; }
.height100 { height: 100%; }
.clickPointer { cursor: pointer; }
.noStyleA { text-decoration: none; color: inherit; }
.blendModeMultiply { mix-blend-mode: multiply; }
.coolBorder { border: 1px solid white; border-radius: 20px; padding: 10px; }

/* Color Classes */
.makeWhite, .makeWhite * { color: white; }
.makeBlue, .makeBlue a, .makeBlue *,
.makeBlue:hover, .makeBlue:hover a, .makeBlue:hover *,
.makeBlue:focus, .makeBlue:focus a, .makeBlue:focus * { color: #283692 !important; }

.make-text-blue, .make-text-blue a, .make-text-blue *,
.make-text-blue:hover, .make-text-blue:hover a, .make-text-blue:hover *,
.make-text-blue:focus, .make-text-blue:focus a, .make-text-blue:focus * { color: #283692 !important; }

.make-text-red, .make-text-red a, .make-text-red *,
.make-text-red:hover, .make-text-red:hover a, .make-text-red:hover *,
.make-text-red:focus, .make-text-red:focus a, .make-text-red:focus * { color: #ed1c24 !important; }

/* Positioning Classes */
.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animation Classes */
.slowlyRotate { animation: slowlyRotate 25s linear infinite; }
@keyframes slowlyRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.slowlyRotateReverse { animation: slowlyRotateReverse 25s linear infinite; }
@keyframes slowlyRotateReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

.slowlyPulse { animation: slowlyPulse 2s linear infinite; }
@keyframes slowlyPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.slowlyPulseSmall { animation: slowlyPulseSmall 2s linear infinite; }
@keyframes slowlyPulseSmall {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.slowlyPulseReverse { animation: slowlyPulseReverse 2s linear infinite; }
@keyframes slowlyPulseReverse {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* Transition Classes */
.growOnHover, .growOnHoverSmall { transition: all 0.3s; }
.growOnHover:hover { transform: scale(1.1); }
.growOnHoverSmall:hover { transform: scale(1.05); }

.increase-bg-size-on-hover {
    transition: background-size 7s ease;
    background-size: 100%;
}
.increase-bg-size-on-hover:hover { background-size: 110%; }

/* Navigation Styles */
.navbar-brand { font-size: 24px; font-weight: bold; }
.navbar-nav {
    background-color: white;
    padding: 0 20px;
    border-radius: 20px;
    margin-top: 10px;
}
.navbar-nav .nav-link { font-weight: bold; text-transform: uppercase; }
.nav-item { position: relative; padding: 0 20px; }
.nav-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 2px;
    background-color: #283692;
}
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.9) !important;
    background-color: white;
    color: #283692;
}
.navbar-toggler * { color: #283692 !important; }
.menu-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}
.navbar-toggler-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) saturate(100%) invert(22%) sepia(26%) saturate(3742%) hue-rotate(209deg) brightness(0%) contrast(100%);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background-image: url('/assets/images/svgs/bg/Blue-B.svg');
    background-position: center bottom;
    background-size: 255px;
    display: flex;
    flex-direction: column;
}
.hero-container {
    flex-grow: 1;
    display: flex;
    position: relative;
    max-width: 55rem;
}
.hero-logo { width: 70%; }
.drops-image { position: absolute; width: 16vw; }
.frenchFries { max-width: 300px; }
.red-overlay {
    position: absolute;
    width: 95%;
    height: 70%;
    left: 2.5%;
    bottom: 90px;
    background-color: #ed1c24;
    border-radius: 20px;
}
.burger-image {
    position: absolute;
    width: 90%;
    height: 80%;
    left: 5%;
    top: 0;
    border-radius: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: growShrink 20s ease infinite;
}

@keyframes growShrink {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content {
    position: absolute;
    width: 100%;
    min-height: 30%;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: end;
}
.hero-content-inner {
    width: 80%;
    background: white;
    border-radius: 20px;
    padding: 10px;
}

/* Instagram Section */
.socialSection {
    height: 58vh;
    background-image: url('/assets/images/svgs/bg/Red-B.svg');
    background-size: 255px;
}
.custom-images { height: 100%; padding: 40px 0; }
.custom-images img, .custom-images > div {
    height: 100%;
    object-fit: cover;
    border: 1px solid white;
    border-radius: 20px;
    margin-right: 20px;
    padding: 10px;
}
.contact-info {
    text-align: left;
}

.contact-info img {
    height: 2rem;
}

.contact-info div {
    width: fit-content;
}

.nodecoration, .nodecoration *, .nodecoration a {
    text-decoration: none !important;
    text-underline: none !important;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 100%;
    overflow: hidden;
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-info {
    margin: 30px;
}

.contact-info p {
    margin-left: 10px;
    margin-top: 3px;
    color: #283692 !important;
    font-size: 1.3rem;
}
.gallery-images img {
    height: auto;
    width: 100%;
    object-fit: cover;
    border: 1px solid white;
    border-radius: 20px;
    padding: 10px;
}
.ig-image { height: auto; width: 70%; }
.ig-text { height: auto; width: 70%; margin-left: -5vw; }
.square-ratio {
    height: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.border-container {
    border: 1px solid #000;
    justify-content: center;
    display: flex;
    align-items: center;
}
.image-background {
    width: 94%;
    height: 94%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

/* Footer */
.objednajAbsolute {
    position: fixed;
    width: 30vw;
    bottom: 0;
    right: 0;
    z-index: 100;
    filter: drop-shadow(2px 2px 0px #00000050);
    max-width: 300px;
}
.containerFooter { margin-top: 130px; margin-bottom: 200px; }
.addieLogo {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
}
.small, small {
    font-size: .6em;
}
h5 { color: #283692; }

.modal-header { border: none; }
.headingCustom { margin-bottom: 30px;}

.arrowImage {
    width: 30px;
}

.nameHolder {
    display: flex ;
    justify-content: space-between;
    margin-top: 12px;
    margin-bottom: 12px;
}



.burger-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover; /* Assuming you want this from your original */
    background-position: center; /* Assuming you want this from your original */
    transition: opacity 0.5s ease-in-out;
}

.burgerNameImage {
    max-height: 80px;
}

.hero-container {
    position: relative;
    width: 100%;
    /* If the original worked without explicit height, it might have been set by content or another rule */
    /* Add height if needed, e.g., height: 400px; */
}

.hero-container {
    position: relative;
    width: 100%;
    height: 400px; /* Or whatever height your original design used */
}

.burger-image-container {
    position: absolute;
    bottom: 70px;
    left: 50%;
    width: 85%;
    height: 87%;
    transform: translate(-50%, 0%);
}

.burger-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease-in-out;
}

.heroTypeIcon {
    width: 200px;
    height: auto;
    position: absolute;
    top: 15px;
    left: 20px;
    padding: 5px;
    border-radius: 10px;
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-container { margin-bottom: 30px; }
    .frenchFries { max-width: 200px; }
    .ktoSmeHeader { margin-top: 80px; }
    .nav-item::after { display: none; }
    .hero-logo { margin-top: 20px; }
    .h5, h5 { font-size: 0.8rem; }

    .burgerNameImage {
        max-height: 40px;
    }
}

@media (max-width: 754px) {
    .custom-images img { width: 46%; }
    .containerFooter { margin-top: 30px; margin-bottom: 100px; }
    .custom-images { padding: 10px 0; margin: 0; }
    .center-on-small {
        display: flex;
        justify-content: center;
        padding: 30px;
    }
    .ig-text { margin-left: -17vw; }
    .socialSection { height: auto; }
    .mobileImages.custom-images > div { width: 47%; }
}
