/* --- ABOUT SEKCIJA: MODERAN GRID ZA SLIKE --- */
.about-photos-wrapper {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-end;
  margin-top: 2rem;
}

.about-photo-main img {
  width: 340px;
  height: 440px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  object-fit: cover;
  background: var(--color-bg);
  border: 1px solid var(--color-border-subtle);
}

.about-photo-secondary img {
  width: 220px;
  height: 280px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  object-fit: cover;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border-subtle);
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .about-photos-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .about-photo-main img,
  .about-photo-secondary img {
    width: 95vw;
    height: auto;
    max-width: 350px;
  }
}

/* --- SECTION ACHIEVEMENTS: ANIMACIJE --- */
.achievement-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.counter {
  display: inline-block;
  font-weight: 700;
  font-size: 2.8rem;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(253, 199, 12, 0.3));
  }
  50% {
    opacity: 0.8;
    filter: drop-shadow(0 0 8px rgba(253, 199, 12, 0.6));
  }
}

/* --- SECTION STAFF: ANIMACIJE KARTICE --- */
.staff-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.staff-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.15);
}

.staff-photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.staff-photo img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.staff-card:hover .staff-photo img {
  transform: scale(1.08);
}

.staff-body {
  transition: all 0.3s ease;
}

.staff-name {
  transition: color 0.3s ease;
}

.staff-card:hover .staff-name {
  background: linear-gradient(135deg, #FDC70C, #FF9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- SECTION GREENLAKE & SILVERLAKE: ANIMACIJE --- */
.greenlake-list li,
.silverlake-stats .greenlake-card,
.silverlake-stats .silverlake-card {
  transition: all 0.3s ease;
}

.greenlake-card,
.silverlake-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.greenlake-card:hover,
.silverlake-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.greenlake-number,
.silverlake-number {
  background: linear-gradient(135deg, #FDC70C, #FF9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.greenlake-card:hover .greenlake-number,
.silverlake-card:hover .silverlake-number {
  transform: scale(1.1);
}

.gl-gallery-strip {
  transition: all 0.6s ease;
}

.gl-gallery-main img,
.gl-gallery-side img {
  transition: transform 0.6s ease;
}

.gl-gallery-main:hover img,
.gl-gallery-side:hover img {
  transform: scale(1.05);
}

/* --- EVENTS WRAPPER: SIDE BY SIDE BOXES --- */
.events-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 8rem var(--page-padding-x);
  max-width: 1200px;
  margin: 0 auto;
}

.event-box {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.4));
  border: 1px solid rgba(253, 199, 12, 0.2);
  border-radius: 24px;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.event-box:hover {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
  border-color: rgba(253, 199, 12, 0.4);
  box-shadow: 0 20px 60px rgba(253, 199, 12, 0.15), 0 0 0 1px rgba(253, 199, 12, 0.1);
  transform: translateY(-8px);
}

.event-box .container {
  padding: 0;
  max-width: none;
}

.event-box .section-kicker {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fbbf24;
  margin-bottom: 1rem;
  font-weight: 600;
}

.event-box .section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.event-box .section-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-greenlake {
  background: transparent;
  padding: 5rem 0;
}

@media (max-width: 1200px) {
  .events-wrapper {
    gap: 3rem;
    padding: 6rem var(--page-padding-x);
  }

  .event-box {
    padding: 3.5rem 2.5rem;
  }

  .event-box .section-title {
    font-size: 2.2rem;
  }

  .section-greenlake,
  .section-silverlake {
    padding: 4rem 0;
  }
}

@media (max-width: 900px) {
  .events-wrapper {
    gap: 3rem;
    padding: 5rem var(--page-padding-x);
  }

  .event-box {
    padding: 3rem 2rem;
  }

  .event-box .section-title {
    font-size: 1.8rem;
  }

  .event-box .section-text {
    font-size: 1rem;
  }

  .greenlake-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gl-gallery-strip {
    display: none;
  }

  .section-greenlake,
  .section-silverlake {
    padding: 3.5rem 0;
  }
}


/* --- ABOUT SEKCIJA: MODERAN GRID ZA SLIKE --- */
.about-photos-wrapper {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}

.about-photo-main img,
.about-photo-secondary img {
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  object-fit: cover;
  display: block;
  background: #fff;
  border: 1px solid #f3f4f6;
}

@media (max-width: 900px) {
  .about-photos-wrapper {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .about-photo-main img,
  .about-photo-secondary img {
    max-width: 95vw;
  }
}
/* --- ABOUT SEKCIJA: MODERAN GRID ZA SLIKE --- */
.about-media {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
}

.about-photo-main img,
.about-photo-secondary img {
  width: 100%;
  max-width: 340px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .about-media {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .about-photo-main img,
  .about-photo-secondary img {
    max-width: 95vw;
  }
}
/* Partners section text contrast improvements */
.section-partners .partner-body .partner-name {
  color: rgba(255, 255, 255, 0.95);
}

.section-partners .partner-body .partner-text {
  color: rgba(255, 255, 255, 0.85);
}
/* HEADER */

/* HEADER – podržava i .header i .site-header */

.header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(248, 250, 252, 0.96),
    rgba(248, 250, 252, 0.9)
  );
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
  padding-inline: var(--page-padding-x);
}


.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logo img {
  width: 56px;
  height: auto;
}

/* NAV */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.22); /* prozirno bijelo */
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.7rem 2.2rem;
  margin-inline: auto;
}

