@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@400;500&display=swap');


:root {
    --dark: #181513;
    --cream: #e9dfd2;
    --gold: #b99a68;
    --wine: #6b3036;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    background: var(--dark);
    color: var(--cream);

    font-family: "DM Sans", sans-serif;
}


a {
    color: inherit;
    text-decoration: none;
}


/* ================================
   NAVBAR
================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(33, 28, 24, 0.72);

    backdrop-filter: blur(10px);

    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);

    transition:
        background 0.35s ease,
        backdrop-filter 0.35s ease,
        box-shadow 0.35s ease;
}


.site-header.scrolled {
    background: rgba(33, 28, 24, 0.94);

    backdrop-filter: blur(14px);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}


.navbar {
    width: min(1400px, 92%);
    height: 82px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:  padding 0.35s ease;
}


.site-header.scrolled .navbar {
    padding-top: 12px;
    padding-bottom: 12px;
}


/* LOGO */

.logo {
    font-family: "Cormorant Garamond", serif;

    font-size: 40px;
    font-weight: 600;

    letter-spacing: 0.16em;

    color: var(--cream);
}


/* LINKS */

.nav-links {
    display: flex;
    align-items: center;

    gap: 34px;
}


.nav-links a {
    position: relative;

    font-size: 13px;
    font-weight: 500;

    color: rgba(233, 223, 210, 0.72);

    transition: color 0.25s ease;
}


.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.25s ease;
}


.nav-links a:hover {
    color: var(--cream);
}


.nav-links a:hover::after {
    width: 100%;
}


/* DESNA STRANA */

.nav-right {
    display: flex;
    align-items: center;

    gap: 24px;
}


.instagram {
    font-size: 13px;

    color: rgba(233, 223, 210, 0.7);

    transition: color 0.25s ease;
}


.instagram:hover {
    color: var(--cream);
}


/* REZERVACIJA */

.reservation {
    padding: 11px 18px;

    border: 1px solid rgba(185, 154, 104, 0.55);

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.08em;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.reservation:hover {
    background: var(--gold);
    color: var(--dark);
}



/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;

    min-height: 620px;

    margin: 0;

    overflow: hidden;

    background: #211c18;
}




/* =========================================
   HERO SLIKE
========================================= */

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}


.hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(18, 15, 13, 0.45);

    pointer-events: none;

    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    opacity: 0;

    transform: scale(1);

    animation: soulSlide 16s infinite linear;
}


/* PRVA SLIKA JE ODMAH VIDLJIVA */
.hero-slide:first-child {
    animation-delay: -8s;
}


/* DRUGA KREĆE OD POČETKA */
.hero-slide:nth-child(2) {
    animation-delay: 0s;
}


@keyframes soulSlide {

    0% {
        opacity: 0;
        transform: scale(1);
    }

    40% {
        opacity: 0;
        transform: scale(1.04);
    }

    48% {
        opacity: 1;
        transform: scale(1.07);
    }

    

    88% {
        opacity: 1;
        transform: scale(1.18);
    }

    100% {
        opacity: 0;
        transform: scale(1.18);
    }
}



/* TAMNI PRELAZ PREKO SLIKE */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(18, 15, 13, 0.58) 0%,
            rgba(18, 15, 13, 0.62) 50%,
            rgba(18, 15, 13, 0.78) 100%
        );
}


/* SADRŽAJ */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: none;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 0 40px;

    text-align: center;
}


/* MALI NASLOV */

.hero-label {
    display: block;

    margin-bottom: 18px;
    margin-left: 15px;


    color: var(--gold);

    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.24em;
    text-transform: uppercase;
}


/* GLAVNI NASLOV */

.hero h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(75px, 8vw, 125px);
    font-weight: 600;

    line-height: 0.82;
    letter-spacing: -0.04em;

    color: var(--cream);
}


/* PODNASLOV */

.hero-content > p {
    margin-top: 24px;

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;
    line-height: 1;

    color: var(--cream);
}


