/*----------------------------------------
  IMPORTY FONTOV
----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Switzer:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

/*----------------------------------------
  RESET A ZÁKLADNÉ NASTAVENIA
----------------------------------------*/
html, body {
    font-family: 'Switzer', sans-serif;
}


body, h1, h2, h3, h4, h5, h6, p, .navbar-brand {
    font-family: 'Switzer', sans-serif;
}
a {
    text-decoration: none;
}

/* Špeciálny font pre logo / titulky */
.lobster {
    font-family: 'Lobster', cursive !important;
    font-weight: 400;
    letter-spacing: -2px;
}

/* Zlatá farba textu */
.text-gold {
    color: #D6C796;
}

/* Dividery (čiary) pred a za nadpisom */
.divider-lines {
    display: flex;
    align-items: center;
}
.divider-lines::before,
.divider-lines::after {
    content: "";
    flex-grow: 1;
    height: var(--divider-thickness, 2px);
    background-color: var(--divider-color, #CCBE8F);
}
.divider-lines .divider-title {
    margin: 0 var(--divider-gap, 1rem);
}

/* Jednoduchý horizontálny divider */
.divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

/* Divider na tmavom pozadí (sekcie menu, langose) – zlaté linky */
.menuHeading::before,
.menuHeading::after {
    background-color: #D6C796;
}

/* Podnadpis v hero headeri (adresa) */
.headerPodnadpis {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    opacity: 0.9;
}

/*----------------------------------------
  SEKCE HERO (ÚVODNÁ OBLASŤ)
----------------------------------------*/
.hero-header {
    position: relative;
    height: 100vh;
    overflow: visible;
    background-position: center;
    background-size: cover;
}
.hero-header .torn-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background: url('/images/tornPaper.png') no-repeat center top;
    background-size: cover;
    pointer-events: none;
    z-index: 2;
}
.hero-header .socials .rotated-text {
    display: block;
    position: relative;
    margin-bottom: 1rem;
}
.hero-header .socials .rotated-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.75);
}
.hero-header .socials .social-icons {
    margin-top: 0.5rem;
}

/*----------------------------------------
  NAVBAR (HORNÁ PONUKA)
----------------------------------------*/
:root {
    --nav-warm-bg: rgba(31, 20, 14, 0.82);
    --nav-warm-bg-strong: rgba(54, 36, 26, 0.94);
    --nav-gold: #d6c796;
    --nav-gold-soft: rgba(214, 199, 150, 0.2);
    --nav-text-soft: rgba(255, 248, 236, 0.92);
}

/* ---------------------------------------------
   1) Základné nastavenie (pred scrollom)
---------------------------------------------- */
#myNavbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;

    background: transparent !important;

    /* “Veľké” odsadenie – bude sa zmenšovať po scroll */
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;

    border-bottom: 1px solid transparent !important;

    /* Plynulý prechod pri zmene pozadia + paddingu */
    transition: background-color 0.35s ease,
    background 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    padding 0.3s ease;

    /* Žiadny tieň ani orámovanie */
    box-shadow: none !important;
}

#myNavbar .container {
    align-items: center;
}

/* Farba textov a loga pred scrollom */
#myNavbar .navbar-brand,
#myNavbar .nav-link {
    color: var(--nav-text-soft) !important;
}

#myNavbar .navbar-brand img {
    transition: height 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

#myNavbar .navbar-nav {
    gap: 0.15rem;
}

/* Hamburger-ikona biela */
#myNavbar .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}
#myNavbar .navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(1.2) invert(1);
}

/* Collapse na mobile – stále transparentné aj pred scrollom */
#myNavbar .navbar-collapse,
#myNavbar .navbar-collapse.show {
    background-color: transparent !important;
}
#myNavbar .navbar-nav .nav-link {
    position: relative;
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    opacity: 0.96;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

#myNavbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.15rem;
    height: 1px;
    background-color: var(--nav-gold);
    transform: scaleX(0);
    transform-origin: left;
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

