* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #172315;
    color: white;
    
}

.hero {
    min-height: 100vh;
    background:
        linear-gradient(100deg, rgba(16, 29, 16, 0.97) 0%, rgba(16, 29, 16, 0.95) 48%, rgba(0,0,0,0.15) 48%),
        url("images/slika3.png");
    background-size: cover;
    background-position: center right;
    position: relative;
    overflow: hidden;
    display: flex;
flex-direction: column;
justify-content: flex-start;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    background: #315f3e;
    clip-path: polygon(
        0 40%, 5% 60%, 10% 40%, 15% 60%, 20% 40%,
        25% 60%, 30% 40%, 35% 60%, 40% 40%, 45% 60%,
        50% 40%, 55% 60%, 60% 40%, 65% 60%, 70% 40%,
        75% 60%, 80% 40%, 85% 60%, 90% 40%, 95% 60%,
        100% 40%, 100% 100%, 0 100%
    );
    z-index: 3;
}

.navbar {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 90px;
    position: relative;
    z-index: 5;
}

.logo img {
    width: 95px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 55px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    padding-bottom: 22px;
    transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: #9fbd7b;
}

.navbar a.active {
    border-bottom: 2px solid #9fbd7b;
}

.hero-content {
    position: relative;
    z-index: 4;
    margin-left: 210px;
    margin-top: 80px;
}

.small-title {
    color: #9fbd7b;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 70px;
    line-height: 1.05;
    font-weight: 1000;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 rgba(0,0,0,0.35);
}

.hero-content h1 span {
    color: #9fbd7b;
}

.hero-text {
    margin-top: 30px;
    font-size: 19px;
    line-height: 1.5;
    color: #e6e6e6;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    background: #6f875e;
    color: white;
    padding: 17px 32px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    background: #8fab70;
}

.btn.light {
    background: #eee5c6;
    color: #365033;
}

.about {
    min-height: 380px;

    background:
    url("https://www.transparenttextures.com/patterns/asfalt-dark.png"),
     #315f3e;
    background-blend-mode: soft-light;

    display: flex;
    justify-content: center;
    gap: 130px;
    padding: 70px 80px 90px;

    position: relative;
    overflow: hidden;
}
/* GORNJA BIJELA IVICA */
.about::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 18px;
    background: transparent;
    border-top: 3px solid rgba(255,255,255,0.75);
    clip-path: polygon(
        0 40%, 5% 60%, 10% 40%, 15% 60%, 20% 40%,
        25% 60%, 30% 40%, 35% 60%, 40% 40%, 45% 60%,
        50% 40%, 55% 60%, 60% 40%, 65% 60%, 70% 40%,
        75% 60%, 80% 40%, 85% 60%, 90% 40%, 95% 60%,
        100% 40%, 100% 100%, 0 100%
    );
    z-index: 2;
}

.about::after {
    display: none;
}

.stats {
    width: 390px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stat-box {
    border: 1px solid rgba(255,255,255,0.25);
    padding: 25px;
    text-align: center;
    background: rgba(255,255,255,0.03);
}

.stat-box h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 15px;
}

.about-text {
    max-width: 650px;
}

.about-text h2 {
    color: #b8d58b;
    font-size: 66px;
    font-weight: 1000;
    letter-spacing: 3px;
    text-shadow: 4px 4px 0 rgba(0,0,0,0.22);
}

.line {
    width: 170px;
    height: 3px;
    background: #b8d58b;
    margin: 12px 0 28px;
    position: relative;
}

.line::after {
    content: "";
    position: absolute;
    right: -15px;
    top: -5px;
    width: 12px;
    height: 12px;
    background: #b8d58b;
    border-radius: 50%;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 6px;
}