/* DOGAĐAJI */

.hero-events {
    margin-top: 28px;

    color: rgba(233, 223, 210, 0.72);

    font-size: 12px;
    font-weight: 500;
    opacity: 1;
    

    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* DUGME */

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    width: fit-content;

    margin-top: 38px;

    padding: 13px 20px;

    border: 1px solid rgba(233, 223, 210, 0.45);

    color: var(--cream);

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}


.hero-button span {
    font-size: 16px;
}


.hero-button:hover {
    gap: 24px;

    background: var(--gold);

    border-color: var(--gold);

    color: var(--dark);
}


/* =========================================
   HERO — TABLET
========================================= */

@media (max-width: 1000px) {

    .hero {
        height: 620px;

        margin-top: 20px;
    }

    .hero-content {
        padding: 0 55px;
    }

    .hero h1 {
        font-size: 90px;
    }

}


/* =========================================
   HERO — TELEFON
========================================= */

@media (max-width: 700px) {

    .hero {
        width: 92%;

        height: 560px;

        margin: 15px auto 0;
    }


    .hero-slide {
    object-position: 60% center;
}


    .hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(18, 15, 13, 0.86) 0%,
                rgba(18, 15, 13, 0.42) 65%,
                rgba(18, 15, 13, 0.22) 100%
            );
    }


    .hero-content {
        justify-content: flex-end;

        padding: 35px 28px 42px;
    }


    .hero-label {
        margin-bottom: 12px;

        font-size: 9px;
    }


    .hero h1 {
        font-size: 70px;

        line-height: 0.85;
    }


    .hero-content > p {
        margin-top: 18px;

        font-size: 25px;
    }


    .hero-events {
        margin-top: 20px;

        max-width: 270px;

        font-size: 9px;

        line-height: 1.8;
    }


    .hero-button {
        margin-top: 27px;

        padding: 12px 17px;
    }

}




/* =========================================
   INTRO — SOUL
========================================= */

.intro {
    width: 100%;

    min-height: 680px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    background: #211c18;
    color: var(--cream);
}


/* =========================================
   LEVA STRANA
========================================= */

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 100px 8vw;
}


.intro .section-label {
    margin-bottom: 28px;

    color: var(--gold);

    font-size: 19px;
    font-weight: 500;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}


.intro h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(70px, 6.5vw, 105px);
    font-weight: 600;

    line-height: 0.82;
    letter-spacing: -0.045em;
}


.intro h2 em {
    color: #8f4a4a;

    font-weight: 500;
}


.intro-lead {
    max-width: 520px;

    margin-top: 42px;

    font-family: "Cormorant Garamond", serif;

    font-size: 27px;
    font-weight: 500;

    line-height: 1.2;

    color: var(--cream);
}


.intro-text {
    max-width: 470px;

    margin-top: 25px;

    color: rgba(233, 223, 210, 0.65);

    font-size: 14px;
    line-height: 1.9;
}


/* LINK */

.intro-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    width: fit-content;

    margin-top: 35px;
    padding-bottom: 8px;

    border-bottom: 1px solid rgba(233, 223, 210, 0.4);

    color: var(--cream);

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    transition:
        gap 0.25s ease,
        color 0.25s ease;
}


.intro-link span {
    font-size: 17px;
}


.intro-link:hover {
    gap: 23px;

    color: var(--gold);
}




/* =========================================
   DESNA STRANA — SLIKA
========================================= */

.intro-image {
    position: relative;

    width: min(80%, 520px);
    height: min(80%, 600px);

    align-self: center;
    justify-self: center;

    padding: 12px;

    border: 1px solid rgba(233, 223, 210, 0.35);

    background: rgba(233, 223, 210, 0.04);

    box-sizing: border-box;
}


/* SLIKA */

.intro-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}


/* UNUTRAŠNJI OKVIR */

