

/* Nav/logo font: Alumni Sans SC (Google Fonts) — loaded in base.html */


@font-face {
    font-family: 'Manrope';
    src: url("/static/fonts/Manrope-Regular.8ca1a84037fd.ttf") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url("/static/fonts/Manrope-Bold.8e8fe178c0f1.ttf") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Sunbeat';
    src: url("/static/fonts/Sunbeat.34d3dc0a8e85.woff2") format("woff2");
    font-display: swap;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden ;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    z-index: 1000;
}

/* logo styles → see BRAND LOGO section */

a {
    text-decoration: none;
    color: #222;
    cursor: pointer;
}

ul a:hover {
    color: rgb(196, 41, 41);
}

ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-inline: 30px;
}

li {
    list-style: none;
    font-family: 'Alumni Sans SC', sans-serif;
    font-size: clamp(1.2rem, 1.7vw, 2.2rem);
}

h1 {
    font-size: 2rem;

    font-weight:500;
    
}

span {
    font-size: 1.4rem;
    
}

.img {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 20px;
    
   
   
}

.img img {
    height: 100%;
   max-width: 100%;
    border-radius: 10px;
 
    
}
.instagram {
    display: flex;
    justify-content: center;
    align-items: center;
  
   
}

.instagram a {
    text-align: center;
    color: rgb(196, 41, 41);
    padding: 10px 20px;
    border: 2px solid red;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
}
.instagram a:hover {
    background-color: rgb(196, 41, 41);
    color: white;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.text {
    text-align: center;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
     
}
.text h1 {
    font-family: 'Manrope';
    font-size: 2rem;
}

.text p {
   font-family: 'Manrope';
   text-align: left;
   padding-inline: 40px;
   font-size: 1.7rem;
   text-indent: 2.5rem;
  
}

.vesti {
    padding: 60px 30px;
    
}
.vesti h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;

    text-align: center;

    margin-bottom: 60px;

    color: #111;

    position: relative;
    font-family: 'Manrope';
    
}

/* Elegantna linija ispod */

.vesti h1::after {
    content: '';

    width: 80px;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        #222,
        transparent
    );

    position: absolute;

    left: 50%;
    bottom: -18px;

    transform: translateX(-50%);
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.card a {
    display: block;
}
.card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 4px 10px rgba(0,0,0,0.05),
        0 10px 30px rgba(0,0,0,0.08);
    
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease;
    
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.05),
        rgba(0,0,0,0.03)
    );

    opacity: 0;
    transition: opacity 0.35s ease;

    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.08),
        0 20px 50px rgba(0,0,0,0.15);
}

.card:hover::before {
    opacity: 1;
}

.card img {
    transition: transform 0.5s ease;
     width: 100%;
    height: 250px;
    object-fit: cover;
}

.card:hover img {
    transform: scale(1.03);
}


.content {
    padding: 20px;
}

.content h2 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: 'Manrope';
}

.content p {
    line-height: 1.6;
    color: #555;
      font-family: 'Manrope';
}

.cnt-footer {
    background-color: black;
    display: flex;
    justify-content: space-between;
    padding: 40px 40px;
    
}
.left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 1px solid white;
    padding-left: 20px;
}

.left h2 {
    color: white;
}
.left p {
    color: white;
}
.left a {
    color: white;
    font-family: 'Manrope';
    font-size: 1.2rem;
}
.left a:hover {
    color: rgb(172, 29, 29);
}
.right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
    border-top: 1px solid white;
    padding-top: 20px;
}

.right h2 {
    color: white;
}
.right p {
    color: white;
}

.right h3 {
    color: white;
    font-family:'Citizen OT';
    font-weight: bold;
}


.igumanija {
    padding: 60px 30px;
    
}
.igumanija h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;

    text-align: center;

    margin-bottom: 60px;

    color: #111;

    position: relative;
    font-family: 'Manrope';
    
}

.igumanija h1::after {
    content: '';

    width: 80px;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        #222,
        transparent
    );

    position: absolute;

    left: 50%;
    bottom: -18px;

    transform: translateX(-50%);
}

.video-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;

    box-shadow: 0 18px 50px rgba(0,0,0,0.12);

    transition: all 0.4s ease;

    display: grid;
    grid-template-columns: 1fr 1fr;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.18);
}
.video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.video-info {
    padding: 20px 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.video-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #111;
    font-family: 'Manrope';
}

.video-info p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #555;
    font-family: 'Manrope';
}


footer {
    background: #111;
    color: white;

    margin-top: 100px;
    padding: 60px 30px;
}

.cnt-footer {
     background: #111;
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 50px;
    flex-wrap: wrap;
}

footer h2 {
    margin-bottom: 20px;
    font-family: 'Manrope';
    font-size: 2rem;
    letter-spacing: 1px;
}

footer p {
    margin-bottom: 12px;
    font-family: 'Manrope';
    color: #ccc;
    line-height: 1.7;
    font-size: 1.2rem;
}

.socials {
    display: flex;
 
    gap: 18px;
    margin-top: 20px;
}

.socials a {
    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

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

    text-decoration: none;

    transition: all 0.3s ease;
}

.socials i {
    font-size: 1.5rem;
    color: white;

    transition: 0.3s ease;
}

.socials a:hover {
    transform: translateY(-6px);
    background: white;
}

.socials a:hover i {
    color: #111;
}

@media (max-width: 768px) {

    .cnt-footer {
        flex-direction: column;
    }

}

.jelena {
    padding: 60px 30px;
  
   
    
}
.jelena h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;

    text-align: center;

    margin-bottom: 60px;

    color: #111;

    position: relative;
    font-family: 'Manrope';
    
}

.jelena h1::after {
    content: '';

    width: 80px;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        #222,
        transparent
    );

    position: absolute;

    left: 50%;
    bottom: -18px;

    transform: translateX(-50%);
}