/* Telefon */
@media (max-width: 768px) {
    .hero {
        min-height: 750px;
        background:
            linear-gradient(rgba(16, 29, 16, 0.9), rgba(16, 29, 16, 0.9)),
            url("images/slika3.png");
        background-size: cover;
        background-position: center;
    }

    .navbar {
        padding: 20px;
        height: auto;
        flex-direction: column;
        gap: 20px;
    }

    .navbar ul {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar a {
        font-size: 14px;
    }

    .hero-content {
        margin: 60px 25px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-text {
        font-size: 16px;
    }

    .about {
        flex-direction: column;
        gap: 45px;
        padding: 60px 25px 80px;
    }

    .stats {
        width: 100%;
    }

    .about-text h2 {
        font-size: 46px;
    }
}

.menu-section {
    background:
    url("https://www.transparenttextures.com/patterns/asfalt-dark.png"),
    #041d14;

    background-size: 180px;

    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.menu-title {
    text-align: center;
    margin-bottom: 70px;
}

.menu-title p {
    color: #44c46d;
    letter-spacing: 5px;
    font-size: 22px;
    margin-bottom: 18px;
}

.title-line {
    width: 170px;
    height: 2px;
    background: #44c46d;
    margin: auto;
    position: relative;
}

.title-line::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #44c46d;
    border-radius: 50%;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-wrapper {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
}

.menu-card {
    width: 520px;
    height: 640px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    background: #111;
    border: 2px solid #9fbd7b;
    border-radius: 24px;
    overflow: hidden;

    box-shadow:
    0 20px 45px rgba(0,0,0,0.35),
    0 0 20px rgba(159,189,123,0.12);
}

.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* ZELENI OVERLAY */
.overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to top,
    rgba(27, 108, 56, 0.75),
    rgba(0,0,0,0.2));
}



.menu-content {
    position: absolute;
    left: 45px;
    bottom: 55px;
    z-index: 5;
}

.menu-content h2 {
    font-size: 72px;
    font-weight: 1000;
    line-height: 1;
    margin-bottom: 18px;
}

.menu-content p {
    font-size: 20px;
}

.arrow {
    position: absolute;
    right: 45px;
    bottom: 65px;
    font-size: 60px;
    z-index: 5;
    transition: 0.4s;
}

.menu-card:hover img {
    transform: scale(1.08);
}

.menu-card:hover .arrow {
    transform: translate(8px, -8px);
}

/* TELEFON */
@media(max-width: 768px) {

    .menu-section {
        padding: 100px 20px;
    }

    .menu-card {
        width: 100%;
        height: 500px;
        padding: 14px;
        border-radius: 18px;
        
    }

    .menu-content h2 {
        font-size: 48px;
    }

    .arrow {
        display: none;
    }
    
}
.location-section {
    background: #06110b;
    padding: 100px 90px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.location-info {
    width: 470px;
}

.section-small-title {
    color: #44c46d;
    letter-spacing: 4px;
    font-size: 16px;
    margin-bottom: 15px;
}

.location-info h2 {
    font-size: 55px;
    line-height: 1;
    color: white;
    margin-bottom: 25px;
    text-shadow: 4px 4px 0 rgba(0,0,0,0.35);
}

.location-text {
    color: #d7d7d7;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(68,196,109,0.25);
    padding: 18px 20px;
    margin-bottom: 16px;
    border-radius: 16px;
    transition: 0.3s;
}

.contact-box:hover {
    transform: translateX(8px);
    border-color: #44c46d;
    background: rgba(68,196,109,0.10);
}

.contact-box span {
    width: 48px;
    height: 48px;
    background: #44c46d;
    color: #06110b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-box h4 {
    color: #44c46d;
    margin-bottom: 5px;
    font-size: 17px;
}

.contact-box p {
    color: white;
    font-size: 16px;
}

.map-card {
    width: 650px;
    height: 470px;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 2px solid rgba(68,196,109,0.45);
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.map-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(90%);
}


/* TELEFON */
@media(max-width: 900px) {
    .location-section {
        flex-direction: column;
        padding: 80px 20px;
    }

    .location-info {
        width: 100%;
    }

    .location-info h2 {
        font-size: 40px;
    }

    .map-card {
        width: 100%;
        height: 380px;
    }
}
/* Footer*/

.footer {
    background:
    url("https://www.transparenttextures.com/patterns/asfalt-dark.png"),
    #1f5b35;
    position: relative;
    padding: 120px 80px 40px;
    color: white;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #06110b;
    clip-path: polygon(
        0 20%, 4% 35%, 8% 25%, 12% 40%, 16% 30%,
        20% 45%, 24% 28%, 28% 42%, 32% 30%,
        36% 48%, 40% 35%, 44% 50%, 48% 32%,
        52% 45%, 56% 30%, 60% 48%, 64% 34%,
        68% 52%, 72% 36%, 76% 55%, 80% 38%,
        84% 58%, 88% 40%, 92% 55%, 96% 35%,
        100% 50%, 100% 0, 0 0
    );
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 110px;
}

.footer-menu {
    display: flex;
    gap: 24px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-menu a:hover {
    color: #44c46d;
}

.footer-center {
    text-align: center;
}

.footer-center img {
    width: 120px;
    margin-bottom: 28px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 13px;
}

.socials a {
    width: 38px;
    height: 38px;
    background: #06110b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.socials a:hover {
    background: #44c46d;
    color: #06110b;
    transform: translateY(-5px);
}

.footer-info {
    margin-top: 55px;
    display: flex;
    justify-content: center;
    gap: 220px;
    font-size: 14px;
}

.copyright {
    text-align: center;
    margin-top: 55px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

/* TELEFON */
@media(max-width: 768px) {
    .footer {
        padding: 100px 25px 35px;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ================= ANIMACIJA ================= */

.reveal{
    opacity:0;
    transform:translateY(90px);
    transition:1s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ====================================================MENU STRANICA==================================== */
/* header */
.menu-hero{
    width: 100%;
    min-height: 100vh;
    background:
    linear-gradient(rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)),
    url("images/hrana1.png") center/cover no-repeat;

    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-bottom: none;
    box-shadow: none;
}
.menu-hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: -2px;

    width: 52%;
    height: calc(100% + 2px);

    background: rgba(20, 40, 27, 0.62);

    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);

    z-index: 1;
}
.menu-hero::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 80px;
    border: none;
    box-shadow: none;

    background:
    url("https://www.transparenttextures.com/patterns/asfalt-dark.png"),
    #06281c;

    background-size: 180px;

    clip-path: polygon(
        0 40%, 5% 60%, 10% 40%, 15% 60%, 20% 40%,
        25% 60%, 30% 40%, 35% 60%, 40% 40%, 45% 60%,
        50% 40%, 55% 60%, 60% 40%, 65% 60%, 70% 40%,
        75% 60%, 80% 40%, 85% 60%, 90% 40%, 95% 60%,
        100% 40%, 100% 100%, 0 100%
    );

    z-index: 5;
}
.menu-drinks-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    background: #6f875e;
    color: white;
    padding: 17px 32px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.menu-drinks-btn:hover {
    transform: translateY(-3px);
    background: #8fab70;
}

.btn.light {
    background: #eee5c6;
    color: #365033;
}
.menu-section::before{
    display: none;
}
@media(max-width:768px){

    .menu-hero::before{
        width: 100%;
        clip-path: none;
        background: rgba(4, 29, 20, 0.78);
    }

}

/* sekcija menija */
.menu-section{
    background:
    url("https://www.transparenttextures.com/patterns/asfalt-dark.png"),
    #06281c;

    background-size: 180px;
    padding: 40px 8% 90px;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-small-title {
    color: #c89b5c;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 10px;
}

.menu-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff3d8;
}

.section-text {
    text-align: center;
    color: #ddd;
    margin-bottom: 50px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 35px;
    align-items: start;
}

.menu-category {
    background: rgba(255, 243, 216, 0.96);
    color: #2b1b12;
    padding: 28px;
    border-radius: 18px;
    border-top: 6px solid #0f6b3d;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.menu-category h3 {
    font-size: 24px;
    color: #0f6b3d;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 2px solid #c89b5c;
    padding-bottom: 10px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(43, 27, 18, 0.35);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item h4 {
    font-size: 18px;
    color: #3b2416;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.menu-item p {
    font-size: 14px;
    color: #6b4a35;
    line-height: 1.5;
}

.menu-item span {
    white-space: nowrap;
    color: #b1241d;
    font-size: 18px;
    font-weight: 800;
}   

.menu-category-dorucak-sendvici {
    margin-top: -210px;
}
.menu-category-deserti {
   margin-top: -200px;
}
.menu-category-prilozi {
    margin-top: -200px;
}
.menu-category-prilozi .menu-item {
    padding: 8px 0;
}

.menu-category-prilozi h4 {
    font-size: 0.95rem;
}
.menu-category-prilozi {
    max-width: 600px;
}
/* telefon */
@media (max-width: 768px) {

    .menu-section {
        padding: 70px 5%;
    }

    .menu-section h2 {
        font-size: 34px;
    }

    .menu-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .menu-category,
    .menu-category-pizza,
    .menu-category-dorucak-sendvici,
    .menu-category-deserti,
    .menu-category-posni
    .menu-category-prilozi {
        width: 100% !important;
        max-width: 100% !important;
        grid-column: auto !important;
        margin: 0 !important;
        padding: 22px;
    }

    .menu-item {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .menu-item h4 {
        font-size: 17px;
    }

    .menu-item p {
        font-size: 13px;
    }

    .menu-item span {
        font-size: 17px;
    }

    .menu-highlight-row {
        grid-template-columns: 1fr;
    }

    .menu-photo-card {
        min-height: 200px;
    }
    .menu-category-pizza,
.menu-category-dorucak-sendvici,
.menu-category-deserti {
    margin-top: 0 !important;
    margin: 0 !important;
}
}
/* dodatni stil za novi jelovnik */
.menu-category {
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: #0f6b3d;
}

.menu-category:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
}

.menu-category-posni {
    border-top-color: #9c1f1f;
}

.menu-category-posni::before {
    background: #9c1f1f;
}

.menu-category-posni h3 {
    color: #9c1f1f;
}

.menu-category-pizza h3,
.menu-category-specijaliteti h3 {
    color: #0f6b3d;
}

.menu-highlight-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 18px 0;
}

.menu-photo-card {
    position: relative;
    min-height: 160px;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
}

.menu-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.75;
}

.menu-photo-card div {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px #000;
    padding: 15px;
}

.menu-photo-card strong {
    font-size: 22px;
}

.menu-photo-card span {
    color: #fff;
    font-size: 22px;
}

.menu-red-card {
    background: #9c1f1f;
    color: #fff;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.menu-red-card h4 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.menu-red-card p {
    font-size: 28px;
    font-weight: 700;
    margin: 18px 0 6px;
    color: #fff;
}

.menu-red-card small {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    color: #ffe6e6;
}

/* da posni meni ide preko cijele širine */
.menu-category-posni {
    grid-column: 1 / -1;
}

/* telefon */
@media (max-width: 768px) {
    .menu-category-posni {
        grid-column: auto;
    }

    .menu-highlight-row {
        grid-template-columns: 1fr;
    }

    .menu-photo-card {
        min-height: 190px;
    }

    .menu-item h4 {
        font-size: 16px;
    }

    .menu-item p {
        font-size: 13px;
    }
    
}

/* footer */
.menu-footer{
    position: relative;
    overflow: hidden;
}

.menu-footer::before{
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 70px;

    background:
        url("https://www.transparenttextures.com/patterns/asfalt-dark.png"),
        #06281c;;

    background-size: 180px;

    clip-path: polygon(
        0 0, 100% 0,
        100% 40%, 95% 60%, 90% 40%, 85% 60%, 80% 40%,
        75% 60%, 70% 40%, 65% 60%, 60% 40%, 55% 60%,
        50% 40%, 45% 60%, 40% 40%, 35% 60%, 30% 40%,
        25% 60%, 20% 40%, 15% 60%, 10% 40%, 5% 60%, 0 40%
    );

    z-index: 1;
}
.menu-footer *{
    position: relative;
    z-index: 2;
}

/* ====================================================Kontakt STRANICA==================================== */
/* header */
.kontakt-hero{
    background:
        linear-gradient(rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)),
        url("images/o-nama.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* kontakt sekcija */
.kontakt-section{
    min-height: 100vh;
    padding: 120px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

    background: #06281c;
    color: white;
}

.kontakt-left{
    flex: 1;
}

.outline-title{
    font-size: 48px;
    font-weight: 900;

    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.8);

    margin-bottom: 10px;
}

.kontakt-left h2{
    font-size: 90px;
    line-height: 1;
}

.kontakt-line{
    width: 170px;
    height: 2px;
    background: #00d26a;

    margin: 30px 0;
}

.kontakt-desc{
    max-width: 500px;

    color: rgba(255,255,255,0.75);

    line-height: 1.8;
    margin-bottom: 60px;
}

.kontakt-info{
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-box{
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon{
    width: 75px;
    height: 75px;
    min-width: 75px;

    border: 1px solid #00d26a;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    color: white;
}

.info-box h4{
    margin-bottom: 8px;
    font-size: 20px;
}

.info-box p{
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}



/* FORMA */

.kontakt-page-forma{
    flex: 1;

    position: relative;

    padding: 70px 60px;

    background: linear-gradient(135deg, #006b35, #004d27);

    clip-path: polygon(
        0% 6%, 2% 4%, 4% 7%, 6% 3%, 8% 6%, 10% 2%,
        12% 5%, 14% 3%, 16% 7%, 18% 4%, 20% 6%, 22% 2%,
        24% 5%, 26% 3%, 28% 7%, 30% 4%, 32% 6%, 34% 2%,
        36% 5%, 38% 3%, 40% 7%, 42% 4%, 44% 6%, 46% 2%,
        48% 5%, 50% 3%, 52% 7%, 54% 4%, 56% 6%, 58% 2%,
        60% 5%, 62% 3%, 64% 7%, 66% 4%, 68% 6%, 70% 2%,
        72% 5%, 74% 3%, 76% 7%, 78% 4%, 80% 6%, 82% 2%,
        84% 5%, 86% 3%, 88% 7%, 90% 4%, 92% 6%, 94% 2%,
        96% 5%, 98% 3%, 100% 6%,

        98% 10%, 100% 14%, 97% 18%, 99% 22%, 96% 26%,
        100% 30%, 97% 34%, 99% 38%, 96% 42%, 100% 46%,
        97% 50%, 99% 54%, 96% 58%, 100% 62%, 97% 66%,
        99% 70%, 96% 74%, 100% 78%, 97% 82%, 99% 86%,
        96% 90%, 100% 94%,

        98% 97%, 94% 95%, 90% 99%, 86% 96%, 82% 100%,
        78% 95%, 74% 98%, 70% 94%, 66% 99%, 62% 95%,
        58% 100%, 54% 96%, 50% 99%, 46% 95%, 42% 98%,
        38% 94%, 34% 100%, 30% 96%, 26% 99%, 22% 95%,
        18% 98%, 14% 94%, 10% 100%, 6% 96%, 2% 99%,

        0% 94%, 3% 90%, 1% 86%, 4% 82%, 0% 78%,
        3% 74%, 1% 70%, 4% 66%, 0% 62%, 3% 58%,
        1% 54%, 4% 50%, 0% 46%, 3% 42%, 1% 38%,
        4% 34%, 0% 30%, 3% 26%, 1% 22%, 4% 18%,
        0% 14%, 2% 10%
    );

    box-shadow:
        0 0 40px rgba(0,0,0,0.35),
        inset 0 0 30px rgba(255,255,255,0.03);
}

.kontakt-page-forma h3{
    font-size: 42px;
    margin-bottom: 35px;
}

.form-row{
    display: flex;
    gap: 20px;
}

.kontakt-page-forma input,
.kontakt-page-forma textarea{
    width: 100%;

    padding: 18px 22px;
    margin-bottom: 20px;

    border: none;
    outline: none;

    border-radius: 12px;

    background: rgba(255,255,255,0.08);

    color: white;
}

.kontakt-page-forma input::placeholder,
.kontakt-page-forma textarea::placeholder{
    color: rgba(255,255,255,0.65);
}

.kontakt-page-forma textarea{
    height: 170px;
    resize: none;
}

.kontakt-page-forma button{
    width: 100%;

    padding: 18px;

    border: none;
    border-radius: 12px;

    background: white;
    color: black;

    font-weight: 800;
    cursor: pointer;

    transition: 0.3s;
}

.kontakt-page-forma button:hover{
    transform: translateY(-3px);
}

.forma-line{
    position: absolute;

    height: 2px;

    background: rgba(255,255,255,0.4);

    border-radius: 50px;
}

.top-line{
    top: 35px;
    right: 60px;

    width: 120px;

    transform: rotate(5deg);
}

.bottom-line{
    bottom: 35px;
    left: 60px;

    width: 160px;

    transform: rotate(-4deg);
}



/* TELEFON */

@media(max-width:768px){

    .kontakt-section{
        flex-direction: column;

        text-align: center;

        padding: 80px 25px;
    }

    .outline-title{
        font-size: 36px;
    }

    .kontakt-left h2{
        font-size: 58px;
    }

    .kontakt-line{
        margin: 20px auto 30px;
    }

    .kontakt-desc{
        margin: 0 auto 50px;
    }

   .kontakt-info{
    flex-direction: column;
}

    .info-box{
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .info-box div{
    text-align: center;
}
    .kontakt-page-forma{
        width: 100%;

        padding: 55px 25px;
    }

    .kontakt-page-forma h3{
        font-size: 30px;
    }

    .form-row{
        flex-direction: column;
        gap: 0;
    }
}

/* ====================================================Galerja STRANICA==================================== */

/* header */
.galerija-hero{
    background:
        linear-gradient(rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)),
        url("images/galerija.jpg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* galerija sekcija */
.gallery-section{
    padding: 100px 8%;
    background: #06281c;
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.gallery-grid img{
    width: 100%;
    height: 260px;

    object-fit: cover;

    border-radius: 18px;

    transition: 0.4s ease;

    cursor: pointer;
}

.gallery-grid img:hover{
    transform: scale(1.03);
    opacity: 0.9;
}


/* TABLET */

@media(max-width: 992px){

    .gallery-grid{
        grid-template-columns: repeat(3, 1fr);
    }

}


/* TELEFON */

@media(max-width: 768px){

    .gallery-section{
        padding: 70px 20px;
    }

    .gallery-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-grid img{
        height: 180px;
        border-radius: 14px;
    }

}
/* otvaranje slike */
.lightbox{
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.92);

    display: none;

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.lightbox.active{
    display: flex;
}

.lightbox-img{
    max-width: 85%;
    max-height: 85%;

    border-radius: 20px;
}

.close-btn,
.prev,
.next{
    position: absolute;

    color: white;

    font-size: 45px;

    cursor: pointer;

    user-select: none;
}

.close-btn{
    top: 30px;
    right: 40px;
}

.prev{
    left: 40px;
}

.next{
    right: 40px;
}

@media(max-width:768px){

    .lightbox-img{
        max-width: 92%;
    }

    .prev,
    .next{
        font-size: 35px;
    }

}

/* ====================================================POSAO STRANICA==================================== */
/* header */
.career-hero{
    min-height: 100vh;

    background:
        linear-gradient(90deg,
        rgba(3,31,19,0.96) 0%,
        rgba(3,31,19,0.82) 45%,
        rgba(3,31,19,0.35) 100%),
        url("images/posao-header.jpg");

    background-size: cover;
    background-position: center;

    color: white;

    position: relative;
}

.career-topbar{
    position: relative;

    width: 90%;
    margin: auto;

    padding: 35px 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.back-home{
    position: absolute;
    left: 0;

    color: white;
    text-decoration: none;

    font-weight: 600;

    padding: 12px 24px;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;

    background: rgba(255,255,255,0.05);

    backdrop-filter: blur(8px);

    transition: 0.3s;
}

.back-home:hover{
    background: #00d26a;
    color: #031f13;

    border-color: #00d26a;
}

.career-logo img{
    width: 95px;
}

.career-hero-content{
    width: 90%;
    margin: auto;

    padding-top: 110px;

    max-width: 720px;

    text-align: center;
}

.career-hero-content span{
    display: inline-block;

    margin-bottom: 20px;

    color: #00d26a;

    text-transform: uppercase;
    letter-spacing: 3px;

    font-weight: 700;
}

.career-hero-content h1{
    font-size: 86px;
    line-height: 0.95;

    margin-bottom: 25px;
}

.career-hero-content strong{
    color: #00d26a;
}

.career-hero-content p{
    color: rgba(255,255,255,0.78);

    line-height: 1.8;
    font-size: 18px;

    margin-bottom: 35px;
}

.career-hero-btn{
    display: inline-block;

    padding: 16px 38px;

    border-radius: 50px;

    background: #00d26a;
    color: #031f13;

    text-decoration: none;
    font-weight: 800;

    transition: 0.3s;
}

.career-hero-btn:hover{
    transform: translateY(-3px);
}


@media(max-width:768px){

    .career-hero{
        background:
            linear-gradient(rgba(3,31,19,0.88),
            rgba(3,31,19,0.88)),
            url("images/logo3.png");

        background-size: cover;
        background-position: center;
    }

    .career-topbar{
        padding: 25px 0;
    }

    .career-logo img{
        width: 75px;
    }

    .back-home{
        font-size: 14px;
    }

    .career-hero-content{
        padding-top: 90px;
    }

    .career-hero-content h1{
        font-size: 52px;
    }

    .career-hero-content p{
        font-size: 16px;
    }

}
/* kontakt sekcija */
.career-section{
    min-height: 100vh;
    padding: 120px 10%;
    display: flex;
    align-items: center;
    gap: 70px;
    background: #06281c;
    color: white;
}

.career-left{
    flex: 1;
}

.career-left h1{
    font-size: 90px;
    line-height: 1;
}

.career-left h2{
    font-size: 36px;
    color: #00d26a;
    margin: 15px 0;
}

.career-text{
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
}

.career-form input,
.career-form select,
.career-form textarea{
    width: 100%;
    padding: 18px 22px;
    margin-bottom: 18px;
    border: none;
    outline: none;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: white;
}

.career-form option{
    color: black;
}

.form-row{
    display: flex;
    gap: 18px;
}

.career-form textarea{
    height: 140px;
    resize: none;
}

.file-upload{
    display: block;
    padding: 18px 22px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    cursor: pointer;
}

.file-upload input{
    display: none;
}

.career-form button{
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    background: white;
    color: black;
    font-weight: 800;
    cursor: pointer;
}

.career-right{
    flex: 1;
}

.career-right img{
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
}

@media(max-width:768px){
    .career-section{
        flex-direction: column;
        padding: 80px 25px;
        text-align: center;
    }

    .career-left h1{
        font-size: 55px;
    }
    .career-right{
    display: none;
}

    .form-row{
        flex-direction: column;
        gap: 0;
    }
}

/* ====================================================Karta pica STRANICA==================================== */
.drinks-page {
    min-height: 100vh;
    background:
    url("https://www.transparenttextures.com/patterns/asfalt-dark.png"),
    #06281c;
    background-size: 180px;
    background-position: center;
    padding: 80px 7%;
    color: #fff;
}
.back-menu-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(200,155,92,0.45);
    color: #fff3d8;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-menu-btn:hover{
    background: #c89b5c;
    color: #06281c;
    transform: translateY(-2px);
}
.drinks-hero {
    text-align: center;
    margin-bottom: 60px;
}

.drinks-hero p {
    color: #c89b5c;
    letter-spacing: 5px;
    font-weight: 800;
}

.drinks-hero h1 {
    font-size: 70px;
    text-transform: uppercase;
    color: #fff3d8;
    margin: 10px 0;
}

.drinks-hero span {
    color: #ddd;
    font-size: 18px;
}

.drinks-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
    grid-auto-rows: min-content;
    height: auto;
}

.drink-card {
    background: rgba(255, 243, 216, 0.08);
    border: 1px solid rgba(200, 155, 92, 0.45);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.drink-card h2 {
    font-size: 30px;
    color: #c89b5c;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(200, 155, 92, 0.55);
    padding-bottom: 12px;
}

.drink-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 11px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.22);
}

.drink-item span {
    color: #fff3d8;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.drink-item b {
    color: #c89b5c;
    font-size: 19px;
    white-space: nowrap;
}

.drink-separator {
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 20px 0;
}

.small-drinks p {
    color: #6b3f25;
    margin-bottom: 12px;
    font-size: 15px;
}
.drink-card {
    height: auto;
}

.energetski-napici {
    margin-top: -350px;
}
.nektar-sokovi {
    margin-top: -520px;
}
.sezonsko-voce {
    margin-top: -460px;
}
.vino-plantaze {
    margin-top: -980px;
}
.vino-vukoje {
    margin-top: -650px;
}
.pivo {
    margin-top: -450px;
}
@media (max-width: 768px) {

    .drinks-wrapper {
        grid-template-columns: 1fr;
    }

    .energetski-napici,
    .nektar-sokovi,
    .sezonsko-voce,
    .vino-plantaze,
    .vino-vukoje,
    .pivo {
        margin-top: 0;
    }
}
/* ========================================================BACK TO TOP dugme=========================================== */
#backToTop{
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 55px !important;
    height: 55px !important;
    background: #b1241d !important;
    color: white !important;
    border-radius: 50% !important;
    z-index: 999999999 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 28px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35) !important;
}
/* LOADER */

#loader{
    position: fixed;
    inset: 0;
    background:
    url("https://www.transparenttextures.com/patterns/asfalt-dark.png"),
    #06281c;

    background-size: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999999;

    transition: opacity 0.6s ease,
    visibility 0.6s ease;
}

#loader img{
    width: 180px;
    animation: pulseLogo 1.8s infinite ease-in-out;
}

#loader.hide{
    opacity: 0;
    visibility: hidden;
}

@keyframes pulseLogo{

    0%{
        transform: scale(1);
        opacity: 0.9;
    }

    50%{
        transform: scale(1.08);
        opacity: 1;
    }

    100%{
        transform: scale(1);
        opacity: 0.9;
    }

}

.footer-credit{
    margin-top: 25px;
    text-align: center;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-credit a{
    color: #c89b5c;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.footer-credit a:hover{
    color: #fff3d8;
}