.intro-image::before {
    content: "";

    position: absolute;

    inset: 5px;

    border: 1px solid rgba(233, 223, 210, 0.12);

    pointer-events: none;

    z-index: 2;
}


/* NATPIS */

.intro-image-label {
    position: absolute;

    right: -1px;
    bottom: -30px;

    color: rgba(233, 223, 210, 0.55);

    font-size: 9px;
    letter-spacing: 0.18em;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .intro {
        grid-template-columns: 1fr;
    }

    .intro-content {
        padding: 90px 8vw;
    }

    .intro-image {
        min-height: 550px;
    }

}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 600px) {

    .intro-content {
        padding: 75px 7vw 65px;
    }

    .intro h2 {
        font-size: 62px;
    }

    .intro-lead {
        margin-top: 35px;

        font-size: 25px;
    }

    .intro-text {
        font-size: 13px;
        line-height: 1.8;
    }

    .intro-image {
        min-height: 430px;
    }

}




/* =========================================
   INTRO IMAGE — HOVER ZOOM
========================================= */

.intro-image {
    overflow: hidden;
}

.intro-image img {
    transition: transform 0.8s ease;
}

.intro-image:hover img {
    transform: scale(1.04);
}



/* =========================================
   DEŠAVANJA
========================================= */

.events {
    width: 100%;

    padding: 120px 8vw 110px;

    background: #181411;
    color: var(--cream);
}


/* =========================================
   HEADER
========================================= */

.events-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding-bottom: 55px;

    border-bottom: 1px solid rgba(233, 223, 210, 0.16);
}


.events-header .section-label {
    display: block;

    margin-bottom: 24px;

    color: var(--gold);

    font-size: 19px;
    font-weight: 500;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}


.events-header h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(70px, 7vw, 110px);
    font-weight: 600;

    line-height: 0.78;
    letter-spacing: -0.045em;
}


.events-header h2 em {
    color: #8f4a4a;

    font-weight: 500;
}


.events-header > p {
    max-width: 260px;

    margin-bottom: 5px;

    color: rgba(233, 223, 210, 0.58);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   EVENT GRID
========================================= */

.events-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    padding-top: 35px;
}


/* =========================================
   EVENT CARD
========================================= */

.event-card {
    min-width: 0;
}


/* =========================================
   SLIKA
========================================= */

.event-image {
    position: relative;

    width: 100%;
    height: 390px;

    overflow: hidden;

    background: #211c18;
}


.event-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}


.event-card:hover .event-image img {
    transform: scale(1.05);

    filter: brightness(0.82);
}


/* =========================================
   TIP DOGAĐAJA
========================================= */

.event-type {
    position: absolute;

    top: 20px;
    left: 20px;

    padding: 8px 11px;

    background: rgba(24, 20, 17, 0.82);

    color: var(--gold);

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.16em;

    backdrop-filter: blur(8px);
}


/* =========================================
   INFORMACIJE
========================================= */

.event-info {
    padding: 22px 2px 0;
}


.event-date {
    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.18em;
}


.event-info h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 40px;
    font-weight: 600;

    line-height: 1;

    color: var(--cream);
}


.event-info p {
    margin-top: 10px;

    color: rgba(233, 223, 210, 0.55);

    font-size: 14px;
}


/* =========================================
   FOOTER LINK
========================================= */

.events-footer {
    display: flex;
    justify-content: flex-end;

    padding-top: 55px;
}


.section-link {
    display: inline-flex;
    align-items: center;

    gap: 16px;

    padding-bottom: 8px;

    border-bottom: 1px solid rgba(233, 223, 210, 0.4);

    color: var(--cream);

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    transition:
        gap 0.25s ease,
        color 0.25s ease;
}


.section-link span {
    font-size: 17px;
}