.cnt-jelena {
     display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.cnt-jelena img{
    max-width: 100%;
   border-radius: 10px;
}

.cnt-jelena p {

   font-family: 'Manrope';
   text-align: justify;
   padding-inline: 60px;
   font-size: 1.7rem;
   text-indent: 2.5rem;


}

/* =========================
   ABOUT BLOCK SYSTEM
========================= */

.about-block {
    padding: 80px 30px;
    background: #fff;
}

/* svaka sekcija ista širina */
.about-layout {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.about-media {
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 25px 60px rgba(0,0,0,0.12);

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-media img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

/* mali “life” efekat */
.about-media:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 80px rgba(0,0,0,0.18);
}

/* TEXT */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-title {
    font-family: 'Manrope';
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;

    margin-bottom: 10px;
    color: #111;

    position: relative;
}

/* mala linija */
.section-title::after {
    content: '';
    display: block;

    width: 90px;
    height: 2px;
    margin-top: 12px;

    background: linear-gradient(to right, #111, transparent);
}

.about-text h2 {
    font-family: 'Manrope';
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 10px;
}

.about-text p {
    font-family: 'Manrope';
    font-size: 1.25rem;
    line-height: 2;
    text-align: justify;
    color: #444;
    text-indent: 2.5rem;
}

/* REVERSE LAYOUT */
.about-block.reverse .about-layout {
    grid-template-columns: 1fr 1.1fr;
}

.about-block.reverse .about-media {
    order: 2;
}

.about-block.reverse .about-text {
    order: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-block {
        padding: 56px 24px;
    }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .about-media img {
        height: 300px;
        border-radius: 14px;
    }
    .about-block.reverse .about-media,
    .about-block.reverse .about-text {
        order: unset;
    }
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    .about-text h2 {
        font-size: 1.4rem;
    }
    .about-text p {
        font-size: 1.05rem;
        line-height: 1.85;
        text-indent: 1.4rem;
    }

    /* ── REVERSE BLOCK: card-overlap layout on mobile ── */
    .about-block.reverse {
        padding: 0;
        background: #f5f4f2;
    }

    .about-block.reverse .about-layout {
        display: block;
        gap: 0;
    }

    .about-block.reverse .about-media {
        border-radius: 0;
        box-shadow: none;
        order: 1;
    }

    .about-block.reverse .about-media img {
        height: 280px;
        border-radius: 0;
        object-fit: cover;
    }

    .about-block.reverse .about-text {
        order: 2;
        background: #fff;
        border-radius: 20px 20px 0 0;
        margin-top: -24px;
        position: relative;
        z-index: 2;
        padding: 28px 22px 36px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    }

    .about-block.reverse .about-text h2 {
        font-size: 1.35rem;
        color: #111;
        margin-bottom: 4px;
        position: relative;
        padding-bottom: 12px;
    }

    .about-block.reverse .about-text h2::after {
        content: '';
        display: block;
        width: 36px;
        height: 2px;
        background: #c42929;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .about-block.reverse .about-text p {
        font-size: 0.97rem;
        line-height: 1.82;
        text-indent: 0;
        text-align: left;
        color: #444;
        margin-top: 8px;
    }
}

@media (max-width: 600px) {
    .about-block {
        padding: 44px 18px;
    }
    .about-block.reverse {
        padding: 0;
    }
    .about-media img {
        height: 240px;
        border-radius: 10px;
    }
    .about-block.reverse .about-media img {
        height: 240px;
        border-radius: 0;
    }
    .about-block.reverse .about-text {
        padding: 24px 18px 30px;
        margin-top: -20px;
    }
    .about-media {
        box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    }
    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }
    .section-title::after {
        width: 50px;
        margin-top: 8px;
    }
    .about-text h2 {
        font-size: 1.2rem;
    }
    .about-text p {
        font-size: 0.98rem;
        line-height: 1.8;
        text-indent: 1rem;
        text-align: left;
    }
    .about-text {
        gap: 12px;
    }
}

@media (max-width: 380px) {
    .about-block {
        padding: 36px 14px;
    }
    .about-block.reverse {
        padding: 0;
    }
    .about-media img {
        height: 200px;
    }
    .about-block.reverse .about-media img {
        height: 200px;
        border-radius: 0;
    }
    .about-block.reverse .about-text {
        padding: 20px 16px 28px;
        margin-top: -18px;
    }
    .section-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    .about-text p {
        font-size: 0.93rem;
        text-indent: 0.8rem;
    }
}

/* =========================
   RESPONSIVE BASE
========================= */

@media (max-width: 1024px) {

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .text p,
    .cnt-jelena p {
        font-size: 1.4rem;
        padding-inline: 20px;
    }

}

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        gap: 15px;
    }

    ul {
        flex-wrap: wrap;
        gap: 15px;
        padding-inline: 0;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .video-card {
        grid-template-columns: 1fr;
    }

    .cnt-footer {
        flex-direction: column;
    }

    .text p,
    .cnt-jelena p {
        font-size: 1.2rem;
        padding-inline: 15px;
        text-align: left;
    }

    .img img {
        width: 100%;
        height: auto;
    }

}

@media (max-width: 480px) {

    h1 {
        font-size: 1.4rem;
    }

    .text h1 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .instagram a {
        font-size: 0.9rem;
        padding: 8px 14px;
    }

    .socials a {
        width: 50px;
        height: 50px;
    }

}

/** MARKET CSS **/

.cnt-products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 40px;
}
@media (max-width: 768px) {
    .cnt-products {
        grid-template-columns: 1fr ;
    }
}

.product-card {
    
    background: white;
    border-radius: 16px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-title {
    font-size: 1.2rem;
    font-family: 'Manrope';
}

.product-description {
    color: #555;
    font-size: 0.95rem;
}

.product-price {
    font-weight: bold;
    font-size: 1.1rem;
}

.product-contact {
    display: inline-block;
    margin-top: 10px;

    padding: 10px 14px;
    text-align: center;

    background: #111;
    color: white;

    border-radius: 8px;
    cursor: pointer;

    text-decoration: none;

    transition: 0.3s ease;
}

.product-contact:hover {
    background: #333;
}
/* BACKDROP */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
}

/* SKRIVEN */
.modal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* BOX */
.modal-content {
    width: min(420px, 90%);
    background: #fff;
    border-radius: 18px;
    padding: 25px 22px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    transform: translateY(0);
    animation: pop 0.25s ease;
}

/* ANIMACIJA */
@keyframes pop {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* NASLOV */
.modal-content h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #111;
}

/* INPUT */
.modal-content input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;

    border: 1px solid #ddd;
    border-radius: 10px;

    font-size: 1rem;
    outline: none;
    transition: 0.2s;
}

.modal-content input:focus {
    border-color: #c42929;
}

/* BUTTON */
.modal-content button {
    width: 100%;
    padding: 12px;

    border: none;
    border-radius: 10px;

    background: #c42929;
    color: white;

    font-size: 1rem;
    cursor: pointer;

    transition: 0.25s ease;
}

.modal-content button:hover {
    background: #a61f1f;
}

/* CLOSE BUTTON */
#closeModal {
    margin-top: 10px;
    background: transparent;
    color: #555;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
}

#closeModal:hover {
    color: #000;
}

/** vesti.html **/

