@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
background: var(--pocetna-boja);
}


:root {

  /* Colors */
  --blaga-boja: #fffaf0;
  --header-bg-color: #4a2f2a;
  --pocetna-boja: #dfc39f;
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #3b141c;
  --secondary-color: #f3961c;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #ccc;

  /* Font size */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  /* Font weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Border radius */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* Site max width */
  --site-max-width: 1300px;
}

ul {
    list-style: none;
}

a{
    text-decoration: none;
}
button{
    cursor: pointer;
    border: none;
    background: none;
}
img {
    width: 100%;
}

/* Dodat padding za desktop da content ne lezi na ivici */
header {
    padding: 0 70px;
}

header .navbar {
    max-width: var(--site-max-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-content {
    margin: 0 auto;
    max-width: var(--site-max-width);
    padding: 0 90px; /* odmak od leve i desne strane */
}

.section-title {
 text-align: center;
 padding: 60px 0 100px;
 text-transform: uppercase;
 font-size: var(--font-size-xl);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

  
/* navbar style */
header{
position: fixed;
width: 100%;
z-index: 5;
background: var(--header-bg-color);
}

header .navbar {
    display: flex;
    padding: 20px; 
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo .logo-text {
    color: var(--white-color);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}


.navbar .nav-menu {
    display: flex;
    gap: 10px;
}


.navbar .nav-menu .nav-link {
    padding: 10px 18px;
    font-size: var(--font-size-m);
    color: var(--white-color) ;
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.navbar :where(#menu-close-button ,#menu-open-button) {
    display: none;
}
/* hero secrion stiyle */
.hero-section {
    min-height: 100vh;
    background: var(--pocetna-boja  );
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white-color);
    justify-content: space-between;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl); 
    color: var(--header-bg-color);
    font-family: "Allura", cursive;
}

.hero-section .hero-details .subtitle {
    margin-top: 8px;
    max-width: 70%;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description {
    max-width: 70%;
    margin: 24px 0 40px;
    font-size: var(--font-size-m);
}

.hero-section .hero-details .buttons {
    display: flex;
    gap: 23px;

}

.hero-section .hero-details .button {
    padding: 10px 26px;
    border: 2px solid transparent;
    color: var(--white-color);
    border-radius: var(--border-radius-m);
    background: var(--header-bg-color);
    font-weight: var(--font-weight-medium);
    transition: 0.3s ease;
}
.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us {
    color: var(--white-color);
    border-color: var(--white-color);
    background: transparent;
}
.hero-section .hero-details .contact-us:hover {
   color: var(--white-color);
    border-color: var(--header-bg-color);
    background: var(--header-bg-color);
}

.hero-section .hero-image-wrapper {
    max-width: 500px;
    margin-right: 30px;
}
/* about section style */

.about-section {
    padding: 100px 0 120px;
    background: var(--blaga-boja);
}

.about-section .section-content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-circle);
}

.about-section .about-details {
    max-width: 50%;
}

.about-section .about-details .section-title {
    padding: 0;
}

.about-section .about-details .text {
    line-height: 30px;
    margin: 50px 0 30px;
    text-align: center;
    font-size: var(--font-size-m);
}

.about-section .social-link-list {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.about-section .social-link-list .social-link {
    color: var(--primary-color);
    font-size: var(--font-size-l);
    transition: 0.2s ease;
}

.about-section .social-link-list .social-link:hover {
    color: var(--secondary-color);
}

/* DESKTOP */
@media (min-width: 769px) {
    .about-section {
        min-height: calc(100vh - 80px);
        display: flex;
        align-items: center;
    }
}



/* Response for 900px */
@media screen and (max-width: 900px) {
 :root {
  --font-size-m: 1rem;
  --font-size-l: 1.3rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 1.8rem;
    }

    .show-mobile-menu header::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(5px);
        background: rgba(0, 0, 0, 0.2);
    }

    .navbar :where(#menu-close-button ,#menu-open-button) {
        display: block;
        font-size: var(--font-size-l);
    }

    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    .navbar #menu-open-button  {
        color:var(--white-color) ;
    }

    .navbar .nav-menu {
        display: block;
        position: fixed;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        background: var(--white-color);
        transition: left 0.2s ease;
    }

    body.show-mobile-menu .navbar .nav-menu{
        left: 0;
    }

    .navbar .nav-menu .nav-link {
        color: var(--dark-color);
        display: block;
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle, .description), .about-section .about-details  {
        max-width: 100%;
    }
    .hero-section .hero-details .buttons {
        justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        max-width: 270px;
        margin-right: 0;
    }

    .about-section .section-content {
        gap: 70px;
        flex-direction: column;
    }
    .about-section .about-image-wrapper .about-image {
        width: 100%;
        height: 100%;
        max-width: 250px;
        aspect-ratio: 1;
    }
}










/* ========== CONTACT SECTION ========== */
  .contact-section .container {
    max-width: 1080px;
    margin: auto;
  }

  .contact-section .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .contact-section .row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  /* LEFT SIDE INFO */
  .contact-info {
    flex: 1;
    min-width: 300px;
  }

  .contact-info-item {
    display: flex;
    margin-bottom: 30px;
  }

  .contact-info-icon {
    height: 70px;
    width: 70px;
    background: var(--blaga-boja);
    border-radius: 50%;
    text-align: center;
  }

  .contact-info-icon i {
    font-size: 30px;
    line-height: 70px;
    color:   #4a2f2a;
  }

  .contact-info-content {
    margin-left: 20px;
  }

  .contact-info-content h4 {
    font-size: 1.2em;
    color: #4a2f2a;
    margin-bottom: 5px;
  }

  .contact-info-content p {
    color:  #4a2f2a;
    font-size: 1em;
  }

  /* RIGHT SIDE FORM */
  .contact-form {
    flex: 1;
    min-width: 300px;
    background: var(--blaga-boja);
    padding: 30px;
  }

  .contact-form h2 {
    margin-bottom: 15px;
    color: #4a2f2a;
  }

  .contact-form .input-box {
    
    position: relative;
    margin-top: 10px;
  }

  .contact-form .input-box input,
  .contact-form .input-box textarea {
    width: 100%;
    padding: 5px 0;
    margin: 10px 0;
    font-size: 16px;
    border: none;
    border-bottom: 2px solid  #4a2f2a;
    outline: none;
    resize: none;
    background: var(--blaga-boja);
  }

  .contact-form .input-box span {
    position: absolute;
    left: 0;
    pointer-events: none;
    color:  #4a2f2a;
    transition: 0.3s;
  }

  .contact-form .input-box input:focus ~ span,
  .contact-form .input-box textarea:focus ~ span {
    color:  #4a2f2a;
    font-size: 12px;
    transform: translateY(-20px);
  }

  .contact-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    background:  #4a2f2a;
    border: 1px solid  #4a2f2a;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }

  .contact-form input[type="submit"]:hover {
    background: var(--blaga-boja);
    color:  #4a2f2a;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 991px) {
    .contact-section .row {
      flex-direction: column;
    }

    .contact-info,
    .contact-form {
      width: 100%;
    }
  }

 



/* ============================
   LIST STYLE
============================ */
.cartice-3d ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.cartice-3d ul li {
    list-style: none;
}

/* ============================
   KARTICA
============================ */
.cartice-3d ul li a {
    position: relative;
    display: flex;
    align-items: center;
    width: 170px;
    height: 65px;
    background: #fff;
    text-decoration: none;
    padding-left: 15px;
    transform: rotate(-30deg) skew(25deg);
    transition: 0.4s;
    box-shadow: -15px 15px 8px rgba(0,0,0,0.4);
    color: #fff;
}

/* LEVA + DONJA STRANA */
.cartice-3d ul li a::before,
.cartice-3d ul li a::after {
    content: "";
    position: absolute;
    transition: 0.4s;
}

.cartice-3d ul li a::before {
    top: 8px;
    left: -15px;
    width: 15px;
    height: 100%;
    background: var(--blaga-boja);
    transform: skewY(-45deg);
}

.cartice-3d ul li a::after {
    bottom: -15px;
    left: -8px;
    width: 100%;
    height: 15px;
    background: #999;
    transform: skewX(-45deg);
}

/* ============================
   IKONA
============================ */
.cartice-3d ul li a i {
    font-size: 40px;
    line-height: 65px;
    margin-left: 12px;
    text-shadow: -2px 2px 4px rgba(0,0,0,0.35);
    transition: 0.4s;
}

/* ============================
   TEKST
============================ */
.cartice-3d ul li a span {
    margin-left: 8px;
    line-height: 65px;
    letter-spacing: 1.5px;
    color: #fff;
    transition: 0.4s;
}

/* ============================
   HOVER
============================ */
.cartice-3d ul li a:hover {
    transform: rotate(-30deg) skew(25deg) translate(15px, -10px);
    box-shadow: -40px 40px 30px rgba(0,0,0,0.5);
}

/* ============================
   BOJE
============================ */
.cartice-3d ul li:nth-child(3) a {
    background: #1877f2;
}
.cartice-3d ul li:nth-child(3) a::before {
    background: #145fd1;
}
.cartice-3d ul li:nth-child(3) a::after {
    background: #0f4fb3;
}

.cartice-3d ul li:nth-child(2) a {
    background: linear-gradient(45deg, #010101, #69C9D0, #FF0050);
}
.cartice-3d ul li:nth-child(2) a::before {
    background: #010101;
}
.cartice-3d ul li:nth-child(2) a::after {
    background: #FF0050;
}

.cartice-3d ul li:nth-child(1) a {
    background: linear-gradient(45deg, #fdf497, #fd5949, #d6249f, #285aeb);
}
.cartice-3d ul li:nth-child(1) a::before {
    background: #c13584;
}
.cartice-3d ul li:nth-child(1) a::after {
    background: #833ab4;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 768px) {

    .cartice-3d ul {
        flex-direction: column;
        align-items: center;   /* centar */
        justify-content: center;
        gap: 60px;           /* veći razmak */
    }

    .cartice-3d ul li a {
        width: 190px;
        height: 60px;
    }

    .cartice-3d ul li a i,
    .cartice-3d ul li a span {
        line-height: 60px;
    }
}

@media (max-width: 768px) {
    .social-box {
        width: 90%;        /* zauzima 90% ekrana na telefonu */
        padding: 0 10px;   /* malo paddinga */
    }
}




/* ============================
   SOCIAL BOX (kocka oko kartica)
============================ */

.social-box {
    max-width: 700px;
    margin: 80px auto 40px auto;
    padding: 40px;

    background: var(--blaga-boja);
    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.15);

    text-align: center;

}

/* naslov */
.social-box h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--header-bg-color);
    font-weight: 600;
    padding: 30px;
}