.section-link:hover {
    gap: 24px;

    color: var(--gold);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .events {
        padding: 90px 7vw;
    }


    .events-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 30px;
    }


    .events-grid {
        grid-template-columns: 1fr 1fr;
    }


    .event-image {
        height: 330px;
    }

}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 600px) {

    .events {
        padding: 75px 7vw 80px;
    }


    .events-header {
        padding-bottom: 40px;
    }


    .events-header h2 {
        font-size: 62px;
    }


    .events-header > p {
        max-width: 240px;

        font-size: 12px;
    }


    .events-grid {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 30px;
    }


    .event-image {
        height: 390px;
    }


    .event-info h3 {
        font-size: 28px;
    }


    .events-footer {
        justify-content: flex-start;

        padding-top: 45px;
    }

}







/* =========================================
   EVENT CARD — OKVIR
========================================= */

.event-card {
    position: relative;

    min-width: 0;

    padding: 20px;

    border: 1px solid rgba(233, 223, 210, 0.10);

    background: rgba(233, 223, 210, 0.025);

    transition:
        border-color 0.35s ease,
        background 0.35s ease;

    
}


.event-card:hover {
    border-color: rgba(185, 154, 104, 0.35);

    background: rgba(233, 223, 210, 0.045);
}


/* =========================================
   DEKORATIVNA LINIJA
========================================= */

.event-card::after {
    content: "";

    position: absolute;

    bottom: 0;
    left: 10px;

    width: 35px;
    height: 1px;

    background: var(--gold);

    opacity: 0.6;

    transition: width 0.4s ease;
}


.event-card:hover::after {
    width: calc(100% - 20px);
}






.events-header {
    position: relative;
}

.events-decoration {
    position: absolute;

    top: -35px;
    right: 140px;

    width: 200px;

    pointer-events: none;

    opacity: 0.70;

    z-index: 0;
    
}

.events-decoration img {
    width: 100%;
    height: auto;

    display: block;
}

.events-header > div:first-child {
    position: relative;
    z-index: 1;
}





/* =========================================
   MENI
========================================= */

.menu {
    width: 100%;

    padding: 120px 8vw 110px;

    background: #211c18;
    color: var(--cream);
}


/* =========================================
   HEADER
========================================= */

.menu-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding-bottom: 55px;

    border-bottom: 1px solid rgba(233, 223, 210, 0.16);
}


.menu-title .section-label {
    display: block;

    margin-bottom: 24px;

    color: var(--gold);

    font-size: 19px;
    font-weight: 500;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}


.menu-title h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(70px, 7vw, 110px);
    font-weight: 600;

    line-height: 0.78;
    letter-spacing: -0.045em;
}


.menu-title h2 em {
    color: #8f4a4a;

    font-weight: 500;
}


.menu-header > p {
    max-width: 360px;

    margin: 0 0 8px;

    color: var(--cream);

    font-family: "Cormorant Garamond", serif;

    font-size: 27px;
    font-weight: 500;

    line-height: 1.15;

    text-align: right;
}


/* =========================================
   MENU GRID
========================================= */

.menu-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    padding-top: 40px;
}


/* =========================================
   MENU CARD
========================================= */

.menu-card {
    position: relative;

    display: block;

    height: 390px;

    overflow: hidden;

    background: #181411;

    color: var(--cream);

    text-decoration: none;
}


/* =========================================
   SLIKA
========================================= */

.menu-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.6s ease;
}


.menu-card:hover img {
    transform: scale(1.07);

    filter: brightness(0.78);
}


/* =========================================
   PRELAZ PREKO SLIKE
========================================= */

.menu-card-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(18, 15, 13, 0.05) 20%,
            rgba(18, 15, 13, 0.15) 45%,
            rgba(18, 15, 13, 0.88) 100%
        );

    transition:
        background 0.5s ease;
}


.menu-card:hover .menu-card-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(18, 15, 13, 0.08) 15%,
            rgba(18, 15, 13, 0.25) 45%,
            rgba(18, 15, 13, 0.94) 100%
        );
}


/* =========================================
   SADRŽAJ
========================================= */