#myNavbar.scrolled .nav-link:hover{
    color: var(--nav-gold) !important;
}

#myNavbar .navbar-nav .nav-item .nav-link:hover,
#myNavbar .navbar-nav .nav-link:hover{
    color: var(--nav-gold) !important;
    transform: translateY(-1px);
}

#myNavbar .navbar-nav .nav-link:hover::after,
#myNavbar .navbar-nav .nav-link:focus-visible::after {
    transform: scaleX(1);
}

#myNavbar.scrolled .navbar-nav .nav-link::after {
    opacity: 0.85;
}


/* ---------------------------------------------
   2) Štýly PO scrollovaní (pridaná trieda .scrolled)
   – meníme len pozadie, padding a veľkosť loga
---------------------------------------------- */
#myNavbar.scrolled {
    background: linear-gradient(180deg, var(--nav-warm-bg-strong) 0%, rgba(40, 27, 19, 0.92) 100%) !important;
    backdrop-filter: saturate(140%) blur(8px);
    box-shadow: 0 12px 28px rgba(18, 10, 6, 0.28) !important;
    border-bottom: 1px solid rgba(214, 199, 150, 0.28) !important;

    /* Zmenšené odsadenie – navbar „zhbätne“ */
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

/* Zmenšenie loga v stave .scrolled (napr. z 56px na 40px) */
#myNavbar.scrolled .navbar-brand img {
    height: 42px !important;
    transform: scale(0.98);
}

/* Farba textov v stave .scrolled (ponecháme bielu) */
#myNavbar.scrolled .navbar-brand,
#myNavbar.scrolled .nav-link {
    color: #fff8ed !important;
}

.navbar-toggler{
    border: none !important;
    &:focus{
        outline: none !important;
        box-shadow: none !important;
    }
}

    /* ---------------------------------------------
       3) Separator – bodka presne medzi položkami
    ---------------------------------------------- */
/*----------------------------------------
  DENNÉ MENU
----------------------------------------*/
.woodBG {
    background: url('/images/woodBG.jpg') center/cover no-repeat;
}
#denne-menu .divider-lines h2 {
    font-family: 'Lobster', cursive;
    color: #CCBE8F;
}

/* Hodiny denného menu */
.daily-menu-hours {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

/* ------ DENNÉ MENU — hero cena ------ */
.dm-price-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}
.dm-emoji {
    font-size: 2rem;
    line-height: 1;
}
.dm-big-price {
    font-family: 'Lobster', cursive;
    font-size: 4rem;
    color: #CCBE8F;
    line-height: 1;
}

/* Podtitulok pod cenou */
.dm-caption {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 0;
}

/* Jemný oddeľovač (bodkovaná čiara) */
.dm-sep {
    border: none;
    border-top: 1px dashed rgba(0, 0, 0, 0.25);
    margin: 1.25rem auto;
    width: 60%;
}

/* Hodiny */
.dm-hours {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #1a1a1a;
    margin-bottom: 0;
}

/* Podnadpis skupiny (Čo vás čaká, Objednať cez) */
.dm-sub-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.75rem;
}

/* Zoznam benefitov */
.dm-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}
.dm-benefits li {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}
.dm-benefits li:last-child {
    border-bottom: none;
}
.dm-benefits li::before {
    content: "·";
    margin-right: 0.5rem;
    color: #CCBE8F;
    font-weight: 900;
    font-size: 1.2em;
    vertical-align: middle;
}

/* CTA italic text */
.dm-cta {
    font-style: italic;
    font-size: 0.95rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

/* Lokácia */
.dm-location {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.45);
    margin-bottom: 0;
}

