/* RESET */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff7f9;
    color: #222;

    padding-top: 0;

   -webkit-touch-callout: none;

    -webkit-user-select: none;
  
    

}

.hamburger {
    background: none;
    border: none;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }

}

* {
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}


/* CONTAINER */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* HEADER */

.header {
    background: transparent;
    margin: 0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
backdrop-filter: blur(8px);

}


.header-inner {
    max-width: 1100px;
    margin: 0 auto;

    padding: 12px 18px;

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

    background: linear-gradient(135deg, #ff4d6d, #ff7a8f);

    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;

    box-shadow: 0 3px 10px rgba(255,77,109,0.2);
}

.header-inner kk {
    max-width: 1100px;
    margin: auto;
   padding: 12px 20px;

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


/* LOGO */
.logo a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.5px;

 
}


/* NAV DESKTOP */
.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    opacity: 0.9;
 transition: 0.2s;

    padding-bottom: 1px;


}

.nav a:hover {
     opacity: 1;
    transform: translateY(-1px);

}

/* underline animacija */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0%;
    height: 2px;

    background: white;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255,255,255,0.6);
    transition: width 0.3s ease;


}

.nav a.active::after {
    width: 100%;
}

.nav a:hover::after {
    width: 100%;
}


/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
}

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

    .nav {
        position: absolute;
        top: 80px;
        right: 20px;

        background: linear-gradient(135deg, #ff4d6d, #ff7a8f);

        flex-direction: column;
        padding: 8px 0;
        border-radius: 12px;

        display: none;

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

    .nav a {
        color: white;
        padding: 10px 0;
    }

    .nav.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}

/* HERO / TITLE */
h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

.hero {
    padding: 40px 20px;
    background: linear-gradient(135deg, #fff0f3, #ffe4e8);
}

.hero-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero h1 {
    will-change: transform;
}

/* LEFT TEXT */
.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
 will-change: transform;
}

.hero-text h1 span {
    color: #ff4d6d;
}

.hero-text p {
    margin: 20px 0;
    color: #555;
}

/* BUTTON */
.btn-big {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 22px;
    background: linear-gradient(135deg, #ff4d6d, #ff7a8f);
    
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(255,77,109,0.3);

 color: #fff;
    transition: 0.2s;

}

/* LINKS */
.hero-links {
    margin-top: 15px;
}

.hero-links a {
    margin-right: 15px;
    color: #666;
    text-decoration: none;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
}
/* BUTTONS */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    border-radius: 10px;
    background: #1c1c1c;
    color: white;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px #333;
    transition: 0.2s;
}

.btn:hover {
    background: #222;
    box-shadow: 0 0 10px rgba(255,255,255,0.08);
}

.cat-card:hover,
.frase-card:hover {
    box-shadow: 0 15px 35px rgba(255,77,109,0.15);
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}



.footer {
    background: #fff0f3;

    text-align: center;
    margin-top: 40px;
    padding: 20px 0;

color: #333;
    
}

.footer a {
    color: #c2185b;
}

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

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

    .nav {
        display: none;
        flex-direction: column;
        background: linear-gradient(135deg, #ff4d6d, #ff7a8f);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 15px;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
    }
}

/* CARD */
.card pop {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}
.card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);

 display: flex;
    align-items: center;
    width: 100%;

    justify-content: space-between;

}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card span {
    display: block;
    padding: 15px;
    font-weight: bold;
}

.card:hover {
    transform: translateY(-5px);
}
 
.categories {
    margin-top: 60px;
}

.categories h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.categories .sub {
    color: #555;
    margin-bottom: 25px;
}

/* GRID */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* CARD */
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  background: white;
  padding: 25px;
  border-radius: 16px;
  text-decoration: none;
  color: #333;

  /* ?? UVEK AKTIVAN LOOK */
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255,77,109,0.12);

  transition: 0.2s;
}



/* ICON */
.icon {
    width: 60px;
    height: 60px;
    background: #ffe4e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 15px;
}

/* TEXT */
.cat-card h3 {
    margin-bottom: 10px;

}

.cat-card p {
    font-size: 14px;
    color: #444;

  margin-bottom: 12px;
}

.cat-card span {
    font-size: 13px;
    color: #ff4d6d;
    font-weight: 500;
}