/* centriraj kartice */
.social-box .cartice-3d ul {
    justify-content: center;
}

.social-box {
    padding: 40px 40px 90px 40px; /* dole više mesta */
}











 .contact-section .section-header .container1 {
    text-align: center;      /* centriraj tekst */
    padding: 60px 20px;      /* razmak odozgo i odozdo */
}

.contact-section .section-header h2 {
    color: #4a2f2a;             /* bela boja da se vidi na tamnoj pozadini */
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-section .section-header p {
    color: #4a2f2a;             /* bela boja */
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}



.contact-section {
    min-height: 100vh;
     background: var(--pocetna-boja);
    position: relative;
  }




.contact-info-content a,
.contact-info-content a:visited,
.contact-info-content a:hover,
.contact-info-content a:active{
  color: #4a2f2a;
  text-decoration: none;
  word-break: break-word;
}

.contact-info-content a:hover{
  opacity: 0.8;
}

.contact-info-content p{
  line-height: 1.6;
}








@media (max-width: 991px) {
  .contact-section .container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .contact-section .row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .contact-info {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-info-item {
    justify-content: flex-start;
  }

  .contact-form {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .contact-section .section-header .container1 {
    padding: 40px 20px;
  }

  .contact-section .section-header h2 {
    font-size: 2rem;
  }

  .contact-section .section-header p {
    font-size: 1rem;
  }

  .contact-info {
    max-width: 360px;
  }

  .contact-form {
    max-width: 360px;
    padding: 24px 20px;
  }
}

#form-status {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  min-height: 22px;
  letter-spacing: 0.2px;
}

















/* Testimonial section */

.testimonials-section {
    padding: 50px 0 100px;
    background: var(--blaga-boja);
    min-height: 100vh;
    position: relative;
}

.testimonials-section .slider-wrapper-testimonials {
    max-width: var(--site-max-width);
    overflow: hidden;
    margin: 0 60px 50px;
}

.testimonials-section .testimonial {
    display: flex;
    flex-direction: column;
    padding: 35px;
    text-align: center;
    align-items: center;
}

.testimonials-section .testimonial .name {
    margin-bottom: 16px;
    font-size: var(--font-size-m);
}

.testimonials-section .testimonial .user-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 50px;
    border-radius: var(--border-radius-circle);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.testimonials-section .testimonial .feedback {
    line-height: 25px;
}

.testimonials-section .swiper-pagination-testimonials {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    bottom: 20px;
    position: absolute;
}

.testimonials-section .swiper-pagination-bullet {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px;
    min-height: 14px;
    margin: 0 !important;
    flex: 0 0 14px;
    display: block;
    border-radius: 50% !important;
    opacity: 1;
    background: var(--secondary-color);
}

.testimonials-section .swiper-pagination-bullet-active {
    width: 14px !important;
    height: 14px !important;
    border-radius: 50% !important;
}

.testimonials-section .swiper-pagination {
    line-height: 0;
}

.testimonials-section .swiper-slide-button {
    margin-top: -50px;
    color: var(--secondary-color);
    transition: 0.3s ease;
}

.testimonials-section .swiper-slide-button:hover {
    color: var(--primary-color);
}



/* TABLET */
@media (max-width: 1024px) {
    .testimonials-section {
        min-height: auto;
        padding: 50px 0 90px;
    }

    .testimonials-section .slider-wrapper-testimonials {
        margin: 0 25px 40px;
    }
}

/* TELEFON */
@media (max-width: 768px) {
    .testimonials-section {
        min-height: auto;
        padding: 50px 0 90px;
    }

    .testimonials-section .slider-wrapper-testimonials {
        margin: 0 10px 30px;
        padding: 0;
    }

    .testimonials-section .testimonial {
        padding: 25px 20px;
        min-height: auto;
    }

    .testimonials-section .testimonial .user-image {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }

    .testimonials-section .testimonial .feedback {
        font-size: 15px;
        line-height: 24px;
        word-break: normal;
        overflow-wrap: break-word;
        text-align: center;
    }

    .testimonials-section .testimonial .name {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .testimonials-section .swiper-slide-button {
        display: none;
    }

    .testimonials-section .swiper-pagination-testimonials {
        bottom: 10px;
    }

    
}















.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper .slider-item {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.slider-wrapper .slider-item::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("slike_za_usluge/slika_za_ai.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-wrapper .slider-item:nth-child(2)::before {
    background-image: url("slike_za_usluge/ugc_slika.webp");
}

.slider-wrapper .slider-item:nth-child(3)::before {
    background-image: url("slike_za_usluge/slika_za_esteticne_slike.webp");
}

.slider-wrapper .slider-item:nth-child(4)::before {
    background-image: url("slike_za_usluge/lepotica.webp");
}

.slider-wrapper .slider-item:nth-child(5)::before {
    background-image: url("slike_za_usluge/slika_za_websajtove.webp");
}

/* overlay preko slike */
.slider-wrapper .slider-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.38) 0%,
        rgba(0, 0, 0, 0.18) 30%,
        rgba(0, 0, 0, 0.06) 55%,
        rgba(0, 0, 0, 0.10) 100%
    );
    z-index: 1;
}

.slider-wrapper .slider-item .slide-content {
    color: #fff;
    z-index: 20;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 10px;
    max-width: 1400px;
    position: relative;
}

.slider-wrapper .slider-item .slide-content > * {
    max-width: 35%;
}

.slider-item .slide-content .slide-subtitle {
    font-size: 1rem;
    font-weight: normal;
}

.slider-item .slide-content .slide-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 5px;
    text-transform: uppercase;
}