.main-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}

.main-nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #0f172a;
  padding-block: 0.2rem;
  position: relative;
  transition: color 0.18s;
}

.main-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-accent)
  );
  transition: width 0.2s ease-out;
  color: #f97316; /* Akcent narandžasta na hover */
}

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

.nav-cta {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background-color: #0f172a;
  color: #e5e7eb;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background-color: #020617;
}

/* MOBILE NAV TOGGLE */

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: #0f172a;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

/* HERO */

.section-hero {
  background: radial-gradient(
      circle at top left,
      rgba(248, 250, 252, 0.05),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(248, 250, 252, 0.15),
      transparent 55%
    ),
    #020617;
  color: var(--color-text-on-dark);
  padding-block: 4.5rem;
  position: relative;
  overflow: hidden;
}

/* grid za tvoj .hero-container iz HTML-a */
.hero-inner,
.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero-content {
  max-width: 34rem;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--color-accent);
  margin-bottom: 0.9rem;
}

/* ako koristiš .heading-primary već u general.css, ovo samo blago šminka */
.heading-primary {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 2.6rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

.heading-primary span {
  display: block;
  color: #e5e7eb;
}

.hero-description {
  color: #cbd5f5;
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
  margin-bottom: 1.8rem;
}

/* Kontrast za outline dugme na tamnom hero-u */
.section-hero .btn-outline {
  color: #e5e7eb;
  border-color: rgba(226, 232, 240, 0.75);
}

.section-hero .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #facc15;
  color: #facc15;
}

/* statovi ispod hero-a ako ih budeš dodavao */
.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
}

.hero-stat {
  min-width: 6rem;
}

.hero-stat-number {
  display: block;
  font-weight: 700;
  font-size: 1.4rem;
  color: #facc15;
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* HERO MEDIA – tvoje .hero-image + .hero-img */

.hero-image {
  position: relative;
  justify-self: end;
}

.hero-img {
  border-radius: var(--radius-xl, 1.6rem);
  overflow: hidden;
  box-shadow: var(--shadow-soft, 0 18px 45px rgba(15, 23, 42, 0.6));
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(
      circle at top,
      rgba(248, 250, 252, 0.08),
      transparent 60%
    ),
    #020617;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroFloat 8s ease-in-out infinite;
}

/* Hero badge */

.hero-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.7);
  backdrop-filter: blur(12px);
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-badge-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
}

.hero-badge-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #facc15;
}

/* HERO SPOTLIGHT EFFECT */

.hero-spotlight {
  position: relative;
}

.hero-spotlight::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 40rem;
  height: 40rem;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(
    circle at center,
    rgba(250, 204, 21, 0.22),
    rgba(249, 115, 22, 0.08),
    transparent 70%
  );
  transform: translate3d(var(--spot-x, -50%), var(--spot-y, -50%), 0);
  opacity: 0;
  transition: opacity 0.25s ease-out;
  z-index: 0;
}

.hero-spotlight.is-active::before {
  opacity: 1;
}

/* HERO FLOAT ANIMATION */

@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}


/* HERO FLOAT ANIMACIJA (ako je želiš na .hero-image) */