.cnt-vesti {
    max-width: 1100px;

    margin: 80px auto;
    padding: 0 25px;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* HERO SLIKA */

.cnt-vesti img {
    width: 100%;
    max-height: 700px;

    object-fit: contain;

    border-radius: 24px;

    background: #111;

    padding: 10px;
}

/* SADRZAJ */

.cnt-vesti .content {
    background: white;

    padding: 50px;

    border-radius: 24px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

    position: relative;
}

/* NASLOV */

.cnt-vesti h2 {
    font-size: clamp(2.3rem, 5vw, 5rem);

    line-height: 1.1;

    margin-bottom: 30px;

    font-family: 'Manrope';

    color: #111;

    font-weight: 700;

    letter-spacing: -2px;
}

/* TEKST */

.cnt-vesti p {
    font-size: clamp(1.1rem, 2vw, 1.45rem);

    line-height: 2;

    color: #444;

    font-family: 'Manrope';

    text-align: justify;

    text-indent: 3rem;
}

/* SUptilna linija */

.cnt-vesti .content::before {
    content: '';

    width: 90px;
    height: 3px;

    background: linear-gradient(
        to right,
        #111,
        transparent
    );

    position: absolute;

    top: 25px;
    left: 50px;

    border-radius: 20px;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .cnt-vesti {
        margin: 40px auto;
    }

    .cnt-vesti .content {
        padding: 30px 22px;
    }

    .cnt-vesti p {
        text-indent: 1.5rem;
        line-height: 1.8;
    }

}

/** toggle menu **/

.menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* desktop default */
.nav-links {
    display: flex;
    gap: 30px;
}

.close-menu {
    display: none;
}

/* mobile */
@media (max-width: 768px) {

    nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .text p {
        text-align: center;
        text-indent: 0;
    }

    .menu-toggle {
        display: flex;
        align-self: center;
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 100;
    }

    /* fullscreen overlay */
    .nav-links {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 0;
        background: #111;
        z-index: 9999;

        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: flex;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    /* close button — pull out of flow */
    .close-menu {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
        list-style: none;
    }

    #closeMenu {
        background: none;
        border: none;
        color: rgba(255,255,255,0.5);
        font-size: 1.6rem;
        cursor: pointer;
        line-height: 1;
        transition: color 0.2s;
    }

    #closeMenu:hover {
        color: #c42929;
    }

    /* links */
    .nav-links li:not(.close-menu) a {
        display: block;
        font-family: 'Alumni Sans SC', sans-serif;
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        font-weight: 400;
        letter-spacing: 4px;
        color: rgba(255,255,255,0.6);
        text-align: center;
        padding: 16px 0;
        width: 100vw;
        transition: color 0.2s ease;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links li:first-of-type:not(.close-menu) a {
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links li:not(.close-menu) a:hover {
        color: white;
    }

}


/** top hidden **/

.scroll-top {
    position: fixed;
   top:0;
   left: 50%;

    width: 50px;
    height: 50px;

    border-radius: 50%;
    border: none;

    background: #111;
    color: white;

    font-size: 22px;
    cursor: pointer;

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

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all 0.3s ease;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #c42929;
}
.messages {
    position: fixed;
    top: 20px;
    left: 50%;

    transform: translateX(-50%) translateY(-10px);

    z-index: 99999;

    opacity: 0;

    animation: msgIn 0.4s ease forwards, msgOut 0.6s ease 3.5s forwards;
}

.alert {
    padding: 14px 20px;
    border-radius: 10px;
    background: #111;
    color: white;
    font-family: 'Manrope';
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 10px;
    animation: fadeIn 0.3s ease;
}

.alert.success {
    background: #1f8f3a;
}

@keyframes msgIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes msgOut {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
}

/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;

    overflow: hidden;
}

.about-hero img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    filter: brightness(65%);
}

.about-hero .overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.2),
            rgba(0,0,0,0.55)
        );
}

.hero-content {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    text-align: center;
    color: white;

    width: 90%;
}

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-family: 'Manrope';
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-family: 'Manrope';
    color: rgba(255,255,255,0.9);
}

/* WRAPPER */

.about-wrapper {
    max-width: 1200px;
    margin: 80px auto;

    padding: 0 25px;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* CARD */

.about-card {
    background: white;

    padding: 50px;

    border-radius: 24px;

    box-shadow:
        0 10px 40px rgba(0,0,0,0.06);

    position: relative;
}

/* SECTION TITLE */

.section-title {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 30px;
}

.section-title span {
    width: 60px;
    height: 2px;

    background: #111;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-family: 'Manrope';
    font-weight: 600;

    color: #111;
}

/* TEXT */

.about-card p {
    font-size: clamp(1.05rem, 2vw, 1.3rem);

    line-height: 2;

    color: #444;

    font-family: 'Manrope';

    text-align: justify;

    margin-bottom: 25px;

    text-indent: 2.5rem;
}

/* HOVER */

.about-card:hover {
    transform: translateY(-4px);

    transition: 0.35s ease;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.08);
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .about-hero {
        height: 55vh;
    }

    .about-card {
        padding: 30px 22px;
    }

    .about-card p {
        text-indent: 1.5rem;
        line-height: 1.8;
    }

    .section-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

}


/** REC PAGE **/

.word-hero {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;

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

.word-hero img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.word-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.3),
            rgba(0,0,0,0.65)
        );

    z-index: 1;
}

.word-hero-content {
    position: relative;
    z-index: 2;

    text-align: center;
    color: white;

    padding: 20px;
}

.word-hero-content span {
    display: inline-block;
    letter-spacing: 6px;
    font-size: 0.8rem;
    font-family: 'Manrope';
    font-weight: 400;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
    margin-bottom: 16px;
}

.word-hero-content h1 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    margin-top: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* WRAPPER */

.word-wrapper {
    width: min(1100px, 92%);
    margin: 80px auto;

    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* CARD */

.word-card {
    background: white;

    border-radius: 28px;
    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08);

    transition: 0.35s ease;
}

.word-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */

.word-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.word-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.word-card:hover img {
    transform: scale(1.03);
}

/* CONTENT */

.word-content {
    padding: 50px;
}

/* META */

.word-meta {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 20px;
}

.author {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #888;
    font-family: 'Manrope';
}

.line {
    width: 60px;
    height: 1px;
    background: #999;
}

/* TITLE */

.word-content h2 {
    font-size: clamp(2rem, 4vw, 4rem);

    line-height: 1.1;
    margin-bottom: 35px;

    font-family: 'Manrope';
    color: #111;
}

/* TEXT */

.word-text {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.word-text p {
    font-size: 1.2rem;
    line-height: 2;

    color: #444;

    font-family: 'Manrope';

    text-align: justify;

    text-indent: 2rem;
}

/* QUOTE */

.word-text blockquote {
    border-left: 4px solid #c42929;

    padding-left: 20px;

    font-size: 1.4rem;
    line-height: 1.8;

    color: #222;

    font-style: italic;

    font-family: 'Georgia', serif;

    margin: 10px 0;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .word-hero {
        height: 50vh;
    }

    .word-image {
        height: 280px;
    }

    .word-content {
        padding: 30px 22px;
    }

    .word-text p {
        font-size: 1.05rem;
        line-height: 1.9;

        text-indent: 1.2rem;
    }

    .word-text blockquote {
        font-size: 1.1rem;
    }

}


/* SEARCH FORM */

/* ── SEARCH FORM ── */
.search-form {
    width: min(680px, 100%);
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
}

.search-form-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
}

/* input wrapper with icon */
.search-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: #aaa;
    pointer-events: none;
    flex-shrink: 0;
}

