/* =========================
   PAGE LAYOUT (BEM: .page)
   ========================= */
.page {
  min-height: 100vh;
}

.page__inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-page-bg);
}

.page__main {
  flex: 1 0 auto; /* main raste, footer ostaje na dnu */
}

/* =========================
   HEADER (BEM: .site-header)
   ========================= */

.site-header {
  position: relative;
  background-color: var(--color-brown-bg);
  padding: var(--header-padding-y) var(--page-padding-x);
  display: flex;
  justify-content: center; /* logo u sredini */
  align-items: center;
}

/* Logo blok u sredini headera */
.site-header__logo {
  text-align: center;
  color: var(--color-gold);
}

/* Privremeni “logo krug” – kasnije zamijeni slikom/SVG-om */
.site-header__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  font-family: var(--font-serif);
  font-size: 40px;
  margin: 0 auto 12px auto;
}

/* “Privé Concierge” skript */
.site-header__logo-text {
  font-family: var(--font-script);
  font-size: 32px;
}

/* HR / EN – vertikalno desno */
.site-header__languages {
  position: absolute;
  right: var(--page-padding-x);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-header__lang {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.site-header__lang--active {
  opacity: 1;
}

.site-header__lang:hover {
  opacity: 1;
}

/* =========================
   HERO (BEM: .hero)
   ========================= */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* da ništa ne viri izvan hero-a */
}

/* <picture> kao full-screen pozadina */

.hero__media {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* reže višak, ne rasteže sliku */
  display: block;
}

/* Tamni overlay preko slike – radi čitljivosti teksta */

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 1;
  pointer-events: none;
}

/* Wrapper za sadržaj hero sekcije */

.hero__inner {
  position: relative;
  z-index: 2; /* iznad slike + overlaya */
  padding: 40px 20px;
  max-width: var(--container-width);
}

/* H1 naslov preko slike */

.hero__title {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(40px, 5vw + 24px, 96px);
  color: var(--color-gold);
  font-weight: 400;
}

/* =========================
   ABOUT SECTION (tekst + portret)
   ========================= */

.about {
  padding: 80px var(--page-padding-x);
  background-color: var(--color-brown-bg);
}

.about__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Lijeva kolona – tekst */

.about__content {
  color: var(--color-text-light);
}

.about__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
}

.about__title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.about__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Gumb */

.about__button {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 28px;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  color: var(--color-gold);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.about__button:hover {
  background-color: var(--color-gold);
  color: #000;
}

/* Desna kolona – portret Monike */

.about__media {
  display: flex;
  justify-content: center;
}

.about__figure {
  margin: 0;
  text-align: center;
  position: relative;
}

.about__photo {
  display: block;
  max-width: 360px; /* možeš spustiti na 340px ili dignuti na 380px po osjećaju */
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.85));
}

/* suptilan glow iza portreta */
.about__figure::before {
  content: "";
  position: absolute;
  inset: -6% 12% auto;
  height: 60%;
  margin: 0 auto;
  background: radial-gradient(
    circle at center,
    rgba(255, 240, 220, 0.07),
    transparent 70%
  );
  z-index: -1;
}

/* ime ispod slike */

.about__name {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
}

.about__name::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 10px auto 0;
  background: linear-gradient(to right, transparent, #dfc297, transparent);
  opacity: 0.85;
}

/* Responsive – stack na manjim ekranima */

@media (max-width: 900px) {
  .about {
    padding: 64px var(--page-padding-x);
  }

  .about__inner {
    grid-template-columns: 1fr;
    row-gap: 40px;
    text-align: center;
  }

  .about__content {
    text-align: center;
  }

  .about__media {
    order: -1; /* portret iznad teksta na mobitelu; makni ovu liniju ako ne želiš */
  }
}

/* =========================
   / ABOUT SECTION
   ========================= */
/* =========================
   GALLERY (3 ambijenta)
   ========================= */

.venue-gallery {
  padding: 56px var(--page-padding-x) 64px;
  background: radial-gradient(
      circle at top,
      rgba(0, 0, 0, 0.55),
      transparent 55%
    ),
    #000;
}

.venue-gallery__inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.venue-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.venue-gallery__item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.7);
}

/* slika */

.venue-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0.96;
}

/* suptilan overlay + hover efekt */

.venue-gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.venue-gallery__item:hover .venue-gallery__image {
  transform: scale(1.06);
  opacity: 1;
}
/* =========================
   / GALLERY (3 ambijenta)
   ========================= */

/* =========================
   HIGHLIGHTS (section s ikonama)
   ========================= */

.highlights {
  position: relative;
  padding: 80px var(--page-padding-x);
  color: var(--color-text-light);
  overflow: hidden;
}

/* Pozadinska slika / overlay */
.highlights__bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
    image-set(
      url("../img/highlights/bckg-section-1920.webp") type("image/webp"),
      url("../img/highlights/bckg-section-1920.jpg") type("image/jpeg")
    );

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
}

/* Glavni container */
.highlights__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Header */

.highlights__header {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.highlights__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-soft);
}

