/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --bg-header: #111111;
  --bg-main: #0d0d0d;
  --bg-card: #22213f;
  --accent: #b08a2e;
  --text-main: #ffffff;
  --text-muted: #aaaaaa;
}

/* BASE */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* COOKIE */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #b9b7b4;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.85em;
  max-width: 340px;
  z-index: 1000;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#cookie-banner p {
  margin-bottom: 8px;
  color: #000;
}

.cookie-link {
  color: #ad957b;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-buttons {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#cookie-banner button {
  background: #a18d75;
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85em;
  transition: opacity 0.2s ease;
}

#cookie-banner button:hover {
  opacity: 0.85;
}

#cookie-banner button:nth-child(2) {
  background: transparent;
  color: #000;
  border: 1px solid #a67a46;
}

#cookie-banner button:nth-child(3) {
  background: transparent;
  color: #7a552c;
  border: 1px solid #7a552c;
}

/* ============================
   COOKIE MODAL
============================ */

#cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.cookie-modal-box {
  background: #e3dfd6;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cookie-modal-box h3 {
  margin-bottom: 12px;
  font-size: 1.1em;
}

.cookie-option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 0.9em;
}

.cookie-option input {
  margin-right: 6px;
}

.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-modal-actions button {
  background: #9e9992;
  border: none;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85em;
}

.cookie-modal-actions button:nth-child(2) {
  background: transparent;
  color: #000;
  border: 1px solid #a67a46;
}

/* ============================
   COOKIE MANAGE BUTTON
============================ */

#cookie-manage {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid #a67a46;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: none;
  z-index: 900;

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

  padding: 0;
}

#cookie-manage:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

#cookie-manage:hover {
  opacity: 0.85;
}

/* HEADER */

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.site-title .aurus {
  font-style: italic;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
/* LOGO */
.logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
  padding: 4px;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.4);
}

/* CENTER HEADER */
.center-header {
  text-align: center;
}

.site-title {
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 6px;
}

/* NAV */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  color: var(--text-main);
  font-weight: 500;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

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

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* LANG SWITCHER */
.lang-switcher {
  display: flex;
  gap: 6px;
}

.lang-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
}
.lang-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--accent);
  color: #000;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  background: var(--bg-header);
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
}

.mobile-menu a {
  font-size: 1.1rem;
}

.mobile-menu.hidden {
  display: none;
}

/* CTA button*/

.cta-btn {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: var(--accent);
  color: #000;
}