.slider-item .slide-content .slide-description {
    margin-top: 25px;
    line-height: 25px;
}

.slider-item .slide-content .slide-button {
    color: #fff;
    display: block;
    width: 250px;
    padding: 13px 0;
    margin-top: 45px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid #fff;
    transition: 0.5s ease;
}

.slider-item .slide-content .slide-button:hover {
    color: #000;
    background: #fff;
}

.slider-container .slider-controls {
    position: absolute;
    bottom: 45px;
    left: 0;
    width: 100%;
    z-index: 20;
    overflow: auto;
    scrollbar-width: none;
}

.slider-controls .slider-pagination {
    position: relative;
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1400px;
    justify-content: space-between;
}

.slider-pagination .slider-indicator {
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid #fff;
    transition: 0.4s ease-in-out;
}

.slider-pagination .slider-tab {
    color: #fff;
    text-align: center;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(225, 225, 225, 0.5);
}

.slider-navigations button {
    position: absolute;
    top: 50%;
    height: 40px;
    width: 40px;
    cursor: pointer;
    z-index: 20;
    background: #202220;
    border: none;
    color: #fff;
    transform: translateY(-50%);
    transition: 0.4s ease;
}

/* tipka koja dobije Swiperovu klasu */
.slider-navigations button.swiper-button-disabled {
    display: none;
}