@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* možeš opcionalno:
.hero-image { animation: heroFloat 8s ease-in-out infinite; }
*/

/* FEATURED (SAVEZ) */

.section-featured {
  border-bottom: 1px solid var(--color-border-subtle);
  background: radial-gradient(circle at top right, rgba(253, 199, 12, 0.10), transparent 60%), #0f172a !important;
  padding-block: 5rem 5rem;
}

.featured-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.featured-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 1.6rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-subtle);
}

.featured-logo-wrap {
  flex-shrink: 0;
  width: 72px;
}

.featured-logo {
  width: 100%;
  height: auto;
}

.featured-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1e293b;
}

.featured-desc {
  font-size: 0.9rem;
  color: #475569;
}

/* PARTNERI */

.section-partners {
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 6.2rem 6.2rem;
  padding-inline: 2.5rem;
}

/* Sakrij naslove grupa i kolone – jedna kompaktna mreža logotipa */
.partner-group-title,
.partner-column { display: none; }

/* Prikaži sve partnere u jednoj jednostavnoj mreži */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
  margin-top: 2.8rem;
  justify-items: center;
  align-items: stretch;
}

/* Minimalne kartice partnera (koriste postojeći HTML .partner-card) */
.partner-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1.4rem;
  padding: 2.2rem 2rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 4px 32px rgba(15,23,42,0.07);
  transition: transform 0.22s cubic-bezier(.4,2,.3,1), box-shadow 0.22s;
  will-change: transform, box-shadow;
}

body.theme-dark .partner-card {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(55, 65, 81, 0.85);
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 12px 40px rgba(249,115,22,0.13);
}

.partner-logo-frame { width: 100%; display: flex; justify-content: center; }
.partner-logo { height: 44px; max-width: 100%; object-fit: contain; filter: grayscale(100%) contrast(0.95) opacity(0.95); }
.partner-card:hover .partner-logo { filter: none; }

.partner-name { font-size: 0.95rem; font-weight: 600; text-align: center; }
.partner-text { font-size: 0.86rem; color: var(--color-text-muted); text-align: center; }
.partner-tags { display: none; }