.item-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
        "title dots price"
        "desc  desc  desc";
    align-items: center;
    gap: 0.25rem 0.75rem;
}
.item-grid .title {
    grid-area: title;
    font-weight: 700;
}
.item-grid .dots {
    grid-area: dots;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.35);
}
.item-grid .price {
    grid-area: price;
    text-align: right;
    white-space: nowrap;
}
.item-grid .desc {
    grid-area: desc;
    font-style: italic;
    color: rgba(0, 0, 0, 0.65);
    font-size: 0.875rem;
}

/*----------------------------------------
  NEWSLETTER SEKCIA
----------------------------------------*/
.newsletter-card {
    background: #fff;
}
.newsletter-section img {
    object-fit: cover;
}

/*----------------------------------------
  NOVINKY A AKCIE
----------------------------------------*/
.news-section .divider-lines h2 {
    font-family: 'Lobster', cursive;
    color: #CCBE8F;
}
.news-icon {
    position: absolute;
}
.news-icon-1 {
    top: 0;
    left: 5%;
}
.news-icon-2 {
    bottom: 0;
    right: 5%;
}

/*----------------------------------------
  SEKCE JEDÁLNEHO LÍSTKA
----------------------------------------*/
#jedalny-listok {
    position: relative;
    background: url('/images/menuBG.png') center/cover no-repeat;
    /* Fallback ak menuBG.png neexistuje */
    background-color: #1a1a1a;
    padding-bottom: 2rem;
}
#jedalny-listok .container {
    position: relative;
    z-index: 2;
    padding-top: 8vh;
}
#jedalny-listok .divider-lines h2 {
    font-family: 'Lobster', cursive;
    color: #D6C796;
}

/* Nav tlačidlá karuselu – pozicionované voči .carousel-wrapper */
.menu-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    padding: 0.25rem 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
.menu-nav-btn:hover {
    opacity: 1;
}
.menu-prev-btn { left: -1rem; }
.menu-next-btn { right: -1rem; }

/* Modal – close button */
.zoom-image-modal {
    z-index: 2000 !important;
    overflow: hidden !important;
}

.modal-backdrop.show {
    z-index: 1990 !important;
}

.zoom-image-modal .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2001;
    width: min(100vw, 100%);
    max-width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    margin: 0 auto;
    padding: 1rem;
    overflow: hidden;
}

.zoom-image-modal .modal-content {
    width: 100%;
    max-height: 100vh;
    overflow: hidden;
}

.zoom-image-modal .modal-body,
.zoom-image-modal .modal-content > .d-flex {
    min-height: auto !important;
    height: 100vh;
    max-height: 100vh;
    padding: 4.75rem 1rem 1rem !important;
    overflow: hidden;
}

.zoom-image-modal .carousel,
.zoom-image-modal .carousel-inner,
.zoom-image-modal .carousel-item {
    height: 100%;
}

.zoom-image-modal .carousel-item.active,
.zoom-image-modal .carousel-item.carousel-item-start,
.zoom-image-modal .carousel-item.carousel-item-end,
.zoom-image-modal .carousel-item-next,
.zoom-image-modal .carousel-item-prev {
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-modal-close,
.menu-modal-close {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 1rem);
    right: calc(env(safe-area-inset-right, 0px) + 1rem);
    z-index: 2010;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(214, 199, 150, 0.45);
    border-radius: 999px;
    background: rgba(24, 16, 11, 0.88);
    color: #fff8ed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.zoom-modal-close:hover {
    background: rgba(54, 36, 26, 0.96);
    border-color: rgba(214, 199, 150, 0.75);
    transform: scale(1.04);
}

.zoom-modal-close:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(214, 199, 150, 0.2);
}

.zoom-modal-close span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-1px);
}

/* Obrázok v modale */
.menu-modal-img {
    max-height: calc(100vh - 9rem);
    max-width: 90vw;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

/* Ohraničenie šírky karuselu */
.carousel-wrapper {
    max-width: 82vw;
    margin: 0 auto;
}

.carousel-wrapper-hody {
    max-width: 80vw;
    margin: 0 auto;
}

/* Horizontálny posúvateľný riadok */
.images-row-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none; /* IE a Edge */
    scrollbar-width: none;    /* Firefox */
    padding: 1rem 0;
    position: relative;
}