.slider-navigations button:hover {
    background: #323235;
}

.slider-navigations button#slide-prev {
    left: 20px;
}

.slider-navigations button#slide-next {
    right: 20px;
}

@media (max-width: 1536px) {
    .slider-wrapper .slider-item .slide-content,
    .slider-controls .slider-pagination {
        width: 85%;
    }
}

@media (max-width: 1024px) {
    .slider-wrapper .slider-item .slide-content,
    .slider-controls .slider-pagination {
        width: 100%;
    }

    .slider-wrapper .slider-item .slide-content > * {
        max-width: 66%;
    }

    .slider-navigations button {
        top: unset;
        bottom: -15px;
        background: none;
    }

    .slider-navigations button:hover {
        background: none;
    }
}

@media (max-width: 768px) {
    .slider-wrapper .slider-item {
        align-items: center;
        height: 100svh;
        min-height: 100svh;
    }

    .slider-wrapper .slider-item .slide-content {
        padding: 0 18px 90px;
    }

    .slider-wrapper .slider-item .slide-content > * {
        max-width: 78%;
    }

    .slider-item .slide-content .slide-subtitle {
        font-size: 0.95rem;
    }

    .slider-item .slide-content .slide-title {
        font-size: 2rem;
        line-height: 1.05;
        margin-top: 8px;
    }

    .slider-item .slide-content .slide-description {
        margin-top: 16px;
        line-height: 1.45;
        font-size: 1rem;
    }

    .slider-item .slide-content .slide-button {
        width: 220px;
        margin-top: 24px;
    }

    .slider-container .slider-controls {
        bottom: 10px;
    }

    .slider-pagination .slider-tab {
        padding: 14px 14px;
        font-size: 0.78rem;
    }

    /* AI videi */
    .slider-wrapper .slider-item:nth-child(1)::before {
        background-position: 50% center;
    }

    /* Esteticne slike */
    .slider-wrapper .slider-item:nth-child(2)::before {
        background-position: 50% center;
    }

    /* UGC videi */
    .slider-wrapper .slider-item:nth-child(3)::before {
        background-position: 54% center;
    }

    /* Esteticne reklame */
    .slider-wrapper .slider-item:nth-child(4)::before {
        background-position: 50% center;
    }

    /* Web-sajtovi */
    .slider-wrapper .slider-item:nth-child(5)::before {
        background-position: 35% center;
    }

    .slider-wrapper .slider-item::after {
        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.42) 0%,
            rgba(0, 0, 0, 0.22) 28%,
            rgba(0, 0, 0, 0.06) 55%,
            rgba(0, 0, 0, 0.10) 100%
        );
    }
}