/* Kompaktni CTA blok ispod partnera */
.partner-cta {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.partner-cta h3 { font-size: 1rem; margin-bottom: 0; }
.partner-cta p { font-size: 0.9rem; color: #cbd5f5; margin: 0; }

.partner-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  background: transparent;
  color: #f9fafb;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out;
}

.partner-cta a:hover { background: #f9fafb; color: #020617; border-color: transparent; transform: translateY(-1px); }


/* ABOUT */

.section-about {
    padding-bottom: 6rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.about-text .section-title {
  margin-bottom: 0.7rem;
}

.about-text .section-text {
  margin-bottom: 1.4rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.about-list ion-icon {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-top: 0.05rem;
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.about-meta-label {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.about-meta-value {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-text-soft);
}

/* About media */

.about-media {
  position: relative;
}

.about-photo-main {
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-secondary {
  position: absolute;
  width: 55%;
  right: -0.6rem;
  bottom: -1.2rem;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

/* STAFF */

.section-staff {
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.staff-grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.staff-card {
  background-color: #ffffff;
  border-radius: 1.4rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.staff-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.staff-body {
  padding: 1.1rem 1.15rem 1.2rem;
}

.staff-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: #0f172a;
}

.staff-role {
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 0.6rem;
}

.staff-text {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.8rem;
}

.staff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.78rem;
}

.staff-tags li {
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  background-color: #eef2ff;
  color: #3730a3;
}

.staff-meta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  justify-content: center;
}

.staff-meta-label {
  display: block;
  color: #cbd5e1;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.staff-meta-value {
  display: block;
  font-weight: 600;
  color: #ffffff;
}

/* GREEN LAKE */

.section-greenlake {
  border-bottom: 1px solid var(--color-border-subtle);
}

.greenlake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
}

.greenlake-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin: 2.5rem auto;
  max-width: 700px;
  text-align: left;
}

.greenlake-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e2e8f0;
}

.greenlake-list ion-icon {
  color: #fbbf24;
  margin-top: 0.15rem;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.greenlake-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.greenlake-card {
  background-color: #0f172a;
  color: #e5e7eb;
  border-radius: 1.3rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
}

.greenlake-card h3 {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.3rem;
}

.greenlake-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.1rem;
}

.greenlake-label {
  font-size: 0.84rem;
  color: #cbd5f5;
}

.greenlake-distance-list {
  margin-top: 0.15rem;
  font-size: 0.85rem;
  color: #cbd5f5;
}

/* FAQ SECTION */

.section-faq {
  padding: 8rem 0;
  background: linear-gradient(180deg, 
    rgba(15, 23, 42, 0.97) 0%, 
    rgba(30, 41, 59, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.section-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.faq-header .section-kicker {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.faq-header .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.faq-header .section-text {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.03) 0%, 
    rgba(241, 245, 249, 0.02) 100%);
  border: 1px solid rgba(203, 213, 225, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.3);
  background: linear-gradient(135deg, 
    rgba(248, 250, 252, 0.05) 0%, 
    rgba(241, 245, 249, 0.03) 100%);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(251, 191, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.faq-item:hover::before {
  transform: scaleX(1);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.faq-question h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8fafc;
  line-height: 1.4;
  flex: 1;
}

.faq-question ion-icon {
  font-size: 1.8rem;
  color: #fbbf24;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item:hover .faq-question ion-icon {
  transform: rotate(15deg) scale(1.1);
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0;
}

/* Dark mode FAQ */
body.theme-dark .faq-item {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.6) 0%, 
    rgba(30, 41, 59, 0.5) 100%);
  border-color: rgba(71, 85, 105, 0.3);
}

body.theme-dark .faq-item:hover {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.8) 0%, 
    rgba(30, 41, 59, 0.7) 100%);
  border-color: rgba(251, 191, 36, 0.4);
}

/* PRICING */

.section-pricing {
  padding-top: 6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-border-subtle);
}

.pricing-grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.pricing-card {
  background-color: var(--color-surface);
  border-radius: 20px;
  border: 1px solid rgba(253, 199, 12, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, rgba(251, 191, 36, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(251, 191, 36, 0.15), 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(253, 199, 12, 0.3);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card-main {
  position: relative;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.7));
  border: 2px solid rgba(253, 199, 12, 0.2);
  transform: none;
  z-index: 1;
  overflow: visible;
}

.pricing-card-main:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(251, 191, 36, 0.2), 0 8px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(253, 199, 12, 0.4);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -45px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  padding: 0.3rem 1.2rem;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  transform: rotate(45deg);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.5);
  width: 160px;
  text-align: center;
  z-index: 20;
  white-space: nowrap;
}

.pricing-head {
  margin-bottom: 1.8rem;
}

.pricing-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.pricing-card-main .pricing-name {
  color: #f8fafc;
}

.pricing-tagline {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

.pricing-card-main .pricing-tagline {
  color: #cbd5e1;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.pricing-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fbbf24;
}

.pricing-currency {
  font-size: 1rem;
  font-weight: 600;
  color: #fbbf24;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--color-text-soft);
  margin-left: 0.3rem;
}

.pricing-card-main .pricing-period {
  color: #e2e8f0;
}

.pricing-list {
  font-size: 0.95rem;
  color: var(--color-text-main);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.pricing-card-main .pricing-list {
  color: #e2e8f0;
}

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-list ion-icon {
  font-size: 1.3rem;
  color: #fbbf24;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.pricing-list span {
  line-height: 1.6;
}

.pricing-actions {
  margin-top: auto;
}

.pricing-actions .btn-primary,
.pricing-actions .btn-outline {
  font-size: 1rem;
  padding: 1rem 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-actions .btn-outline {
  color: #0f172a !important;
  border-color: rgba(15, 23, 42, 0.3);
}

.pricing-actions .btn-outline:hover {
  color: #0f172a !important;
}

.pricing-trust {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  font-size: 0.9rem;
  text-align: center;
}

.pricing-trust div {
  padding: 2rem;
  border-radius: 16px;
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.1);
  transition: all 0.4s ease;
}

.pricing-trust div:hover {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-4px);
}

.pricing-trust-number {
  display: block;
  font-weight: 900;
  font-size: 2.2rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.pricing-trust-label {
  display: block;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* CTA / FORM */

.section-cta {
  border-bottom: 1px solid var(--color-border-subtle);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.cta-points {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.cta-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.cta-points ion-icon {
  color: var(--color-primary);
  margin-top: 0.05rem;
}

.cta-form-wrap {
  background-color: #ffffff;
  border-radius: 1.6rem;
  padding: 1.4rem 1.5rem 2rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 2rem;
}

.cta-form .form-group {
  margin-bottom: 0.85rem;
}

.cta-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  background-color: #f9fafb;
  transition: border-color 0.16s ease-out,
    box-shadow 0.16s ease-out, background-color 0.16s ease-out;
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.25);
  background-color: #ffffff;
}

.cta-form textarea {
  resize: vertical;
}

/* Form privacy text */
.form-privacy {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.4;
}

.form-privacy a {
  color: #64748b;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.form-privacy a:hover {
  color: #fbbf24;
}

/* Form feedback messages */
.form-feedback {
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  display: none;
}

.form-feedback.success {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
}

.form-feedback.error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

.form-feedback.hidden {
  display: none;
}

/* Button loading state */
.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-loader ion-icon {
  font-size: 1.2rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn-text,
.btn-loader {
  transition: opacity 0.2s ease;
}

.hidden {
  display: none;
}

/* Field error styling */
.input-error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.05) !important;
}

.field-error-message {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: block;
}

/* G-RECAPTCHA wrapper */

.g-recaptcha {
  transform-origin: left top;
}

/* reCAPTCHA v3 badge positioning and visibility */
.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Hide reCAPTCHA error messages */
iframe[src*="recaptcha"] {
  position: fixed !important;
  bottom: -100px !important;
  visibility: hidden !important;
}

/* TILT CARD (simple hover) */

.tilt-card {
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out, background-color 0.18s ease-out;
  transform-origin: center center;
}

.tilt-card.tilt-active,
.tilt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
  border-color: rgba(148, 163, 184, 0.9);
}

/* FOOTER */

.site-footer {
  padding-block: 2.8rem 2.3rem;
  background-color: #020617;
  color: #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.footer-logo {
  width: 46px;
  margin-bottom: 0.7rem;
}

.footer-text {
  font-size: 0.9rem;
  color: #cbd5f5;
  max-width: 19rem;
  margin-bottom: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
}

.footer-social a {
  height: 2rem;
  width: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 1rem;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out,
    transform 0.2s ease-out;
}

.footer-social a:hover {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-accent)
  );
  border-color: transparent;
  color: #111827;
  transform: translateY(-1px);
}