.menu-card-content {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 24px;

    z-index: 2;
}


.menu-number {
    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;

    transition:
        transform 0.35s ease;
}


.menu-card h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 42px;
    font-weight: 600;

    line-height: 0.9;

    color: var(--cream);

    transition:
        transform 0.35s ease;
}


.menu-arrow {
    position: absolute;

    right: 0;
    bottom: 2px;

    font-family: "Cormorant Garamond", serif;

    font-size: 27px;

    color: rgba(233, 223, 210, 0.75);

    transition:
        transform 0.35s ease,
        color 0.35s ease;
}


.menu-card:hover .menu-number {
    transform: translateY(-3px);
}


.menu-card:hover h3 {
    transform: translateY(-3px);
}


.menu-card:hover .menu-arrow {
    transform: translateX(7px);

    color: var(--gold);
}


/* =========================================
   FOOTER
========================================= */

.menu-footer {
    display: flex;
    justify-content: flex-end;

    padding-top: 45px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .menu-grid {
        grid-template-columns: 1fr 1fr;

        gap: 18px;
    }


    .menu-card {
        height: 350px;
    }

}


/* =========================================
   MANJI TABLET
========================================= */

@media (max-width: 900px) {

    .menu {
        padding: 90px 7vw;
    }


    .menu-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 30px;
    }


    .menu-header > p {
        max-width: 300px;

        text-align: left;
    }


    .menu-grid {
        padding-top: 35px;
    }

}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 600px) {

    .menu {
        padding: 75px 7vw 80px;
    }


    .menu-header {
        padding-bottom: 45px;
    }


    .menu-title .section-label {
        margin-bottom: 18px;

        font-size: 15px;
    }


    .menu-title h2 {
        font-size: 62px;
    }


    .menu-header > p {
        max-width: 250px;

        font-size: 12px;

        line-height: 1.7;
    }


    .menu-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;

        padding-top: 30px;
    }


    .menu-card {
        height: 270px;
    }


    .menu-card-content {
        left: 17px;
        right: 17px;
        bottom: 17px;
    }


    .menu-number {
        margin-bottom: 5px;

        font-size: 15px;
    }


    .menu-card h3 {
        font-size: 29px;
    }


    .menu-arrow {
        font-size: 21px;
    }


    .menu-footer {
        justify-content: flex-start;

        padding-top: 40px;
    }

}





/* =========================================
   GALERIJA
========================================= */

.gallery {
    width: 100%;

    padding: 120px 8vw 110px;

    background: #181411;
    color: var(--cream);
}


/* =========================================
   HEADER
========================================= */

.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding-bottom: 55px;

    border-bottom: 1px solid rgba(233, 223, 210, 0.16);
}


.gallery-title .section-label {
    display: block;

    margin-bottom: 24px;

    color: var(--gold);

    font-size: 19px;
    font-weight: 500;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}


.gallery-title h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(70px, 7vw, 110px);
    font-weight: 600;

    line-height: 0.78;
    letter-spacing: -0.045em;
}


.gallery-title h2 em {
    color: #8f4a4a;

    font-weight: 500;
}


.gallery-header > p {
    max-width: 330px;

    margin: 0 0 8px;

    color: var(--cream);

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;
    font-weight: 500;

    line-height: 1.15;

    text-align: right;
}


/* =========================================
   GALERIJA GRID
========================================= */

.gallery-grid {
    display: grid;

    grid-template-columns: 1.45fr 0.8fr 0.8fr;

    grid-template-rows: 250px 250px 220px;

    gap: 14px;

    padding-top: 40px;
}


/* =========================================
   GALERIJSKA SLIKA
========================================= */

.gallery-item {
    position: relative;

    display: block;

    overflow: hidden;

    background: #211c18;

    text-decoration: none;
}


.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.9s ease,
        filter 0.6s ease;
}


.gallery-item:hover img {
    transform: scale(1.06);

    filter: brightness(0.72);
}