html {
    scroll-behavior: smooth;
}

















/* ===== Video section ===== */
.video-section{
  padding: 64px 0;
  background: var(--pocetna-boja);
}

.video-container{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* ===== Naslov sekcije ===== */
.section-ugc-title{
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  margin: 40px 0 10px;
  letter-spacing: 0.5px;
}

.section-ugc-subtitle{
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 400;
  opacity: 0.75;
  margin: 0 0 28px;
  line-height: 1.7;
}

/* ===== Grid ===== */
.video-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px){
  .video-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px){
  .video-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== Card ===== */
.video-card{
  display: grid;
  gap: 12px;
  text-decoration: none;
  color: var(--dark-color);
  border-radius: 18px;
  padding: 12px;
  background: var(--blaga-boja);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: all .25s ease;
}

.video-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.14);
}

/* ===== Thumbnail ===== */
.video-thumb{
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s;
  opacity: .95;
  display: block;
}

.video-card:hover .video-thumb img{
  transform: scale(1.05);
  opacity: 1;
}

/* ===== Play dugme ===== */
.play-btn{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-btn::before{
  content: "";
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}

.play-btn::after{
  content: "";
  position: absolute;
  margin-left: 4px;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.video-meta h3{
  margin: 0;
  font-size: 16px;
}

.video-meta p{
  margin: 2px 0 0;
  font-size: 13px;
  opacity: .7;
}

/* ===== MODAL ===== */
.video-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.video-modal:target{
  display: block;
}

/* pozadina */
.video-modal .modal-bg{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
  z-index: 1;
}

/* sadržaj modala */
.video-modal .modal-content{
  position: relative;
  z-index: 2;
  width: min(420px, 94vw);
  margin: 6vh auto 0;
  padding: 12px;
  border-radius: 16px;
}

/* X dugme */
.video-modal .modal-close{
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #4a2f2a;
  text-decoration: none;
  z-index: 100000;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  font-size: 22px;
  line-height: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ===== VIDEO (REELS 9:16) ===== */
.video-modal .video-embed{
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 85vh;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.video-modal .video-embed iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== razmak zbog navbara ===== */
#work{
  padding-top: 100px;
}

/* ===== Desktop – sakrij menu dugmad samo na gallery/video strani ===== */
.gallery-page #menu-open-button,
.gallery-page #menu-close-button{
  display: none !important;
}

/* ===== Telefon – prikaži menu dugmad ===== */
@media (max-width: 900px){
  .gallery-page #menu-open-button,
  .gallery-page #menu-close-button{
    display: block !important;
    font-size: var(--font-size-l);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px){
  .video-section{
    padding: 54px 0;
  }

  .section-ugc-title{
    margin: 30px 0 10px;
  }

  .section-ugc-subtitle{
    margin-bottom: 24px;
    padding: 0 12px;
  }

  .video-modal .modal-content{
    width: min(420px, 94vw);
    margin: 4vh auto 0;
    padding: 10px;
  }

  .video-modal .modal-close{
    top: -10px;
    right: -10px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}










/* ===== IMAGE SECTION ===== */
.image-section{
  background: var(--pocetna-boja);
}

/* ===== IMAGE MODAL ===== */
.image-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.image-modal:target{
  display: block;
}

.image-modal .modal-bg{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(6px);
}

/* modal box - vise kao IG post nego reels */
.image-modal-content{
  position: relative;
  width: min(520px, 94vw);
  margin: 10vh auto 0;
  padding: 12px;
  border-radius: 20px;
  z-index: 2;
}

/* swiper */
.gallery-swiper{
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 85vh;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.gallery-swiper .swiper-slide{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.gallery-swiper .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* strelice */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next{
  color: #fff;
  width: 42px;
  height: 42px;
}

.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after{
  font-size: 22px;
  font-weight: 700;
}

/* pagination */
.gallery-swiper .swiper-pagination{
  bottom: 10px !important;
}

.gallery-swiper .swiper-pagination-bullet{
  background: #fff;
  opacity: 0.7;
}

.gallery-swiper .swiper-pagination-bullet-active{
  opacity: 1;
}

/* close dugme */
.image-modal .modal-close{
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  transition: .25s ease;
}

.image-modal .modal-close:hover{
  background: rgba(255,255,255,.14);
  transform: scale(1.05);
}

/* thumbnail slike u kartici */
.image-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* responsive */
@media (max-width: 768px){
  .image-modal-content{
    width: min(92vw, 460px);
    margin: 12vh auto 0;
    padding: 10px;
  }

  .gallery-swiper{
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .gallery-swiper .swiper-button-prev,
  .gallery-swiper .swiper-button-next{
    width: 36px;
    height: 36px;
  }

  .gallery-swiper .swiper-button-prev::after,
  .gallery-swiper .swiper-button-next::after{
    font-size: 18px;
  }

  .image-modal .modal-close{
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}

@media (max-width: 480px){
  .image-modal-content{
    width: 94vw;
    margin: 18vh auto 0;
    padding: 8px;
  }

  .gallery-swiper{
    aspect-ratio: 4 / 5;
    max-height: 82vh;
    border-radius: 14px;
  }

  .gallery-swiper .swiper-button-prev{
    left: 8px;
  }

  .gallery-swiper .swiper-button-next{
    right: 8px;
  }

  .gallery-swiper .swiper-button-prev,
  .gallery-swiper .swiper-button-next{
    width: 32px;
    height: 32px;
  }

  .gallery-swiper .swiper-button-prev::after,
  .gallery-swiper .swiper-button-next::after{
    font-size: 16px;
  }

  .gallery-swiper .swiper-pagination{
    bottom: 8px !important;
  }
}












/* ===== WEBSITE PAGE ===== */

.websites-page .websites-section{
  position: relative;
  padding: 130px 0 100px;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.55), transparent 28%),
    radial-gradient(circle at bottom right, rgba(92, 62, 48, 0.08), transparent 22%),
    linear-gradient(180deg, #f8f2eb 0%, #efe3d7 100%);
  overflow: hidden;
}

.websites-page .websites-section::before{
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  filter: blur(20px);
  pointer-events: none;
}

.websites-page .websites-section::after{
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(92, 62, 48, 0.06);
  filter: blur(24px);
  pointer-events: none;
}

.websites-page .websites-shell{
  width: min(1200px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ===== HERO ===== */

.websites-page .websites-hero{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 90px;
}

.websites-page .websites-hero-text{
  max-width: 720px;
}

.websites-page .websites-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(92, 62, 48, 0.08);
  color: #6c4a3b;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border: 1px solid rgba(92, 62, 48, 0.08);
  backdrop-filter: blur(8px);
}

.websites-page .websites-main-title{
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.02;
  color: #3a261d;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.websites-page .websites-main-subtitle{
  font-size: 1.02rem;
  line-height: 1.95;
  color: #6a5448;
  max-width: 650px;
}

.websites-page .websites-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.websites-page .websites-btn{
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.websites-page .websites-btn-primary{
  background: #5c3e30;
  color: #fff;
  box-shadow: 0 18px 38px rgba(92, 62, 48, 0.22);
}

.websites-page .websites-btn-primary:hover{
  background: #4e3428;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(92, 62, 48, 0.28);
}

.websites-page .websites-btn-secondary{
  background: rgba(255,255,255,0.68);
  color: #5c3e30;
  border: 1px solid rgba(92, 62, 48, 0.14);
  backdrop-filter: blur(8px);
}

.websites-page .websites-btn-secondary:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 12px 28px rgba(67, 44, 34, 0.08);
}

/* ===== HERO SIDE CARDS ===== */

.websites-page .websites-hero-side{
  display: grid;
  gap: 18px;
}

.websites-page .websites-mini-card{
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(92, 62, 48, 0.10);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 35px rgba(67, 44, 34, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.websites-page .websites-mini-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(67, 44, 34, 0.12);
}

.websites-page .websites-mini-card span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(92, 62, 48, 0.08);
  color: #6c4a3b;
  font-weight: 700;
  margin-bottom: 14px;
}

.websites-page .websites-mini-card h3{
  font-size: 1.16rem;
  color: #3d281f;
  margin-bottom: 10px;
}

.websites-page .websites-mini-card p{
  color: #6a5448;
  line-height: 1.8;
  margin: 0;
}

/* ===== PROJECTS HEAD ===== */

.websites-page .websites-projects-head{
  text-align: center;
  margin-bottom: 34px;
}

.websites-page .section-ugc-title{
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #3d281f;
  margin: 0;
  letter-spacing: -0.02em;
}

/* ===== PROJECT BLOCK ===== */

.websites-page .website-project{
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,0.30);
  border: 1px solid rgba(92, 62, 48, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 55px rgba(67, 44, 34, 0.08);
}

.websites-page .website-project-info{
  text-align: center;
  margin: 0 auto 34px;
}

.websites-page .website-project-name{
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: #3d281f;
  margin: 0;
  letter-spacing: -0.02em;
}

/* ===== GALLERY BLOCK ===== */

.websites-page .website-gallery-block{
  margin-bottom: 42px;
}

.websites-page .website-gallery-block:last-child{
  margin-bottom: 0;
}

.websites-page .website-gallery-title{
  font-size: 1.1rem;
  color: #7b5f50;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 0 0 22px;
}

/* ===== DESKTOP GRID ===== */

.websites-page .website-desktop-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

/* ===== MOBILE GRID ===== */

.websites-page .website-mobile-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  justify-items: center;
}

.websites-page .project-shot{
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.websites-page .project-shot img{
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(67, 44, 34, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.websites-page .project-shot img:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(67, 44, 34, 0.18);
}

.websites-page .mobile-shot{
  max-width: 220px;
}

.websites-page .mobile-shot img{
  max-width: 100%;
}

/* ===== TABLET ===== */

@media (max-width: 1024px){
  .websites-page .websites-hero{
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 70px;
  }

  .websites-page .websites-main-title{
    max-width: 820px;
  }

  .websites-page .website-project{
    padding: 28px;
  }

  .websites-page .website-mobile-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .websites-page .mobile-shot{
    max-width: 250px;
  }
}

/* ===== MOBILE ===== */

@media (max-width: 768px){
  .websites-page .websites-section{
    padding: 100px 0 70px;
  }

  .websites-page .websites-hero{
    gap: 24px;
    margin-bottom: 56px;
  }

  .websites-page .websites-hero-text{
    text-align: center;
    margin: 0 auto;
  }

  .websites-page .websites-main-subtitle{
    margin: 0 auto;
  }

  .websites-page .websites-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .websites-page .websites-btn{
    width: 100%;
  }

  .websites-page .websites-mini-card{
    padding: 20px;
    border-radius: 20px;
  }

  .websites-page .websites-projects-head{
    margin-bottom: 24px;
  }

  .websites-page .website-project{
    padding: 20px 14px;
    border-radius: 24px;
  }

  .websites-page .website-project-info{
    margin-bottom: 24px;
  }

  .websites-page .website-gallery-block{
    margin-bottom: 34px;
  }

  .websites-page .website-gallery-title{
    font-size: 0.96rem;
    margin-bottom: 16px;
  }

  .websites-page .website-desktop-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .websites-page .website-mobile-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .websites-page .project-shot img{
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(67, 44, 34, 0.12);
  }

  .websites-page .mobile-shot{
    max-width: 180px;
  }
}

@media (max-width: 520px){
  .websites-page .website-mobile-grid{
    grid-template-columns: 1fr 1fr;
  }

  .websites-page .mobile-shot{
    max-width: 150px;
  }
}
@media (max-width: 768px){
  .websites-page .websites-main-title{
    line-height: 1.14;
  }
}






.glass-footer {
  position: relative;
  padding: 90px 20px 30px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 35%),
    linear-gradient(180deg, #4a2f2a 0%, #2b1a17 100%);
  overflow: hidden;
}

.glass-footer-wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 60px rgba(0,0,0,0.22);
}

.glass-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
}

.glass-footer-label {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 18px;
}

.glass-footer-brand h2 {
  font-size: 34px;
  color: #fffaf0;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.glass-footer-brand p {
  max-width: 380px;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  font-size: 15px;
}

.glass-footer-links h3,
.glass-footer-contact h3 {
  color: #fffaf0;
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.glass-footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.glass-footer-links a,
.glass-footer-contact a,
.glass-footer-contact p {
  color: rgba(255,255,255,0.78);
  transition: 0.3s ease;
}

.glass-footer-links a:hover,
.glass-footer-contact a:hover {
  color: #fff;
}

.glass-footer-contact p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.glass-footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.glass-footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: 0.3s ease;
}

.glass-footer-socials a:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.16);
}

.glass-footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  transition: 0.3s ease;
}

.glass-footer-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.glass-footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.glass-footer-bottom p,
.glass-footer-bottom span {
  color: rgba(255,255,255,0.66);
  font-size: 14px;
}

@media (max-width: 980px) {
  .glass-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .glass-footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .glass-footer {
    padding: 70px 14px 24px;
  }

  .glass-footer-wrap {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .glass-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .glass-footer-brand h2 {
    font-size: 28px;
  }

  .glass-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.glass-footer-bottom a{
  color: inherit;
  text-decoration: none;
  transition: opacity .25s ease;
}

.glass-footer-bottom a:hover{
  opacity: 0.75;
}

















/* ===== PRIVACY PAGE ===== */
.privacy-page{
  background: var(--pocetna-boja);
  color: var(--dark-color);
}

/* sekcija */
.privacy-section{
  padding: 120px 0 80px;
  background: var(--pocetna-boja);
}

/* container */
.privacy-container{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

/* header */
.privacy-header{
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.privacy-label{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(120, 90, 60, .12);
  color: var(--dark-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.privacy-header h1{
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--dark-color);
}

.privacy-header p{
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(40, 30, 20, .78);
  max-width: 700px;
  margin: 0 auto;
}

/* content wrapper */
.privacy-content{
  display: grid;
  gap: 22px;
}

/* block */
.privacy-block{
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(120, 90, 60, .12);
  border-radius: 24px;
  padding: 28px 28px;
  box-shadow: 0 12px 35px rgba(60, 40, 20, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.privacy-block h2{
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--dark-color);
}

.privacy-block p{
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(40, 30, 20, .82);
  margin-bottom: 12px;
}

.privacy-block p:last-child{
  margin-bottom: 0;
}

.privacy-block ul{
  margin: 10px 0 10px 18px;
  padding: 0;
}

.privacy-block li{
  margin-bottom: 10px;
  line-height: 1.8;
  color: rgba(40, 30, 20, .82);
}

.privacy-block a{
  color: var(--dark-color);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .25s ease;
}

.privacy-block a:hover{
  opacity: 0.7;
}

.privacy-block strong{
  font-weight: 600;
  color: var(--dark-color);
}

/* responsive */
@media (max-width: 768px){
  .privacy-section{
    padding: 105px 0 64px;
  }

  .privacy-header{
    margin-bottom: 30px;
  }

  .privacy-block{
    padding: 22px 18px;
    border-radius: 20px;
  }

  .privacy-block h2{
    font-size: 1.35rem;
  }

  .privacy-block p,
  .privacy-block li{
    font-size: 0.97rem;
    line-height: 1.75;
  }
}

@media (max-width: 480px){
  .privacy-section{
    padding: 95px 0 56px;
  }

  .privacy-container{
    width: 94vw;
  }

  .privacy-header h1{
    font-size: 2rem;
  }

  .privacy-header p{
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .privacy-block{
    padding: 18px 15px;
    border-radius: 18px;
  }

  .privacy-block h2{
    font-size: 1.2rem;
  }

  .privacy-block ul{
    margin-left: 16px;
  }
}


/* ===== PRIVACY PAGE ONLY - SAKRIJ HAMBURGER/X NA DESKTOPU ===== */
body.privacy-page #menu-open-button,
body.privacy-page #menu-close-button{
  display: none !important;
}

/* ako zelis da se prikazu samo na telefonu i na ovoj stranici */
@media (max-width: 900px){
  body.privacy-page #menu-open-button,
  body.privacy-page #menu-close-button{
    display: block !important;
  }
}