.footer-copy {
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-copy a {
  color: #e5e7eb;
}

.footer-heading {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.footer-contact {
  font-style: normal;
  font-size: 0.86rem;
  color: #cbd5f5;
}

.footer-contact a {
  color: #e5e7eb;
}

.footer-links {
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-links a {
  color: #cbd5f5;
}

.footer-links a:hover {
  color: #facc15;
}

/* MINI HERO TEKST / MICROCOPY */

.mini-help {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  color: var(--c-muted);
  max-width: 42rem;
  line-height: 1.6;
}

body.theme-dark .mini-help {
  color: rgba(226, 232, 240, 0.9);
}

/* LIGHTBOX MODAL */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* FAB BUTTON */

.fab-container {
  display: none;
}

.fab-button {
  display: none;
}

/* AUDIENCE / ZA KOGA JE KLUB */

.section-audience {
  padding: 8rem 0;
  background: radial-gradient(
      circle at top right,
      rgba(253, 199, 12, 0.12),
      transparent 55%
    ),
    var(--c-bg);
  position: relative;
  overflow: hidden;
}

body.theme-dark .section-audience {
  background: radial-gradient(
      circle at top right,
      rgba(253, 199, 12, 0.12),
      transparent 55%
    ),
    #020617;
}

.audience-container {
  max-width: 112rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.audience-header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.audience-eyebrow {
  font-size: 1.4rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 0.8rem;
}

.audience-title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--c-text);
}

body.theme-dark .audience-title {
  color: #e5e7eb;
}

.audience-lead {
  font-size: 1.6rem;
  color: var(--c-muted);
  max-width: 60rem;
  margin: 0 auto;
}

body.theme-dark .audience-lead {
  color: #9ca3af;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}

.audience-card {
  background: #0f172a;
  border: 1px solid #1a2332;
  color: #f8fafc;
  border-radius: 1.8rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease, background 0.2s ease;
  padding: 2.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

body.theme-dark .audience-card {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(55, 65, 81, 0.9);
    background: #0f172a;
    border-color: #1a2332;
    color: #f8fafc;

.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(253, 199, 12, 0.16),
    transparent 60%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  border-color: rgba(249, 115, 22, 0.7);
  background: rgba(255, 255, 255, 1);
}

body.theme-dark .audience-card:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(249, 115, 22, 0.9);
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.15);
  color: #f97316;
  font-size: 1.3rem;
  font-weight: 600;
  align-self: flex-start;
}

body.theme-dark .audience-pill {
  background: rgba(15, 23, 42, 0.75);
  color: #cbd5f5;
}

.audience-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.audience-pill-icon ion-icon {
  font-size: 1.5rem;
}

.audience-card h3 {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.3;
  color: #f8fafc;
  text-align: left;
}

body.theme-dark .audience-card h3 {
  color: #e5e7eb;
}

.audience-card p {
  font-size: 1.4rem;
  line-height: 1.65;
  color: #cbd5e1;
  text-align: left;
}

body.theme-dark .audience-card p {
  color: #9ca3af;
}

.audience-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.audience-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.3rem;
  line-height: 1.5;
  color: #94a3b8;
  text-align: left;
}

body.theme-dark .audience-bullets li {
  color: #9ca3af;
}

.audience-bullets ion-icon {
  font-size: 1.4rem;
  color: var(--c-accent);
}

/* GREEN LAKE – GALLERY STRIP */

.gl-gallery-strip {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 1.8rem;
}

.gl-gallery-main,
.gl-gallery-side {
  border-radius: 1.6rem;
  overflow: hidden;
  position: relative;
}

.gl-gallery-main img,
.gl-gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  transform-origin: center;
  transition: transform 0.6s ease;
}