.search-form input {
    width: 100%;
    height: 54px;
    padding: 0 18px 0 46px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    font-family: 'Manrope';
    font-size: 0.95rem;
    color: #111;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.search-form input::placeholder {
    color: #bbb;
    font-size: 0.92rem;
}

.search-form input:focus {
    border-color: rgba(196,41,41,0.4);
    box-shadow: 0 4px 18px rgba(196,41,41,0.08);
}

.search-form button {
    height: 54px;
    padding: 0 26px;
    border: none;
    border-radius: 12px;
    background: #111;
    color: white;
    font-family: 'Manrope';
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.2s ease;
}

.search-form button:hover {
    background: rgb(196,41,41);
    transform: translateY(-1px);
}

.search-form button:active {
    transform: scale(0.98);
}

.search-form p {
    font-family: 'Manrope';
    font-size: 0.75rem;
    color: #aaa;
    letter-spacing: 0.5px;
    padding-left: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
    .search-form {
        padding: 0 16px;
        gap: 8px;
        margin-top: 28px;
    }
    .search-form-row {
        flex-direction: column;
        gap: 8px;
    }
    .search-form input {
        width: 100%;
        height: 50px;
        font-size: 1rem;
    }
    .search-form button {
        width: 100%;
        height: 50px;
        font-size: 0.85rem;
        border-radius: 12px;
    }
}

@media (max-width: 380px) {
    .search-form input {
        height: 46px;
        padding-left: 42px;
        font-size: 0.9rem;
    }
    .search-form button {
        height: 46px;
    }
}
/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
    padding: 100px 30px;
    background: #fafafa;
}

/* HERO */
.gallery-hero {
    max-width: 1100px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.gallery-hero h1 {
    font-family: 'Manrope';
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    letter-spacing: -1px;
    color: #111;
    margin-bottom: 20px;
}

.gallery-hero p {
    font-family: 'Manrope';
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* GRID */
.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.gallery-card {
    display: block;
    border-radius: 18px;
    overflow: hidden;

    position: relative;

    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;

    transition: transform 0.5s ease;
}

/* hover */
.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* CTA CARD */
.cta-card {
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    text-align: center;
    padding: 30px;
}

.cta-content h2 {
    font-family: 'Manrope';
    color: white;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.cta-content span {
    color: rgba(255,255,255,0.7);
    font-family: 'Manrope';
    font-size: 1rem;
}

/* hover CTA */
.cta-card:hover {
    background: rgb(196, 41, 41);
    transform: translateY(-6px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card img {
        height: 240px;
    }
}

/* =========================
   LIKOVNA KOLONIJA — lkolonija-*
========================= */

/* Card info overlay (index + gallery page) */
/* HERO */
.lkolonija-hero {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

.lkolonija-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lkolonija-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.7)
    );
}

.lkolonija-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.lkolonija-hero-content span {
    letter-spacing: 6px;
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.lkolonija-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-family: 'Manrope';
}

/* EDITORIAL LAYOUT */
.lkolonija-editorial {
    padding: 100px 30px;
    background: #fafafa;
}

.lkolonija-editorial-grid {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.lkolonija-editorial-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.lkolonija-editorial-media img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* TEXT */
.lkolonija-editorial-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lkolonija-author {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: #888;
}

.lkolonija-title {
    font-size: 2.2rem;
    color: #111;
}

.lkolonija-line {
    width: 80px;
    height: 2px;
    background: #111;
}

.lkolonija-desc {
    font-size: 1.2rem;
    line-height: 2;
    color: #444;
    text-align: justify;
}

/* BACK BUTTON */
.lkolonija-back {
    margin-top: 20px;
    color: #111;
    text-decoration: none;
    font-weight: bold;
}

.lkolonija-back:hover {
    color: #c42929;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .lkolonija-editorial-grid {
        grid-template-columns: 1fr;
    }

    .lkolonija-editorial-media img {
        height: 350px;
    }
}
/* =========================
   LKOLONIJA CARD REDESIGN
========================= */

/* taller image for overlay effect */
.lkolonija-card img {
    height: 340px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.lkolonija-card:hover img {
    transform: scale(1.07);
}

/* overlay info — always visible at bottom */
.lkolonija-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 22px 22px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        transparent 100%
    );
    transition: background 0.4s ease;
}

.lkolonija-card:hover .lkolonija-card-info {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.6) 60%,
        rgba(0,0,0,0.15) 100%
    );
}

.lkolonija-card-author {
    font-family: 'Manrope';
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.lkolonija-card:hover .lkolonija-card-author {
    color: rgba(255, 255, 255, 0.85);
}

.lkolonija-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
    transform: translateY(4px);
    transition: transform 0.35s ease;
}

.lkolonija-card:hover .lkolonija-card-title {
    transform: translateY(0);
}


/* ═══════════════════════════════════════════
   БИОСКОП — bioskop-*
   (scoped prefix, no global changes)
═══════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────── */
.bioskop-hero {
    position: relative;
    width: 100%;
    height: 92vh;
    min-height: 560px;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bioskop-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
}

.bioskop-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(196,41,41,0.12) 0%, transparent 60%),
        linear-gradient(160deg, rgba(0,0,0,0.75) 0%, rgba(15,10,10,0.6) 100%);
}

/* film-strip texture lines */
.bioskop-hero::before,
.bioskop-hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28px;
    z-index: 2;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 18px,
        rgba(255,255,255,0.03) 18px,
        rgba(255,255,255,0.03) 34px
    );
    z-index: 1;
}
.bioskop-hero::before { left: 0; }
.bioskop-hero::after  { right: 0; }

.bioskop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bioskop-hero-label {
    font-family: 'Manrope';
    font-size: 0.72rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.bioskop-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 11vw, 9rem);
    font-weight: 600;
    line-height: 0.95;
    color: white;
    letter-spacing: -1px;
}

.bioskop-hero-sub {
    font-family: 'Manrope';
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.bioskop-hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem;
    color: rgba(255,255,255,0.25);
    z-index: 2;
    animation: bioskop-bounce 2s infinite;
}

@keyframes bioskop-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── FEATURED FILM ────────────────────────── */
.bioskop-featured {
    background: #111;
    padding: 80px 40px;
    width: 100%;
}

.bioskop-featured-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
}

.bioskop-featured-poster {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.06);
}

.bioskop-featured-poster img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.bioskop-featured-poster:hover img {
    transform: scale(1.03);
}

.bioskop-featured-eyebrow {
    font-family: 'Manrope';
    font-size: 0.72rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgb(196,41,41);
    margin-bottom: 16px;
}

.bioskop-featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 600;
    color: white;
    line-height: 1.05;
    margin-bottom: 28px;
}

.bioskop-featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 28px;
}

.bioskop-meta-item {
    font-family: 'Manrope';
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    gap: 7px;
}

.bioskop-meta-price {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
}

.bioskop-featured-desc {
    font-family: 'Manrope';
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    max-width: 520px;
}