/* =========================================
   RASPORED
========================================= */

/* Velika slika */

.gallery-large {
    grid-column: 1;
    grid-row: 1 / 3;
}


/* Gornje desne */

.gallery-small:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}


.gallery-small:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}


/* Donji red */

.gallery-bottom:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}


.gallery-bottom:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}


/* Šesta slika zauzima donji red */

.gallery-bottom:nth-child(6) {
    grid-column: 1 / 4;
    grid-row: 3;
}

.gallery-zoom img {
    transform: scale(1.12);
}

.gallery-zoom:hover img {
    transform: scale(1.18);
}


.gallery-move-down img {
    object-position: center 75%;
}

.gallery-move-down-mnogo img {
    object-position: center 95%;
}


.gallery-move-up img {
    object-position: center 30%;
}


/* =========================================
   PRELAZ PREKO SLIKA
========================================= */

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 22px;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(18, 15, 13, 0.72) 100%
        );

    opacity: 0;

    transition:
        opacity 0.4s ease;
}


.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


.gallery-overlay span {
    color: var(--cream);

    font-family: "Cormorant Garamond", serif;

    font-size: 21px;
}


/* =========================================
   DONJI LINK
========================================= */

.gallery-footer {
    display: flex;

    justify-content: flex-end;

    padding-top: 45px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .gallery {
        padding: 90px 7vw;
    }


    .gallery-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 30px;
    }


    .gallery-header > p {
        max-width: 320px;

        text-align: left;
    }


    .gallery-grid {
        grid-template-columns: 1.2fr 1fr;

        grid-template-rows:
            300px
            220px
            220px;

        gap: 12px;
    }


    .gallery-large {
        grid-column: 1;
        grid-row: 1 / 3;
    }


    .gallery-small:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }


    .gallery-small:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }


    .gallery-bottom:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }


    .gallery-bottom:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }


    .gallery-bottom:nth-child(6) {
        display: none;
    }

}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 600px) {

    .gallery {
        padding: 75px 7vw 80px;
    }


    .gallery-header {
        padding-bottom: 45px;
    }


    .gallery-title .section-label {
        margin-bottom: 18px;

        font-size: 15px;
    }


    .gallery-title h2 {
        font-size: 62px;
    }


    .gallery-header > p {
        max-width: 260px;

        font-size: 21px;

        line-height: 1.2;
    }


    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            280px
            180px
            180px;

        gap: 9px;

        padding-top: 30px;
    }


    .gallery-large {
        grid-column: 1 / 3;
        grid-row: 1;
    }


    .gallery-small:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }


    .gallery-small:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }


    .gallery-bottom:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }


    .gallery-bottom:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }


    .gallery-bottom:nth-child(6) {
        display: none;
    }


    .gallery-overlay {
        padding: 14px;

        opacity: 1;

        background:
            linear-gradient(
                180deg,
                transparent 50%,
                rgba(18, 15, 13, 0.68) 100%
            );
    }


    .gallery-overlay span {
        font-size: 17px;
    }


    .gallery-footer {
        justify-content: flex-start;

        padding-top: 40px;
    }

}




/* =========================================
   KONTAKT
========================================= */

.contact {
    width: 100%;

    display: grid;
    grid-template-columns: 0.85fr 1fr;

    gap: 8vw;

    padding: 120px 8vw 110px;

    background: #211c18;
    color: var(--cream);
}


/* =========================================
   LEVA STRANA
========================================= */

.contact-content {
    display: flex;
    flex-direction: column;

    max-width: 560px;
}


/* =========================================
   HEADER
========================================= */

.contact-header {
    padding-bottom: 45px;

    border-bottom: 1px solid rgba(233, 223, 210, 0.16);
}


.contact-header .section-label {
    display: block;

    margin-bottom: 22px;

    color: var(--gold);

    font-size: 18px;
    font-weight: 500;

    letter-spacing: 0.22em;
    text-transform: uppercase;
}


