* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

:root {
    --bg-cream: #FFF7E8;
    --pink-accent: #F7D7E4;
    --pink-btn: #F4D3E1;
    --text-dark: #111111;
    --text-muted: #333333;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    overflow-x: hidden;
    min-height: 100vh;
}

/* NAVBAR Desktop */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: relative;
    z-index: 100;
}

.logo img {
    height: 75px;
    width: auto;
    display: block;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.close-btn {
    display: none;
}

.nav-links {
    margin-right: 470px;
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--pink-btn);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, background-color 0.2s;
}

.phone-btn i {
    font-size: 1.2rem;
}

.phone-btn:hover {
    transform: translateY(-1px);
    background-color: #f1c4d6;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* OVERLAY ZA POZADINU */
.menu-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* HERO SEKCIJA */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 0 5%;
    min-height: calc(100vh - 115px);
    position: relative;
}

.hero-content {
    max-width: 480px;
    z-index: 2;
    padding-bottom: 60px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.title-underline {
    width: 230px;
    height: 2px;
    background-color: #505050;
    margin: 18px 0 20px 0;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 35px;
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    background-color: var(--pink-btn);
    color: var(--text-dark);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s, transform 0.2s;
}

.cta-btn:hover {
    background-color: #f1c4d6;
    transform: translateY(-1px);
}

.hero-image-wrapper {
    position: relative;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.pink-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: var(--pink-accent);
    z-index: 1;
}

.hero-img {
    position: relative;
    z-index: 2;
    max-width: 80%;
    max-height: 480px;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: translateX(-10%);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
    /* DODAJ OVU LINIJU ISPOD: */
    animation: float 2.5s ease-in-out infinite;
}

/* MOBILNI DRAWER MENI */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .close-btn {
        display: block;
        align-self: flex-end;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--text-dark);
        cursor: pointer;
        margin-bottom: 20px;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%; /* Sakriven desno van ekrana */
        width: 50%;   /* Zauzima pola ekrana */
        min-width: 260px; /* Da ne bude prekratko na jako malim ekranima */
        height: 100vh;
        background-color: var(--bg-cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
        gap: 30px;
        z-index: 200;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
    }

    .nav-container.active {
        right: 0; /* Klizi sa desne strane ka unutra */
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.15rem;
        font-weight: 600;
    }

    .phone-btn {
        width: 100%;
        justify-content: center;
        margin-top: auto; /* Gura dugme telefona na dno drawer-a */
        padding: 10px 14px;
        font-size: 0.85rem;
    }

    .phone-btn i {
        font-size: 1rem;
    }

    .hero {
        flex-direction: column;
        padding: 30px 5% 0 5%;
    }

    .hero-content {
        max-width: 100%;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 2.7rem;
    }

    .hero-image-wrapper {
        width: 100%;
        min-height: 350px;
    }

    .pink-backdrop {
        width: 100%;
        height: 80%;
        bottom: 0;
        top: auto;
    }

    .hero-img {
        transform: translateX(0);
        max-height: 320px;
        /* Dodajemo mobilnu verziju float animacije bez translateX */
        animation: floatMobile 2.5s ease-in-out infinite;
    }
}
/* ==========================================
   SEKCIJA: OTKRIJTE NAŠE UKUSE
   ========================================== */

.products-section {
    margin-top: 120px;
    padding: 80px 5%;
    background-color: #FFF7E8; /* Krem pozadina */
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.05rem;
    color: #444444;
    font-weight: 500;
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================
   SEKCIJA: OTKRIJTE NAŠE UKUSE
   ========================================== */

.products-section {
    padding: 80px 5%;
    background-color: #FFF7E8;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.05rem;
    color: #444444;
    font-weight: 500;
    max-width: 650px;
    margin: 0 auto;
}

/* Grid layout za 4 kartice */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Beli okvir sa zaobljenim ivicama */
.card-border {
    background-color: #ffffff;
    border: 1px solid #111111;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.card-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.product-card h3 {
    margin-top: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products-section {
        padding: 50px 5%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px 12px;
    }

    .card-border {
        padding: 8px;
    }

    .product-card h3 {
        font-size: 0.95rem;
    }
}
/* ==========================================
   SEKCIJA: PAŽLJIVO BIRANI SASTOJCI
   ========================================== */

.ingredients-section {
    margin-top: 120px;
    background-color: #F8D8E5; /* Svetlo roze pozadina sa slike */
    padding: 80px 5%;
    text-align: center;
}

.ingredients-section .section-header {
    margin-bottom: 50px;
}

.ingredients-section .section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
}