/* ── TAG BADGES ───────────────────────────── */
.bioskop-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: 'Manrope';
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(196,41,41,0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.bioskop-tag--featured {
    top: 18px;
    left: 18px;
    font-size: 0.7rem;
    padding: 7px 14px;
}

/* ── BUTTONS ──────────────────────────────── */
.bioskop-btn-primary {
    display: inline-block;
    font-family: 'Manrope';
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    background: rgb(196,41,41);
    padding: 16px 36px;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.bioskop-btn-primary:hover {
    background: #a61f1f;
    transform: translateY(-2px);
    color: white;
}

.bioskop-btn-card {
    font-family: 'Manrope';
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 16px;
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.bioskop-btn-card:hover {
    background: rgb(196,41,41);
    border-color: rgb(196,41,41);
    color: white;
}

/* ── PROGRAM SECTION ──────────────────────── */
.bioskop-program {
    background: #141414;
    padding: 80px 40px 100px;
    width: 100%;
}

.bioskop-program-header {
    text-align: center;
    margin-bottom: 60px;
}

.bioskop-section-label {
    font-family: 'Manrope';
    font-size: 0.72rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    display: block;
    margin-bottom: 12px;
}

.bioskop-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    color: white;
    line-height: 1;
}

.bioskop-section-rule {
    width: 40px;
    height: 1px;
    background: rgba(196,41,41,0.7);
    margin: 20px auto 0;
}

/* ── HORIZONTAL SLIDER ────────────────────── */
.bioskop-slider-wrap {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

/* fade edges */
.bioskop-slider-wrap::before,
.bioskop-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.bioskop-slider-wrap::before {
    left: 0;
    background: linear-gradient(to right, #141414, transparent);
}
.bioskop-slider-wrap::after {
    right: 0;
    background: linear-gradient(to left, #141414, transparent);
}

.bioskop-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 30px 30px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.bioskop-slider::-webkit-scrollbar {
    height: 3px;
}
.bioskop-slider::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
}
.bioskop-slider::-webkit-scrollbar-thumb {
    background: rgba(196,41,41,0.5);
    border-radius: 3px;
}

.bioskop-slider.active {
    cursor: grabbing;
}

/* ── MOVIE CARD ───────────────────────────── */
.bioskop-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: #1c1c1c;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bioskop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.bioskop-card-poster {
    position: relative;
    overflow: hidden;
}

.bioskop-card-poster img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.bioskop-card:hover .bioskop-card-poster img {
    transform: scale(1.05);
}

/* description overlay on hover */
.bioskop-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: flex-end;
    padding: 24px 18px;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(3px);
}

.bioskop-card:hover .bioskop-card-overlay {
    opacity: 1;
}

.bioskop-card-desc {
    font-family: 'Manrope';
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.bioskop-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bioskop-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.bioskop-card-meta {
    display: flex;
    gap: 12px;
    font-family: 'Manrope';
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
}

.bioskop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.bioskop-card-price {
    font-family: 'Manrope';
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

/* ── EMPTY STATE ──────────────────────────── */
.bioskop-empty {
    text-align: center;
    font-family: 'Manrope';
    font-size: 1.1rem;
    color: rgba(255,255,255,0.3);
    padding: 60px 20px;
    letter-spacing: 1px;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
    .bioskop-featured-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bioskop-featured-poster img {
        height: 320px;
    }
    .bioskop-featured,
    .bioskop-program {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .bioskop-hero-title {
        font-size: clamp(3.5rem, 15vw, 5rem);
    }
    .bioskop-card {
        flex: 0 0 240px;
    }
    .bioskop-card-poster img {
        height: 300px;
    }
}
/* ══════════════════════════════
   BRAND LOGO
══════════════════════════════ */

.logo {
    margin: 0;
    padding: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    position: relative;
    transition: transform 0.35s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
}

/* ── MARK (image container) ── */
.logo-mark {
    position: relative;
    flex-shrink: 0;
}

.logo-mark img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: box-shadow 0.4s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.14);
}

.logo-link:hover .logo-mark img {
    box-shadow: 0 8px 28px rgba(196,41,41,0.22), 0 0 0 2px rgba(196,41,41,0.18);
}

/* red left-edge accent bar */
.logo-mark-bar {
    position: absolute;
    left: -4px;
    top: 10%;
    height: 80%;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(to bottom, #c42929, #7a1111);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.logo-link:hover .logo-mark-bar {
    opacity: 1;
}

/* ── VERTICAL DIVIDER ── */
.logo-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, #d0d0d0, transparent);
    margin: 0 18px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.logo-link:hover .logo-divider {
    background: linear-gradient(to bottom, transparent, rgba(196,41,41,0.35), transparent);
}

/* ── TEXT BLOCK ── */
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.logo-top {
    font-family: 'Alumni Sans SC', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: #bbb;
    transition: color 0.3s ease;
    margin-bottom: 4px;
}

.logo-link:hover .logo-top {
    color: #999;
}

/* thin red line — replaces the ◆ visually */
.logo-orn {
    font-size: 0;
    display: block;
    height: 1.5px;
    width: 90%;
    background: linear-gradient(to right, #c42929, transparent);
    margin: 0 0 4px 0;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-orn {
    opacity: 1;
}

.logo-bottom {
    font-family: 'Alumni Sans SC', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 0.95;
    background: linear-gradient(160deg, #0f0f0f 40%, #555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: filter 0.3s ease;
}

.logo-link:hover .logo-bottom {
    filter: brightness(0.8);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
    .logo-mark img {
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }
    .logo-divider {
        display: none;
    }
    .logo-text {
        gap: 1px;
    }
    .logo-top {
        font-family: 'Alumni Sans SC', sans-serif;
        font-size: 0.52rem;
        letter-spacing: 5px;
        margin-bottom: 3px;
    }
    .logo-orn {
        width: 80%;
        margin-bottom: 3px;
    }
    .logo-bottom {
        font-family: 'Alumni Sans SC', sans-serif;
        font-size: 1.45rem;
        letter-spacing: 0.5px;
    }
    .logo-mark {
        margin-right: 10px;
    }
}

/* ═���════════════════════════════════════════
   MISSING BASE STYLES (grid2, info-blok)
══════════════════════════════════════════ */

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    width: 100%;
}

.info-blok {
    padding: 60px 30px;
    width: 100%;
}

.info-blok-cnt {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.info-blok-cnt > img {
    width: 420px;
    min-width: 420px;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    flex-shrink: 0;
}

.info-blok-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.info-blok-text p {
    font-family: 'Manrope';
    text-align: justify;
    font-size: 1.7rem;
    line-height: 1.7;
    color: #333;
    text-indent: 2.5rem;
}


/* ══════════════════════════════════════════
   GLOBAL MOBILE RESPONSIVE
   All breakpoints in one place
══════════════════════════════════════════ */

/* ── 1024px ───────────────────────────── */
@media (max-width: 1024px) {

    /* info-blok */
    .info-blok-cnt > img {
        width: 320px;
        min-width: 320px;
        height: 340px;
    }
    .info-blok-text p {
        font-size: 1.4rem;
    }

    /* grid2 director section */
    .grid2 {
        grid-template-columns: 1fr;
    }

}

/* ── 768px ────────────────────────────── */
@media (max-width: 768px) {

    /* ── NAV / LOGO ── (handled in BRAND LOGO @media block) */

    /* ── INDEX HERO TEXT ── */
    .text p {
        font-size: 1.1rem;
        padding-inline: 16px;
        text-indent: 1.5rem;
        text-align: left;
    }
    .text h1 {
        font-size: 1.5rem;
    }

    /* ── INFO BLOK ── */
    .info-blok {
        padding: 40px 20px;
    }
    .info-blok-cnt {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .info-blok-cnt > img {
        width: 100%;
        min-width: unset;
        height: 280px;
    }
    .info-blok-text p {
        font-size: 1.1rem;
        text-indent: 1.2rem;
    }

    /* ── GRID2 ── */
    .grid2 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* ── VESTI SECTION ── */
    .vesti {
        padding: 40px 16px;
    }
    .vesti h1 {
        font-size: 2rem;
        letter-spacing: 4px;
        margin-bottom: 40px;
    }

    /* ── IGUMANIJA / DIREKTOR ── */
    .igumanija {
        padding: 40px 16px;
    }
    .igumanija h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    /* ── JELENA / KUD ── */
    .jelena {
        padding: 40px 16px;
    }
    .jelena h1 {
        font-size: 2rem;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }
    .cnt-jelena {
        gap: 24px;
    }
    .cnt-jelena img {
        max-width: 100%;
        width: 100%;
    }
    .cnt-jelena p {
        font-size: 1.1rem;
        padding-inline: 10px;
        text-indent: 1.2rem;
    }

    /* ── GALLERY SECTION ── */
    .gallery-section {
        padding: 60px 16px;
    }
    .gallery-hero h1 {
        font-size: 1.8rem;
    }
    .gallery-hero p {
        font-size: 1rem;
    }

    /* ── LKOLONIJA DETAIL ── */
    .lkolonija-detail {
        padding: 40px 16px;
    }
    .lkolonija-editorial {
        padding: 40px 16px;
    }
    .lkolonija-editorial-grid {
        grid-template-columns: 1fr;
    }
    .lkolonija-editorial-media img {
        height: 280px;
        width: 100%;
        object-fit: cover;
    }
    .lkolonija-title {
        font-size: 1.6rem;
    }
    .lkolonija-desc {
        font-size: 1rem;
    }

    /* ── BIOSKOP ── */
    .bioskop-hero {
        height: 70vh;
        min-height: 420px;
    }
    .bioskop-hero-title {
        font-size: clamp(3rem, 14vw, 5rem);
    }
    .bioskop-featured {
        padding: 50px 16px;
    }
    .bioskop-featured-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .bioskop-featured-poster img {
        height: 280px;
    }
    .bioskop-featured-title {
        font-size: 2rem;
    }
    .bioskop-program {
        padding: 50px 16px 70px;
    }
    .bioskop-section-title {
        font-size: 2.5rem;
    }
    .bioskop-card {
        flex: 0 0 220px;
    }
    .bioskop-card-poster img {
        height: 300px;
    }

    /* ── FOOTER ── */
    .cnt-footer {
        flex-direction: column;
        gap: 32px;
        padding: 32px 20px;
    }
    .left, .right {
        border: none;
        padding: 0;
    }
    .left {
        border-left: 3px solid rgba(255,255,255,0.15);
        padding-left: 16px;
    }
    .right {
        text-align: left;
    }
    .socials {
        justify-content: flex-start;
    }

    /* ── WORD (REC) HERO ── */
    .word-hero {
        height: 45vh;
    }
    .word-hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    .word-content {
        padding: 24px 18px;
    }
    .word-text p,
    .word-text blockquote {
        font-size: 1rem;
    }

    /* ── ABOUT PAGE ── */
    .about-hero {
        height: 45vh;
    }
    .about-wrapper {
        margin: 40px auto;
        padding: 0 16px;
    }
    .about-card {
        padding: 24px 18px;
    }
    .about-card p {
        font-size: 1rem;
        text-indent: 1.2rem;
    }

    /* ── NEWS DETAIL (vesti.html) ── */
    .cnt-vesti {
        margin: 30px auto;
        padding: 0 16px;
    }
    .cnt-vesti .content {
        padding: 24px 16px;
    }
    .cnt-vesti h2 {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
        letter-spacing: -1px;
    }
    .cnt-vesti p {
        font-size: 1rem;
        text-indent: 1.2rem;
    }

    /* ── SCROLL TOP BTN ── */
    .scroll-top {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

}

/* ── 480px ────────────────────────────── */
@media (max-width: 480px) {

    /* logo */
    .logo-mark img {
        width: 38px;
        height: 38px;
        border-radius: 7px;
    }
    .logo-mark {
        margin-right: 9px;
    }
    .logo-top {
        font-family: 'Alumni Sans SC', sans-serif;
        font-size: 0.48rem;
        letter-spacing: 4px;
        margin-bottom: 2px;
    }
    .logo-bottom {
        font-family: 'Alumni Sans SC', sans-serif;
        font-size: 1.25rem;
        letter-spacing: 0.5px;
    }

    /* hero text */
    .text h1 {
        font-size: 1.3rem;
        padding-inline: 12px;
    }

    /* instagram btn */
    .instagram a {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    /* news grid */
    .grid {
        grid-template-columns: 1fr;
    }

    /* bioskop card min size */
    .bioskop-card {
        flex: 0 0 200px;
    }
    .bioskop-hero-label {
        display: none;
    }

    /* gallery card img height */
    .lkolonija-card img,
    .gallery-card img {
        height: 220px;
    }

    /* socials smaller */
    .socials a {
        width: 46px;
        height: 46px;
    }
    .socials i {
        font-size: 1.2rem;
    }

    /* footer text */
    footer p,
    .left p,
    .right p {
        font-size: 1rem;
    }

}


/* ══════════════════════════════════════════
   ДИРЕКТОР — direktor-*
══════════════════════════════════════════ */

.direktor-section {
    width: 100%;
    background: #f5f4f2;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

/* large watermark behind content */
.direktor-section::before {
    content: 'ДИРЕКТОР';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(6rem, 14vw, 14rem);
    font-weight: 700;
    color: rgba(0,0,0,0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 10px;
    z-index: 0;
}

.direktor-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── BIO COLUMN ── */
.direktor-bio {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.direktor-label {
    font-family: 'Manrope';
    font-size: 0.72rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #c42929;
    font-weight: 400;
}

.direktor-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 600;
    color: #111;
    line-height: 1.0;
    letter-spacing: -0.5px;
}

.direktor-rule {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, #c42929, transparent);
}

.direktor-text {
    font-family: 'Manrope';
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    text-align: justify;
}

.direktor-signature {
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid #ddd;
}

.direktor-signature span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #888;
    letter-spacing: 0.3px;
}

/* ── VIDEO COLUMN ── */
.direktor-videos {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.direktor-vcard {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0,0,0,0.06),
        0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.direktor-vcard:hover {
    transform: translateY(-5px);
    box-shadow:
        0 16px 50px rgba(0,0,0,0.10),
        0 4px 12px rgba(0,0,0,0.06);
}

.direktor-vcard-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f0f0f;
    overflow: hidden;
}

.direktor-vcard-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.direktor-vcard-info {
    padding: 22px 24px 26px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.direktor-vcard-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
}

.direktor-vcard-desc {
    font-family: 'Manrope';
    font-size: 0.92rem;
    line-height: 1.7;
    color: #666;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .direktor-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .direktor-bio {
        position: static;
    }
    .direktor-section {
        padding: 70px 30px;
    }
}

@media (max-width: 600px) {
    .direktor-section {
        padding: 50px 18px;
    }
    .direktor-name {
        font-size: 2.6rem;
    }
    .direktor-vcard-info {
        padding: 16px 18px 20px;
    }
    .direktor-vcard-title {
        font-size: 1.2rem;
    }
}


/* ══════════════════════════════════════════
   О НАМА — onas-*
══════════════════════════════════════════ */

/* ── HERO ── */
.onas-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.onas-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(55%);
}

.onas-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.55) 100%
    );
    z-index: 1;
}

.onas-hero-content {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.onas-hero-label {
    font-family: 'Manrope';
    font-size: 0.72rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.onas-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 600;
    line-height: 1;
    color: white;
    letter-spacing: 2px;
}

.onas-hero-sub {
    font-family: 'Manrope';
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* ── SHARED ── */
.onas-section-tag {
    display: inline-block;
    font-family: 'Manrope';
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c42929;
    margin-bottom: 4px;
}

.onas-split-rule {
    width: 44px;
    height: 2px;
    background: linear-gradient(to right, #c42929, transparent);
    margin: 16px 0 24px;
}

/* ── INTRO QUOTE ── */
.onas-section {
    width: 100%;
    background: #fff;
    padding: 80px 40px;
}

.onas-intro {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.onas-intro-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-style: italic;
    line-height: 1.7;
    color: #222;
    position: relative;
    padding: 0 30px;
}

.onas-intro-quote::before {
    content: '❝';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 3rem;
    color: rgba(196,41,41,0.15);
    font-style: normal;
    line-height: 1;
}

/* ── СТАРИ КОЛАШИН SPLIT ── */
.onas-split {
    width: 100%;
    background: #f5f4f2;
    padding: 90px 40px;
}

.onas-split-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.onas-split-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.onas-split-media img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.onas-split-media:hover img {
    transform: scale(1.03);
}

.onas-split-media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px;
    background: rgba(0,0,0,0.55);
    font-family: 'Manrope';
    font-size: 0.72rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
}

.onas-split-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 600;
    color: #111;
    line-height: 1.1;
    margin-bottom: 0;
}

.onas-blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.85;
    color: #333;
    border-left: 3px solid rgba(196,41,41,0.4);
    padding-left: 20px;
    margin: 0 0 14px 0;
}

.onas-author-credit {
    font-family: 'Manrope';
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 1px;
    padding-left: 23px;
}

/* ── ДОМ КУЛТУРЕ HISTORY ── */
.onas-history {
    width: 100%;
    background: #fff;
    padding: 90px 40px;
}

.onas-history-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px;
    align-items: start;
}

.onas-history-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    color: #111;
    line-height: 1.1;
}

.onas-history-text p {
    font-family: 'Manrope';
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
    text-align: justify;
    margin-bottom: 18px;
    text-indent: 2rem;
}

/* timeline */
.onas-timeline {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid #eee;
    padding-left: 24px;
}

.onas-timeline-item {
    position: relative;
    padding: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.onas-timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c42929;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #c42929;
}

.onas-timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #c42929;
    line-height: 1;
}

.onas-timeline-item p {
    font-family: 'Manrope';
    font-size: 0.92rem;
    color: #555;
    line-height: 1.5;
    margin: 0 !important;
    text-indent: 0 !important;
}

.onas-history-media {
    position: sticky;
    top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.onas-history-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.onas-history-media:hover img {
    transform: scale(1.03);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .onas-split-inner,
    .onas-history-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .onas-history-media {
        position: relative;  /* fix: keeps caption anchor */
        top: auto;
        order: -1;
        border-radius: 10px;
        width: 100%;
    }
    .onas-history-media img,
    .onas-split-media img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .onas-split,
    .onas-history {
        padding: 60px 24px;
    }
}

@media (max-width: 600px) {
    .onas-hero {
        height: 65vh;
    }
    .onas-section,
    .onas-split,
    .onas-history {
        padding: 50px 18px;
    }
    .onas-intro-quote {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    .onas-blockquote {
        font-size: 1.1rem;
    }
    .onas-history-text p {
        text-indent: 1rem;
        font-size: 0.98rem;
    }
    .onas-history-media img {
        height: 220px;
    }
    .onas-history-media,
    .onas-split-media {
        border-radius: 8px;
        width: 100%;
        overflow: hidden;
    }
    .onas-split-media-caption {
        font-size: 0.65rem;
        padding: 8px 12px;
    }
}

@media (max-width: 380px) {
    .onas-history-media img,
    .onas-split-media img {
        height: 180px;
    }
}


/* ══════════════════════════════════════════
   РЕЗЕРВАЦИЈА MODAL — rezv-*
══════════════════════════════════════════ */

.rezv-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.rezv-backdrop.rezv-active {
    opacity: 1;
    visibility: visible;
}

.rezv-modal {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 40px 36px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);

    transform: translateY(20px);
    transition: transform 0.35s ease;
}

.rezv-backdrop.rezv-active .rezv-modal {
    transform: translateY(0);
}

/* close */
.rezv-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.07);
    border: none;
    color: rgba(255,255,255,0.5);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.rezv-close:hover {
    background: rgba(196,41,41,0.3);
    color: white;
}

/* header */
.rezv-modal-header {
    margin-bottom: 28px;
}

.rezv-modal-label {
    font-family: 'Manrope';
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c42929;
    display: block;
    margin-bottom: 10px;
}

.rezv-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: white;
    line-height: 1.15;
    margin-bottom: 10px;
}

.rezv-modal-meta {
    font-family: 'Manrope';
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rezv-modal-dot {
    opacity: 0.4;
}

/* form fields */
.rezv-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.rezv-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.rezv-field label {
    font-family: 'Manrope';
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.rezv-req {
    color: #c42929;
}

.rezv-field input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'Manrope';
    font-size: 0.95rem;
    color: white;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.rezv-field input::placeholder {
    color: rgba(255,255,255,0.2);
}

.rezv-field input:focus {
    border-color: rgba(196,41,41,0.5);
    background: rgba(255,255,255,0.09);
}

.rezv-field-error {
    font-family: 'Manrope';
    font-size: 0.78rem;
    color: #e05050;
    min-height: 16px;
}

/* submit button */
.rezv-submit {
    margin-top: 6px;
    background: #c42929;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-family: 'Manrope';
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.25s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rezv-submit:hover:not(:disabled) {
    background: #a61f1f;
    transform: translateY(-1px);
}

.rezv-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* spinner */
.rezv-submit-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: rezv-spin 0.7s linear infinite;
}

.rezv-loading .rezv-submit-spinner {
    display: block;
}

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

/* success state */
.rezv-success {
    text-align: center;
    padding: 20px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.rezv-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(40,180,80,0.15);
    border: 2px solid rgba(40,180,80,0.4);
    color: #4caf50;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rezv-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: white;
    font-weight: 600;
}

.rezv-success p {
    font-family: 'Manrope';
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* error message */
.rezv-error-msg {
    margin-top: 10px;
    padding: 12px 16px;
    background: rgba(196,41,41,0.12);
    border: 1px solid rgba(196,41,41,0.3);
    border-radius: 8px;
    font-family: 'Manrope';
    font-size: 0.85rem;
    color: #e07070;
}

/* mobile */
@media (max-width: 520px) {
    .rezv-modal {
        padding: 30px 22px;
    }
    .rezv-modal-title {
        font-size: 1.5rem;
    }
}

/* ── TOAST NOTIFICATION ── */
.rezv-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    background: #1c1c1c;
    color: white;
    font-family: 'Manrope';
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    padding: 14px 26px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    white-space: nowrap;
    z-index: 99999;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.rezv-toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.rezv-toast--success {
    background: #1a1a1a;
    border-left: 4px solid #4caf50;
}

.rezv-toast--error {
    background: #1a1a1a;
    border-left: 4px solid #c42929;
}

/* ── SUBMIT SENT STATE ── */
.rezv-submit--sent {
    background: #2a6a2a !important;
    transform: none !important;
    cursor: default !important;
}


/* ══════════════════════════════════════════
   ПРОДАВНИЦА — prodav-*
══════════════════════════════════════════ */

/* ── HERO ── */
.prodav-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.prodav-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 40% 50%, rgba(196,41,41,0.07) 0%, transparent 60%),
        linear-gradient(160deg, #0f0f0f 40%, #1a1010 100%);
    z-index: 0;
}

.prodav-hero::before,
.prodav-hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    z-index: 1;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 18px,
        rgba(255,255,255,0.03) 18px,
        rgba(255,255,255,0.03) 34px
    );
}
.prodav-hero::before { left: 0; }
.prodav-hero::after  { right: 0; }

.prodav-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.prodav-hero-label {
    font-family: 'Manrope';
    font-size: 0.72rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.prodav-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 600;
    line-height: 1;
    color: white;
    letter-spacing: 2px;
}

.prodav-hero-sub {
    font-family: 'Manrope';
    font-size: 0.82rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* ── SECTION ── */
.prodav-section {
    background: #141414;
    padding: 80px 40px 100px;
    width: 100%;
}

.prodav-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.prodav-section-label {
    display: block;
    font-family: 'Manrope';
    font-size: 0.68rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 12px;
}

.prodav-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    color: white;
    line-height: 1;
}

.prodav-section-rule {
    width: 40px;
    height: 1px;
    background: rgba(196,41,41,0.7);
    margin: 18px auto 0;
}

/* ── GRID ── */
.prodav-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── CARD ── */
/* ── CARD ── */
.prodav-card {
    background: #1c1c1c;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.prodav-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.55);
}

/* PORTRAIT image — tall 4:5 ratio */
.prodav-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    width: 100%;
}

.prodav-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.7s ease;
}