.contact-header h2 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(70px, 6.5vw, 105px);
    font-weight: 600;

    line-height: 0.78;
    letter-spacing: -0.045em;
}


.contact-header h2 em {
    color: #8f4a4a;

    font-weight: 500;
}


/* =========================================
   KONTAKT INFORMACIJE
========================================= */

.contact-block {
    padding: 28px 0;

    border-bottom: 1px solid rgba(233, 223, 210, 0.12);
}


.contact-label {
    display: block;

    margin-bottom: 11px;

    color: var(--gold);

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.18em;
}


.contact-block h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;
    font-weight: 500;

    line-height: 1.1;

    color: var(--cream);
}


.contact-block > a:not(.contact-social) {
    color: var(--cream);

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;
    font-weight: 500;

    transition: color 0.25s ease;
}


.contact-block > a:not(.contact-social):hover {
    color: var(--gold);
}


.contact-block p {
    margin: 6px 0 0;

    color: rgba(233, 223, 210, 0.52);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   INSTAGRAM
========================================= */

.contact-social {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--cream);

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;
    font-weight: 500;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}


.contact-social span {
    color: var(--gold);

    font-family: Arial, sans-serif;

    font-size: 15px;
}


.contact-social:hover {
    gap: 14px;

    color: var(--gold);
}


/* =========================================
   RADNO VREME
========================================= */

.contact-hours {
    padding-top: 32px;
}


.contact-hours .contact-label {
    margin-bottom: 15px;
}


/* RED */

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 8px 0;

    border-bottom: 1px solid rgba(233, 223, 210, 0.07);

    color: rgba(233, 223, 210, 0.68);

    font-size: 13px;
}


.hours-row:first-of-type {
    border-top: 1px solid rgba(233, 223, 210, 0.07);
}


.hours-row strong {
    color: var(--cream);

    font-weight: 500;

    letter-spacing: 0.04em;
}


/* =========================================
   SLIKA
========================================= */

.contact-photo {
    position: relative;

    align-self: center;

    width: 100%;
    height: 760px;

    overflow: hidden;

    border: 1px solid rgba(233, 223, 210, 0.16);

    background: #181411;
}

.contact-photo::before {
    content: "";

    position: absolute;
    inset: 10px;

    border: 1px solid rgba(233, 223, 210, 0.10);

    z-index: 2;

    pointer-events: none;
}


.contact-photo::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(18, 15, 13, 0.52) 0%,
            transparent 50%
        );

    pointer-events: none;

    z-index: 1;
}


.contact-photo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 1s ease;
}


.contact-photo:hover img {
    transform: scale(1.035);
}


/* =========================================
   DONJI LINKOVI
========================================= */

.contact-footer {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-top: 32px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .contact {
        grid-template-columns: 1fr;

        gap: 60px;

        padding: 90px 7vw;
    }


    .contact-content {
        max-width: 700px;
    }


    .contact-photo {
        height: 500px;
    }

}


/* =========================================
   TELEFON
========================================= */

@media (max-width: 600px) {

    .contact {
        gap: 45px;

        padding: 75px 7vw 80px;
    }


    .contact-header {
        padding-bottom: 35px;
    }


    .contact-header .section-label {
        margin-bottom: 18px;

        font-size: 15px;
    }


    .contact-header h2 {
        font-size: 62px;

        line-height: 0.82;
    }


    .contact-block {
        padding: 24px 0;
    }


    .contact-block h3,
    .contact-block > a:not(.contact-social),
    .contact-social {
        font-size: 25px;
    }


    .contact-hours {
        padding-top: 28px;
    }


    .hours-row {
        padding: 9px 0;

        font-size: 11px;
    }


    .contact-photo {
        height: 430px;
    }


    .contact-photo::before {
        inset: 8px;
    }


    .contact-footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 22px;

        margin-top: 25px;
    }

}