.cta-btn-price {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.cta-btn-price:hover {
  background: var(--accent);
  color: #000;
}

/* MAIN */
.site-main {
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.main-home {
  background-image: linear-gradient(rgba(30, 20, 5, 0.3), rgba(15, 10, 0, 0.5)),
    url("../images/pozadina_index.JPG");
}

.main-services {
  background-image: linear-gradient(rgba(30, 20, 5, 0.3), rgba(15, 10, 0, 0.5)),
    url("../images/pozadina_services.JPG");
}

.main-contact {
  background-image: linear-gradient(rgba(30, 20, 5, 0.3), rgba(15, 10, 0, 0.5)),
    url("../images/pozadina_contact.JPG");
}

.main-price {
  background-image: linear-gradient(rgba(30, 20, 5, 0.3), rgba(15, 10, 0, 0.5)),
    url("../images/pozadina_price.JPG");
}

.hero {
  max-width: 900px;
  margin: 80px auto 60px;
  padding: 0 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.content {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px 80px;
}

.content h2,
.content h3 {
  color: var(--accent);
  margin-bottom: 12px;
}

.content p {
  margin-bottom: 24px;
  color: var(--text-muted);
}

.main-services .content > p{
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.card {
  background: var(--bg-card);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.card h4 {
  margin-bottom: 10px;
  color: var(--accent);
}

.card p{
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}


/* ADS */
.ads {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px 80px;
}

.ad-box {
  margin-top: 16px;
  background: #000;
  border: 2px dashed var(--accent);
  border-radius: 14px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 600;
}

/* FORMS */
.form-links {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.form-link {
  padding: 10px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.6);
}

.contact-form {
  margin-top: 40px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form h3 {
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px;
  color: #fff;
}

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

.contact-form button {
  background: var(--accent);
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

/* FOOTER */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-credits {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .center-header {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* THEME TOGGLE BUTTON */
.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== PRICE PAGE ===== */

.price-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* SECTION */
.price-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* GRID */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.price-card {
  background: var(--bg-card);
  padding: 28px 26px 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* TITLE */
.price-card h3 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

/* PRICE */
.price-card p {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

/* FEATURES */
.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-card li {
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* SIMPLE PLANS (maintenance / seo) */
.price-simple {
  max-width: 720px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-simple article {
  background: var(--bg-card);
  padding: 24px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.price-simple h3 {
  color: var(--accent);
  margin-bottom: 10px;
}

.price-simple p {
  font-weight: 700;
}

/* EXTRA SERVICES */
.price-extra {
  max-width: 760px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-extra li {
  background: var(--bg-card);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1000px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .price-grid,
  .price-simple,
  .price-extra {
    grid-template-columns: 1fr;
  }

  .price-section h2 {
    font-size: 1.6rem;
  }
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  font-size: 0.95rem;
  font-weight: 400;
  color: #ece5e5;
  line-height: 1.6;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  position: relative;
}

.services-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #e2dede;
}

/* ============================
   BLOG LIST
============================ */
.main-blog {
  background: none !important;
}

.blog-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px 80px;
}

.blog-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.blog-search {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  font-size: 0.9rem;
  width: 260px;
}

.blog-search::placeholder {
  color: #aaa;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.blog-card {
  background: #ffffff;
  color: #111;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card h3,
.blog-card p {
  color: #111;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.blog-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.blog-card h3 {
  font-size: 1.05rem;
  color: var(--accent);
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-grow: 1;
}

.blog-read-more {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* ============================
   SINGLE POST
============================ */

.blog-post-wrapper {
  max-width: 780px;
  margin: 60px auto 100px;
  padding: 0 20px;
}

.blog-back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--accent);
}

.blog-post-wrapper h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.blog-post-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.blog-post-image {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 32px;
}

.blog-post-content h2,
.blog-post-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--accent);
}

.blog-post-content p {
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-search {
    width: 100%;
  }
}

/* ============================
   AFFILIATE PAGE
============================ */

.affiliate-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px 100px;
}

.affiliate-intro {
  max-width: 720px;
  margin-bottom: 50px;
}

.affiliate-intro h2 {
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.affiliate-intro p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.affiliate-section {
  margin-bottom: 70px;
}

.affiliate-section h3 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.affiliate-card {
  background: var(--bg-card);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.affiliate-card h4 {
  color: var(--accent);
  font-size: 1.1rem;
}

.affiliate-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

.affiliate-card a {
  align-self: flex-start;
  font-weight: 700;
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.affiliate-card a:hover {
  background: var(--accent);
  color: #000;
}

.affiliate-note {
  margin-top: 60px;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 760px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .affiliate-grid {
    grid-template-columns: 1fr;
  }
}
.footer-business {
  width: 100%;
  margin-top: 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}
/* Desktop – sve u jednoj liniji */
.footer-business {
  white-space: nowrap;
}

/* Mobile – lomljenje u redove */
@media (max-width: 768px) {
  .footer-business {
    white-space: normal;
    text-align: left;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .site-title {
    font-size: 1.4rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .site-title .aurus {
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.7;
  }

  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 6px;

  }
  
  .footer-business{
      padding: 0 16px 16px;
  }
}

.hero h2,
.content h2,
.content h3,
.content h4,
.price-section h2,
.price-card h3,
.price-simple h3,
.affiliate-intro h2,
.affiliate-section h3,
.affiliate-card h4,
.blog-post-wrapper h1,
.blog-post-content h2,
.blog-post-content h3,
.site-title {
text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.6);
}