.prodav-card:hover .prodav-card-img img {
    transform: scale(1.04);
}

/* gradient always visible at bottom of image */
.prodav-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(28,28,28,0.9), transparent);
    pointer-events: none;
}

/* description overlay on hover */
.prodav-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.80);
    display: flex;
    align-items: flex-end;
    padding: 24px 18px;
    opacity: 0;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}

.prodav-card:hover .prodav-card-overlay {
    opacity: 1;
}

.prodav-card-full-desc {
    font-family: 'Manrope';
    font-size: 0.86rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
}

/* body below image */
.prodav-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.prodav-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.prodav-card-desc {
    font-family: 'Manrope';
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
    flex: 1;
}

.prodav-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.07);
    gap: 10px;
}

.prodav-card-price {
    font-family: 'Manrope';
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.prodav-btn-buy {
    font-family: 'Manrope';
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.prodav-btn-buy:hover {
    background: #c42929;
    border-color: #c42929;
}

/* ── EMPTY ── */
.prodav-empty {
    text-align: center;
    font-family: 'Manrope';
    font-size: 1rem;
    color: rgba(255,255,255,0.25);
    padding: 60px 20px;
    letter-spacing: 1px;
}

/* ── MODAL ── */
.prodav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.prodav-backdrop.prodav-active {
    opacity: 1;
    visibility: visible;
}

.prodav-modal {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 40px 36px;
    width: 100%;
    max-width: 460px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.65);
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

.prodav-backdrop.prodav-active .prodav-modal {
    transform: translateY(0);
}

.prodav-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.07);
    border: none;
    color: rgba(255,255,255,0.45);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.prodav-modal-close:hover {
    background: rgba(196,41,41,0.3);
    color: white;
}

.prodav-modal-header {
    margin-bottom: 28px;
}

.prodav-modal-label {
    display: block;
    font-family: 'Manrope';
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c42929;
    margin-bottom: 10px;
}

.prodav-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: white;
    line-height: 1.15;
    margin-bottom: 8px;
}