.gl-gallery-main:hover img,
.gl-gallery-side:hover img {
  transform: scale(1.03);
}

.gl-gallery-badge {
  position: absolute;
  left: 1.6rem;
  bottom: 1.6rem;
  background: rgba(15, 23, 42, 0.82);
  color: #f9fafb;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.5);
}



/* --- THEME DARK: GREEN LAKE & SILVER LAKE SEKCIJE --- */
body.theme-dark .section-greenlake {
  background: transparent;
}

body.theme-dark .greenlake-content {
  color: #e5e7eb;
}

body.theme-dark .section-kicker {
  color: #fbbf24;
}

body.theme-dark .section-title {
  color: #ffffff;
}

body.theme-dark .section-text {
  color: #cbd5e1;
}

/* Silver Lake specific dark text colors */
body.theme-dark .silverlake-content {
  color: inherit;
}

.section-silverlake {
  background: #ffffff !important;
  border: 1px solid rgba(253, 199, 12, 0.2) !important;
  padding: 5rem 0;
}

.section-silverlake:hover {
  background: #f8f9fa !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
}

.section-silverlake .section-kicker {
  color: #fbbf24;
}

.section-silverlake .section-title {
  color: #1e293b;
}

.section-silverlake .section-text {
  color: #334155;
}

.section-silverlake .greenlake-list li span {
  color: #475569;
}

.section-silverlake .greenlake-list li {
  color: #475569;
}

.section-silverlake .link-inline {
  color: #fbbf24;
  border-color: rgba(253, 199, 12, 0.3);
}

body.theme-dark .greenlake-list li,
body.theme-dark .greenlake-list li span {
  color: #cbd5e1;
}

body.theme-dark .greenlake-list ion-icon {
  color: #fbbf24;
}

body.theme-dark .link-inline {
  color: #fbbf24;
}

body.theme-dark .link-inline:hover {
  color: #ff9500;
}

body.theme-dark .gl-gallery-strip {
  filter: brightness(0.95);
}

/* ============================================
   KOREKCIJA BOJA PO 60-30-10 PRAVILU
   60% Dominantna: Pozadina (#0f172a dark / #f8fafc light)
   30% Sekundarna: Tekst (#e5e7eb, #64748b)
   10% Accent: Narančasta #f97316 i Žuta #facc15
   ============================================ */

/* HERO SEKCIJA */
.section-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), #020617);
}

body.theme-dark .section-hero {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), #020617);
}

/* AUDIENCE SEKCIJA */
.section-audience {
  background: #f8fafc;
}

body.theme-dark .section-audience {
  background: radial-gradient(circle at top right, rgba(253, 199, 12, 0.12), transparent 55%), #020617;
}