.highlights__title {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.highlights__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

/* Grid s ikonama */

.highlights__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.highlights__item {
  padding: 18px 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

/* Ikona */

.highlights__icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.highlights__icon {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Naslov i tekst po ikoni */

.highlights__item-title {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.highlights__item-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* =========================
   / HIGHLIGHTS SECTION
   ========================= */

/* =========================
   CONTACT (kontakt + usluge)
   ========================= */

/* =========================
   CONTACT (kontakt + usluge) – SVJETLA VERZIJA
   ========================= */

.contact {
  padding: 80px var(--page-padding-x) 88px;
  background-color: #f4efe9; /* svijetla topla bež / cappuccino */
  color: #201a15; /* tamna, topla – za tekst */
}

.contact__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 48px;
  align-items: flex-start;
}

/* Lijeva kolona */

.contact__content {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* >>> ovo centira po vertikali <<< */
  height: 100%; /* osigurava puni visinu kolone */
}

.contact__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a28a66; /* topla zlatno-smeđa, umjesto hladne sive */
}

.contact__title {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #201a15;
}

.contact__text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #5f574d; /* topla siva za tekst */
}

/* Email kao glavni CTA */

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.contact__email::before {
  content: "✉";
  font-size: 14px;
}

.contact__email:hover {
  color: #8b6a33;
  border-color: #8b6a33;
  opacity: 0.9;
}

/* Desna kolona – lista usluga */

.contact__services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__service {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(55, 45, 35, 0.16); /* blaga tamna linija */
}

.contact__service:last-child {
  border-bottom: none;
}

.contact__service-title {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b6a33; /* topla “zlatno-smeđa” */
}

.contact__service-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #5f574d;
}

/* =========================
   / CONTACT (kontakt + usluge)
   ========================= */

/* =========================
   CTA FINAL – PANEL FULL HEIGHT
   ========================= */

.cta-final {
  position: relative;
  min-height: 420px; /* može i više ako želiš */
  color: #f5f2ea;
  overflow: hidden;
  display: flex;
}

/* Pozadinska slika – covers whole section */
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Panel ide cijelom visinom */
.cta-final__panel {
  position: relative;
  z-index: 2;
  width: 45%; /* širina panela lijevo – po želji */
  background-color: rgba(74, 45, 30, 0.82);
  display: flex;
  align-items: center; /* vertikalno centriranje */
  padding: 60px var(--page-padding-x);

  width: 100%;
  max-width: 520px;
  margin-left: 5rem;
  margin-right: 5rem;
}

/* Unutarnja kolona */
.cta-final__panel-inner {
  max-width: 420px;
}

/* Tekst */
.cta-final__title {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.35;
}

.cta-final__text {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
}

/* Link */
.cta-final__link {
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #e7f0f4;
}

.cta-final__link:hover {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .cta-final {
    flex-direction: column;
    min-height: unset;
  }

  .cta-final__panel {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 32px;
    background-color: rgba(74, 45, 30, 0.75); /* malo svjetlije za mob/tablet */
  }

  .cta-final__panel-inner {
    text-align: center; /* >>> centrira sav tekst <<< */
    margin: 0 auto;
  }

  .cta-final__title {
    font-size: 24px;
  }
}

/* =========================
   / CTA FINAL
   ========================= */
/* =========================
   TESTEMONIALS
   ========================= */
.section-testimonial {
  background: #2f2722;
  color: var(--testimonial-text, #f2ede8);
  padding: 6.4rem 0;
  text-align: center;
  position: relative;
}

.section-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.testimonial-text {
  font-size: 1.3rem;
  line-height: 1.6;
  font-style: italic;
  font-weight: 300;
  max-width: 70rem;
  margin: 0 auto 2.4rem;
  color: inherit;
}
.testimonial-author-name {
  display: block;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.testimonial-author-meta {
  font-size: 1rem;
  opacity: 0.75;
}

/* =========================
   / TESTEMONIALS
   ========================= */

/* =========================
   FOOTER (BEM: .site-footer)
   ========================= */

.site-footer {
  flex-shrink: 0;
  padding: 16px var(--page-padding-x);
  background-color: #000000;
  color: var(--color-text-muted);
  font-size: 12px;
}

.site-footer__inner {
  max-width: var(--container-width);
  margin: 0 auto;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.site-footer__right {
  display: flex;
  gap: 20px;
}

.site-footer__right a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-footer__right a:hover {
  color: var(--color-gold);
  opacity: 0.9;
}

/* =========================
  / FOOTER 
   ========================= */
/* =========================
   LEGAL 
   ========================= */

.legal {
  padding: 80px var(--page-padding-x);
  background: #000;
  color: var(--color-text-light);
}

.legal__inner {
  max-width: 720px;
  margin: 0 auto;
}

.legal h1 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.legal p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}
/* =========================
  / LEGAL 
   ========================= */
/* =========================
   COOKIE BANNER
   ========================= */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.92);
  border-top: 1px solid rgba(209, 176, 122, 0.35); /* zlatna nijansa */
  color: var(--color-text-light);
  font-size: 13px;
  transform: translateY(0);
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner--hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 12px var(--page-padding-x);
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-banner__text {
  margin: 0;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.cookie-banner__button {
  margin-left: auto;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.cookie-banner__button:hover {
  background-color: var(--color-gold);
  color: #000;
}

/* =========================
  / COOKIE BANNER
   ========================= */