.images-row-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Jednotlivé položky (slide) */
.menu-slide {
    flex: 0 0 auto;
    scroll-snap-align: center;
    margin: 0 0.5rem;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-slide-hody {
    flex: 0 0 auto;
    scroll-snap-align: center;
    margin: 0 0.5rem;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu-slide img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
}

/* Obrázky v modale (zoom) */
.zoom-image-modal .carousel-item img,
#modalCarousel .carousel-item img {
    object-fit: contain;
    max-height: calc(100vh - 9rem);
}

/*----------------------------------------
  SEKCE LANGOŠE
----------------------------------------*/
#langose,
.langose-section {
    position: relative;
    background: url('/images/langoseBG.png') center/cover no-repeat;
    background-color: #1a1209; /* fallback */
}

/* Nadpis */
#langose .divider-lines h2,
.langose-section .divider-lines h2 {
    font-family: 'Lobster', cursive;
    color: #D6C796;
}

/* Wrapper pre obrázok langošov */
.langose-img-wrapper {
    position: relative;
    z-index: 2;
}

/* Hlavný obrázok Langošov */
.langose-main-img {
    height: 70vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    cursor: zoom-in;
}

/* Modal pre Langoše */
.langos-modal-dialog {
    max-width: min(90vw, 860px);
}
.langos-modal-img {
    max-height: calc(100vh - 9rem);
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/*----------------------------------------
  CATERING A GALÉRIA
----------------------------------------*/
.catering-section {
    position: relative;
    background: url('/images/woodBG.jpg') center/cover no-repeat;
}
.catering-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.catering-gallery {
    position: relative;
    z-index: 2;
}
/* Jednotný pomer obrázkov v galérii */
.catering-gallery .gallery-item {
    overflow: hidden;
}
.catering-gallery .gallery-inner {
    width: 100%;
    aspect-ratio: 3 / 4;
    position: relative;
}
.catering-gallery .gallery-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* CTA ikona na catering */
.catering-cta .avatar-icon {
    width: 56px;
    height: 56px;
    border: 3px solid #fff;
    border-radius: 50%;
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
}

/*----------------------------------------
  SEKCE KONTAKT
----------------------------------------*/
.contact-section {
    position: relative;
    padding-top: 2vh;
}
.contact-section .torn-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background: url('/images/tornPaper.png') no-repeat center top;
    background-size: cover;
    pointer-events: none;
    z-index: 2;
}
.contact-section .container {
    position: relative;
    z-index: 3;
}

/*----------------------------------------
  PATIČKA (FOOTER)
----------------------------------------*/
footer {
    background: #000;
    color: #fff;
    position: relative;
    padding-top: 3rem;
}
footer a {
    color: inherit;
}
footer .divider-lines h3 {
    font-family: 'Lobster', cursive;
    color: #D6C796;
}

/*----------------------------------------
  ODKAZY (ANCHOR) OFFSET
----------------------------------------*/
#denne-menu,
#kontakt,
#catering-oslavy,
#langose {
    scroll-margin: 120px;
}