.prodav-modal-price {
    font-family: 'Manrope';
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}

.prodav-modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.prodav-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.prodav-field label {
    font-family: 'Manrope';
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.prodav-req { color: #c42929; }

.prodav-field input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 13px 16px;
    font-family: 'Manrope';
    font-size: 0.95rem;
    color: white;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.prodav-field input::placeholder {
    color: rgba(255,255,255,0.2);
}

.prodav-field input:focus {
    border-color: rgba(196,41,41,0.5);
    background: rgba(255,255,255,0.09);
}

.prodav-submit {
    margin-top: 6px;
    background: #c42929;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-family: 'Manrope';
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.25s ease, transform 0.2s ease;
}

.prodav-submit:hover:not(:disabled) {
    background: #a61f1f;
    transform: translateY(-1px);
}

.prodav-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.prodav-submit-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: rezv-spin 0.7s linear infinite;
}

.prodav-loading .prodav-submit-spinner {
    display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .prodav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .prodav-hero {
        height: 50vh;
    }
    .prodav-section {
        padding: 60px 18px 70px;
    }
    .prodav-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .prodav-card-img {
        aspect-ratio: 3 / 4;
    }
    .prodav-modal {
        padding: 30px 22px;
    }
    .prodav-modal-title {
        font-size: 1.5rem;
    }
}