/* DESNA STRANA (thumb zona 🔥) */
.cat-go {
  margin-top: 10px;

  font-size: 16px;
  font-weight: 700;

  color: #fff; /* ?? BELO */

  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 14px;
  border-radius: 12px;

  background: linear-gradient(135deg, #ff4d6d, #ff7a8f); /* ?? TAMNO */

  box-shadow: 0 6px 14px rgba(255,77,109,0.3);

  transition: 0.2s;
}

.cat-go {
  color: #fff !important;
}


.frasi {
    margin-top: 60px;
}

.frasi h2 {
    margin-bottom: 20px;
}

/* GRID */
.frasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

/* CARD */
.frase-card {
    background: white;
    border-radius: 26px;
    overflow: hidden;
    padding-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.frase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.frase-card p {
    padding: 15px;
    font-size: 15px;
    color: #444;
}

/* BUTTON */
.frase-card button {
    margin: 0 15px;
    padding: 10px;
    width: calc(100% - 30px);
    border: none;
    border-radius: 10px;
 
  
    cursor: pointer;

 

    font-weight: bold;

  background: #c2185b; /* ?? TAMNIJA ROZE */
  color: #fff;

  font-weight: 600;

}

#toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #111;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
button {
    transition: 0.2s;
}


h1, h2, h3, .hero p, .categories h2 {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

a, button {
    -webkit-tap-highlight-color: transparent;
}


.idee {
    margin-top: 60px;
}

.idee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.idee-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.2s;
}

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

.trending {
    margin: 30px 0;
    padding: 12px 15px;

    background: #fff;
    border-radius: 12px;

    display: flex;
    align-items: center;
    gap: 10px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-wrap: wrap;
}

.trending .label {
    font-weight: bold;
   
color: #c2185b;

}


.trending-links a {
  display: inline-block;
  padding: 10px 14px;
  background: #ffe3e6;
  border-radius: 12px;
  font-weight: 500;
  color: #000;
  text-decoration: none;

  transition: 0.2s;
}

.trending-links a:active {
  transform: scale(0.96);
}
.trending-links a:hover {
    background: #ffe4e8;
    color: #ff4d6d;
}


.hero-trust {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

a {
    transition: 0.2s;
}

.cat-card:active,
.frase-card:active {
    transform: scale(0.98);
}

.seo {
    margin-top: 60px;
    line-height: 1.7;
    max-width: 800px;
}

.seo h2 {
    margin-bottom: 15px;
}

.seo h3 {
    margin-top: 20px;
    color: #ff4d6d;
}


.seo p {
    color: #555;
    margin-bottom: 10px;
}


a {
    color: #d6336c;
}
a:hover {
    color: #b02555;
}

.trending-links a {
    display: inline-block;
    padding: 10px 14px;
    margin: 5px;
    border-radius: 8px;
}
.trending-links {
    gap: 10px;
}
.trending-links {
    gap: 10px;
}

button,
.btn-big,
.frase-card button {
    min-height: 28px;

}

a, button {
    transition: transform 0.1s ease, opacity 0.1s ease;
}

a:active, button:active {
    transform: scale(0.97);
    opacity: 0.8;
}

.cat-card:active,
.frase-card:active {
    transform: scale(0.96);
}

.cat-card:hover,
.frase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255,77,109,0.15);
}


.btn-big:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,77,109,0.4);
  background: linear-gradient(135deg, #e8435f, #ff6b81);
    color: #fff; /* 🔥 najbitnije */


}


.frase-card button.copied {
    background: #28a745;
    color: white;
}

.header .nav a {
    color: white;
}

.header .nav a:hover {
    color: white;
    opacity: 0.8;
}
.logo a {
    color: white;
}

.logo a:hover {
    color: white;
    opacity: 0.9;
}

main a {
    color: #d6336c;
}

main a:hover {
    color: #b02555;
}

:focus-visible {
    outline: 2px solid #ff4d6d;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  max-width: 420px;
  width: calc(100% - 32px);

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);

  border-radius: 16px;
  padding: 14px 16px;

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

  display: flex;
  flex-direction: column;
  gap: 10px;

  font-size: 13px;
  color: #222;

  z-index: 9999;

  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(16px);
  background: transparent;


}
.cookie-banner p {
  margin: 0;
}

.cookie-banner button {
  background: #0071e3;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
}
.cookie-banner a {
  color: #0071e3;
  text-decoration: none;
}

.cookie-banner a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner button {
    width: auto;
  }
}

.contact-page {
  padding: 80px 16px;
  display: flex;
  justify-content: center;
}

.contact-box {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-box h1 {
  text-align: center;
  margin-bottom: 8px;
}

.contact-box p {
  text-align: center;
  color: #666;
  margin-bottom: 20px;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#contact-form input,
#contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}

#contact-form textarea {
  min-height: 120px;
}

#btn {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #0071e3;
  color: #fff;
  cursor: pointer;
}

.hp {
  display: none;
}

#form-message {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
}