.ingredients-section .section-header p {
    font-size: 1.05rem;
    color: #333333;
    font-weight: 500;
    max-width: 650px;
    margin: 0 auto;
}

/* Grid za 3 kartice */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Beline kartice sa crnim okvirom */
.ingredient-card {
    background-color: #ffffff;
    border: 1px solid #111111;
    border-radius: 16px;
    padding: 40px 25px 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-img-wrapper {
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 0px 10px;
}

.card-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.ingredient-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
}

.ingredient-card p {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.5;
    font-weight: 400;
    max-width: 280px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ingredients-grid {
        grid-template-columns: 1fr; /* Na mobilnom i tabletima idu jedna ispod druge */
        gap: 20px;
        max-width: 500px;
    }

    .ingredients-section {
        padding: 50px 5%;
    }

    .ingredient-card {
        padding: 30px 20px;
    }
}
/* ==========================================
   SEKCIJA: NAŠA RAZNOVRSNA PONUDA SLATKIŠA
   ========================================== */

.offer-section {
    margin-top: 120px;
    background-color: #FFF7E8; /* Krem pozadina */
    padding: 80px 5%;
    text-align: center;
}

.offer-section .section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 45px;
}

/* Grid za 6 kartica (3 kolone u 2 reda) */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Beline kartice sa crnim okvirom */
.offer-card {
    background-color: #ffffff;
    border: 1px solid #111111;
    border-radius: 12px;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden; /* Omogućava da dugme lepo legne uz donju ivicu */
}

.offer-img-wrapper {
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0px 10px;
}

.offer-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.offer-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.offer-card .price {
    font-size: 1rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 20px;
}

/* Rozikasto Naruči dugme na dnu kartice */
.order-btn {
    width: 100%;
    background-color: #F8D8E5;
    border-top: 1px solid #111111;
    color: #111111;
    text-decoration: none;
    padding: 12px 0;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background-color 0.2s;
}

.order-btn:hover {
    background-color: #f3c2d6;
}

/* Link na dnu sekcije */
.view-all-wrapper {
    margin-top: 50px;
}

.view-all-link {
    font-size: 1.8rem;
    font-weight: 800;
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 6px;
    transition: opacity 0.2s;
}

.view-all-link:hover {
    opacity: 0.75;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .offer-section {
        padding: 50px 5%;
    }

    .view-all-link {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .offer-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
}
/* ==========================================
   SEKCIJA: SLATKI TRENUCI STVORENI SA LJUBAVLJU
   ========================================== */

.about-section {
    margin-top: 120px;
    background-color: #FFF7E8; /* Krem pozadina */
    padding: 90px 5%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Tekstualni deo */
.about-text {
    flex: 1;
    max-width: 520px;
}

.about-text h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.25;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.05rem;
    color: #333333;
    line-height: 1.6;
    font-weight: 400;
}

/* Slikovni deo */
.about-image {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: flex-end;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 5%;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }

    .about-text {
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 1.9rem;
    }

    .about-image {
        max-width: 100%;
        width: 100%;
    }

    .about-image img {
        max-height: 350px;
    }
}
/* ==========================================
   FOOTER
   ========================================== */

.footer {
    margin-top: 60px;
    background-color: #FFF7E8; /* Krem pozadina */
    padding: 40px 5%;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.footer-links-left,
.footer-links-right {
    display: flex;
    align-items: center;
    gap: 45px;
}

.footer a {
    text-decoration: none;
    color: #111111;
    font-size: 1.05rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.footer a:hover {
    opacity: 0.7;
}

.footer-logo img {
    height: 75px;
    width: auto;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    /* Postavlja logo na sam vrh */
    .footer-logo {
        order: -1;
        margin-bottom: 5px;
    }

    /* Linkovi idu vertikalno, jedan ispod drugog */
    .footer-links-left,
    .footer-links-right {
        flex-direction: column;
        gap: 18px;
    }
}
/* Animacija za blago plivanje (gore-dole) */
@keyframes float {
    0% {
        transform: translateX(-10%) translateY(0px);
    }
    50% {
        transform: translateX(-10%) translateY(-15px); /* Pomera je 15px na gore */
    }
    100% {
        transform: translateX(-10%) translateY(0px);
    }
}
/* Dodaj i ovu animaciju za mobilni na kraj CSS-a */
@keyframes floatMobile {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}