/*----------------------------------------
  RESPONZÍVNE ÚPRAVY
----------------------------------------*/
@media (max-width: 576px) {
    .zoom-image-modal .modal-dialog {
        padding: 0.75rem;
    }

    .zoom-image-modal .modal-body,
    .zoom-image-modal .modal-content > .d-flex {
        padding: 4rem 0.5rem 0.5rem !important;
    }

    .zoom-image-modal .carousel-item img,
    .menu-modal-img,
    .langos-modal-img {
        max-height: calc(100vh - 7rem);
    }

    .zoom-modal-close {
        top: calc(env(safe-area-inset-top, 0px) + 0.75rem);
        right: calc(env(safe-area-inset-right, 0px) + 0.75rem);
        width: 2.75rem;
        height: 2.75rem;
    }

    .zoom-modal-close span {
        font-size: 1.8rem;
    }

    /* Langose obrázok na mobile */
    .langose-main-img {
        height: 40vh;
        max-width: 90vw;
    }
    /* Výška karuselových slideov v Jedálnom lístku */
    .menu-slide {
        height: 40vh;
    }
    .menu-slide-hody {
        height: 40vh;
        width: 80vw;
    }
    /* Nav carousel buttony na mobile – trochu bližšie */
    .menu-prev-btn { left: -0.25rem; }
    .menu-next-btn { right: -0.25rem; }
    /* Daily menu card padding na mobile */
    .daily-menu-card {
        padding: 1.25rem 1rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .langose-main-img {
        height: 50vh;
    }
    .menu-slide {
        height: 50vh;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .menu-slide {
        height: 62vh;
    }
    .langose-main-img {
        height: 62vh;
    }
}

@media (min-width: 769px) {
    /* Sekcia Langoš – pôvodná výška */
    .langose-section {
        height: 110vh;
    }
    /* Bodka medzi nav-linkami */
    @media (min-width: 992px) {
        #myNavbar .navbar-nav .nav-item + .nav-item .nav-link {
            position: relative;
        }
        #myNavbar .navbar-nav .nav-item + .nav-item .nav-link::before {
            content: "•";
            position: absolute;
            top: 50%;
            left: -0.15rem;
            transform: translateY(-50%);
            color: #fff;
            font-size: 1rem;
            line-height: 1;
        }
    }
}

@media (max-width: 991.98px) {
    #myNavbar {
        background: transparent !important;
        border-bottom-color: transparent !important;
    }

    #myNavbar .navbar-collapse,
    #myNavbar .navbar-collapse.show,
    #myNavbar .navbar-collapse.collapsing {
        margin-top: 0.85rem;
        padding: 0.9rem 1rem;
        border: 1px solid rgba(214, 199, 150, 0.14);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(32, 21, 15, 0.96) 0%, rgba(54, 36, 26, 0.92) 100%) !important;
        box-shadow: 0 14px 30px rgba(12, 8, 5, 0.28);
        backdrop-filter: blur(10px);
    }

    #myNavbar .navbar-nav {
        gap: 0;
    }

    #myNavbar .navbar-nav .nav-link {
        padding: 0.8rem 0.2rem;
        border-bottom: 1px solid rgba(214, 199, 150, 0.1);
    }

    #myNavbar .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    #myNavbar .navbar-nav .nav-link::after {
        left: 0;
        right: auto;
        width: 2.5rem;
        bottom: 0.45rem;
    }

    #myNavbar .navbar-toggler {
        color: #fff !important;
    }

    #myNavbar .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.96%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.25' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        filter: none !important;
    }
}

@media (min-width: 992px) {
    #myNavbar .navbar-nav .nav-item + .nav-item .nav-link::before {
        color: rgba(214, 199, 150, 0.72);
    }
}

@media (min-width: 1200px) {
    /* Karusel Jedálny lístok na veľmi širokých obrazovkách */
    .carousel-wrapper {
        max-width: 62vw;
    }
    .langose-main-img {
        height: 70vh;
    }
}

input:focus{
    outline: none !important;
    border-color: black !important;
    box-shadow: none !important;
}


/*----------------------------------------
  POPUP
----------------------------------------*/

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

.popup-animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

.popup-animate-out {
    animation: fadeOutDown 0.5s ease-in forwards;
}

@media (max-width: 768px) {
    .popup-wrapper {
        height: 80vh !important;
        flex-direction: column !important;
        width: 80vw;
    }

    .popup-image img {
        height: 100% !important;
        object-fit: cover;
    }

    .popup-text {
        height: 50% !important;
        overflow-y: auto;
    }

    .popup-overlay{
        align-items: start;
    }
}