/* FEATURED SEKCIJA */
.section-featured {
  background: #0f172a;
}

body.theme-dark .section-featured {
  background: radial-gradient(circle at top right, rgba(253, 199, 12, 0.10), transparent 60%), #0f172a !important;
}

/* PARTNERS SEKCIJA */
.section-partners {
  background: #ffffff;
}

body.theme-dark .section-partners {
  background: #020617;
}

/* ABOUT SEKCIJA */
.section-about {
  background: #f9fafb;
}

body.theme-dark .section-about {
  background: #0f172a;
}

/* ACHIEVEMENTS SEKCIJA */
.section-achievements {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), #020617);
}

body.theme-dark .section-achievements {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), #020617);
}

/* STAFF SEKCIJA */
.section-staff {
  background: #f9fafb;
}

body.theme-dark .section-staff {
  background: #0f172a;
}

/* GREEN LAKE & SILVER LAKE SEKCIJE */
.section-greenlake {
  background: transparent;
  padding: 5rem 0;
}

body.theme-dark .section-greenlake {
  background: transparent;
}

@media (max-width: 1200px) {
  .section-greenlake {
    padding: 4rem 0;
  }
}

@media (max-width: 900px) {
  .section-greenlake {
    padding: 3.5rem 0;
  }
}

/* PRICING SEKCIJA */
.section-pricing {
  background: #f9fafb;
}

body.theme-dark .section-pricing {
  background: #0f172a;
}

/* FAQ SEKCIJA */
.section-faq {
  background: #ffffff;
}

body.theme-dark .section-faq {
  background: #020617;
}

/* CTA SEKCIJA */
.section-cta {
  background: #ffffff;
}

body.theme-dark .section-cta {
  background: #0f172a;
}

/* FOOTER */
.site-footer,
.page-footer {
  background: #111827;
}

body.theme-dark .site-footer,
body.theme-dark .page-footer {
  background: #0a0f1b;
}

/* ============================================
   TEKSTUALNE BOJE - 30% SEKUNDARNA
   ============================================ */

/* Naslov boje */
.section-title,
.heading-primary {
  color: #0f172a;
}

body.theme-dark .section-title,
body.theme-dark .heading-primary {
  color: #ffffff;
}

/* Tekst boje */
.section-text {
  color: #64748b;
}

body.theme-dark .section-text {
  color: #cbd5e1;
}

/* Mala tekst (kicker) */
.section-kicker {
  color: #f97316;
}

body.theme-dark .section-kicker {
  color: #fbbf24;
}

/* ============================================
   ACCENT BOJE - 10% NARANDŽASTA & ŽUTA
   ============================================ */

/* Dugmadi - Primary */
.btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

/* Linkovi */
.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: rgba(253, 199, 12, 0.1);
  border: 1px solid rgba(253, 199, 12, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 1rem;
  color: #fbbf24;
  text-decoration: none;
}

.link-inline ion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

body.theme-dark .link-inline {
  color: #fbbf24;
}

.link-inline:hover {
  background: rgba(253, 199, 12, 0.2);
  border-color: rgba(253, 199, 12, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253, 199, 12, 0.2);
  color: #fbbf24;
}

.link-inline:hover ion-icon {
  transform: translateX(4px);
}

body.theme-dark .link-inline:hover {
  color: #fbbf24;
}

/* Ikonice */
ion-icon {
  color: #f97316;
}

body.theme-dark ion-icon {
  color: #fbbf24;
}

/* ============================================
   SPECIJALNE SEKCIJE
   ============================================ */

/* Za "Za koga je klub" kartice */
.audience-card {
  background: rgba(255, 255, 255, 0.9);
}

body.theme-dark .audience-card {
  background: rgba(15, 23, 42, 0.9);
}

/* Staff kartice */
.staff-card {
  background: #ffffff;
}

body.theme-dark .staff-card {
  background: rgba(15, 23, 42, 0.95);
}

/* Pricing kartice */
.pricing-card {
  background: #ffffff;
}

body.theme-dark .pricing-card {
  background: rgba(15, 23, 42, 0.95);
}

/* Event boxovi */
.event-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(253, 199, 12, 0.1);
}

body.theme-dark .event-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(253, 199, 12, 0.1);
}

.event-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(253, 199, 12, 0.25);
}
}




