/* =========================================================
   Bohu — Home 4 (static HTML/CSS conversion, no build tools)
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Felidae";
  font-style: normal;
  font-weight: normal;
  src:
    url("../src/fonts/felidae-regular.woff2") format("woff2"),
    url("../src/fonts/felidae-regular.woff") format("woff");
  font-display: swap;
}

/* ---------- Variables (mirrors src/sass/helpers/_variables.scss) ---------- */
:root {
  --heading-font: "Felidae", Georgia, serif;
  --base-font: "DM Sans", Arial, sans-serif;

  --dark-gray: #444444;
  --white: #fff;
  --black: #000;

  --theme-primary: #aa3758;
  --theme-primary-hover: #7f2841;
  --section-bg: #fff0e6;
  --text-color: #333;
  --text-light: #6b5a55;
  --heading-color: #000;
  --border-color: #e8d6c8;
}

/* ---------- JS-driven animations ---------- */
/* Scroll-reveal (fade + rise), toggled by script.js via IntersectionObserver.
   Elements are already visible if JS is disabled — see the no-js fallback below. */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* stagger cards inside a grid row */
.wpo-pricing-wrap .reveal:nth-child(2) {
  transition-delay: 0.15s;
}
.wpo-pricing-wrap .reveal:nth-child(3) {
  transition-delay: 0.3s;
}
.wpo-pricing-wrap .reveal:nth-child(4) {
  transition-delay: 0.45s;
}

/* Hero text entrance on page load */
.hero-anim {
  opacity: 0;
  transform: translateY(25px);
  animation: heroIn 1.1s ease 0.2s forwards;
}
@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header goes solid once the page has scrolled (class added by script.js) */
.wpo-site-header {
  transition: box-shadow 0.35s ease;
}
.wpo-site-header.scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Back-to-top fades in only after scrolling (class added by script.js);
   .no-js keeps it visible so the link still works without JavaScript. */
.scroll-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.scroll-top.show,
.no-js .scroll-top {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ---------- Reset / base ---------- */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--base-font);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--heading-font);
  font-weight: 400;
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-fluid {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  max-width: 930px;
  margin: 0 auto 20px;
}
.section-title h2 {
  font-size: 70px;
  margin-bottom: 12px;
}
.section-title p {
  font-size: 20px;
  color: var(--text-color);
}
@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 55px;
  }
  .section-title p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 45px;
  }
  .section-title {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .section-title h2 {
    font-size: 32px;
  }
  .section-title p {
    font-size: 16px;
  }
}

.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  z-index: 1;
  background: var(--theme-primary);
  color: #fff;
  border: 0;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  transition: color 0.3s;
}
.theme-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-primary-hover);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}
.theme-btn:hover::after {
  transform: scaleY(1);
  transform-origin: top;
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}

/* =========================================================
   Header
   ========================================================= */
.wpo-site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #18181c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.wpo-site-header .navigation {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  height: 100%;
}
.navbar-brand a {
  display: flex;
  align-items: center;
  height: 100%;
}
.navbar-brand img {
  height: 80%;
  width: auto;
}
@media (max-width: 991px) {
  .navbar-brand img {
    height: 76px;
  }
}
@media (max-width: 767px) {
  .navbar-brand img {
    height: 64px;
  }
}

.site-navbar > ul {
  display: flex;
  align-items: center;
}
.site-navbar > ul > li > a {
  display: block;
  padding: 30px 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s;
}
.site-navbar > ul > li > a:hover {
  color: rgba(255, 255, 255, 0.75);
}
.site-navbar > ul > li > a.active {
  color: var(--theme-primary);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-right button {
  background: none;
  border: 0;
  color: #fff;
  padding: 0;
  line-height: 0;
}

/* mobile menu (checkbox-driven) */
.menu-toggle-input {
  display: none;
}
.menu-toggle-btn {
  display: none;
  color: #fff;
  background: none;
  border: 0;
}
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: var(--theme-primary-hover);
  z-index: 999;
  overflow-y: auto;
  transition: left 0.35s ease;
}
.mobile-menu-close {
  display: block;
  width: 40px;
  height: 40px;
  margin: 24px 24px 10px auto;
  border: 1px solid #fff;
  color: #fff;
  background: none;
  text-align: center;
  line-height: 38px;
}
.mobile-menu ul li a {
  display: block;
  padding: 14px 30px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-menu ul li a.active {
  color: var(--black);
  font-weight: 700;
}

.menu-toggle-input:checked ~ .mobile-menu {
  left: 0;
}
.menu-toggle-input:checked ~ .menu-overlay {
  display: block;
}

@media (max-width: 991px) {
  .wpo-site-header .navigation {
    padding: 15px 20px;
    height: auto;
  }
  .site-navbar {
    display: none;
  }
  .menu-toggle-btn {
    display: block;
  }
}

/* =========================================================
   Hero
   ========================================================= */
.wpo-hero-static {
  position: relative;
  width: 100%;
  height: 950px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wpo-hero-static::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.slide-content h2 {
  color: #fff;
  font-size: 90px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.slide-content p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .wpo-hero-static {
    height: 750px;
  }
  .slide-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .wpo-hero-static {
    height: 600px;
  }
  .slide-content h2 {
    font-size: 46px;
  }
}
@media (max-width: 575px) {
  .wpo-hero-static {
    height: 480px;
    background-position: center top;
  }
  .slide-content h2 {
    font-size: 30px;
  }
  .slide-content p {
    font-size: 16px;
  }
}

/* =========================================================
   About
   ========================================================= */
.wpo-about-section {
  position: relative;
  z-index: 11;
  padding: 0 20px;
  margin-top: -100px;
}
.wpo-about-wrap {
  background: #fff;
  box-shadow: 0 2px 12px 2px rgba(4, 0, 52, 0.1);
  max-width: 1720px;
  margin: 0 auto;
  padding: 20px 60px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  transform: translateY(-50%);
  border-radius: 10px;
}
.about-right-img {
  flex: 0 0 240px;
  width: 240px;
  aspect-ratio: 1 / 1;
  margin-top: -120px;
  border-radius: 50%;
  border: 6px solid #fff;
  overflow: hidden;
  background: #18181c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.about-right-img img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.wpo-about-text {
  flex: 1 1 auto;
}
.wpo-about-text p {
  color: #5c5c5c;
  font-size: 17px;
  line-height: 32px;
}
.about-info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0px;
}
.about-info h5 {
  font-family: var(--base-font);
  font-size: 28px;
}
.about-info span {
  font-size: 18px;
  color: var(--text-light);
}
.about-sign img {
  height: 55px;
}

.about-social {
  flex: 0 0 auto;
  align-self: stretch;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  border-left: 1px solid #d9d9d9;
}
.about-social ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-social a {
  width: 45px;
  height: 45px;
  border: 1px solid #707070;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #707070;
  transition: all 0.3s;
}
.about-social a:hover {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
  color: #fff;
}

@media (max-width: 1199px) {
  .wpo-about-wrap {
    padding: 40px 25px;
    gap: 25px;
  }
}
@media (max-width: 991px) {
  .wpo-about-section {
    padding-top: 60px;
  }
  .wpo-about-wrap {
    flex-direction: column;
    text-align: center;
    max-width: 700px;
    transform: translateY(-40px) !important;
  }
  .about-right-img {
    flex-basis: 160px;
    width: 160px;
    margin-top: -80px;
  }
  .about-social {
    border-left: 0;
    padding-left: 0;
    padding-top: 20px;
  }
  .about-social ul {
    flex-direction: row;
    justify-content: center;
  }
  .about-info-wrap {
    flex-direction: column;
    gap: 16px;
  }
}

/* =========================================================
   Quote
   ========================================================= */
.wpo-quote-section-s3 {
  padding: 50px 20px;
  text-align: center;
}
.quote-title h2 {
  font-size: 80px;
  margin-bottom: 20px;
}
.quote-title p {
  max-width: 1060px;
  margin: 0 auto;
  font-size: 18px;
}
.quote-btn {
  padding-top: 50px;
}
.quote-btn .theme-btn {
  box-shadow: -10px -10px 20px 0 rgba(119, 119, 119, 0.15);
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .quote-title h2 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .wpo-quote-section-s3 {
    padding: 35px 2px;
  }
  .quote-title h2 {
    font-size: 46px;
  }
}
@media (max-width: 575px) {
  .quote-title h2 {
    font-size: 32px;
  }
  .quote-btn {
    padding-top: 30px;
  }
}

/* =========================================================
   Video
   ========================================================= */
.wpo-video-section {
  position: relative;
  background: #fff0e6;
  padding: 35px 0px;
}
.video-grid-wrap {
  max-width: 1300px;
  margin: 0 auto;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.video-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}
.video-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 1;
}
.wpo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

@media (max-width: 767px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .wpo-video-section {
    padding: 60px 16px;
  }
  .video-image {
    border-radius: 12px;
  }
}

/* =========================================================
   Pricing (large-circle pill cards)
   ========================================================= */
.wpo-pricing-section {
  padding-bottom: 90px;
}

.pricing-bg-image {
  position: relative;
  height: 660px;
  background-size: cover;
  background-position: center;
}
.pricing-bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.pricing-bg-title {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 0;
}
.pricing-bg-title h2 {
  color: #fff;
  font-size: 60px;
  margin-bottom: 12px;
}
.pricing-bg-title p {
  color: #fff;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.wpo-pricing-wrap {
  max-width: 1720px;
  /* pulls cards up into the banner above — bounded well under the
     banner's own height (660px), so it can only overlap this
     section's own banner and can never reach sections above it */
  margin: -360px auto 0;
  position: relative;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.wpo-pricing-item {
  border-radius: 200px 200px 10px 10px;
  background: #fff0e6;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}
.pricing-image {
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
}
.pricing-image img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.wpo-pricing-item:hover .pricing-image img {
  transform: scale(1.1);
}

.wpo-pricing-top {
  text-align: center;
  padding: 10px 20px 5px;
  border-bottom: 1px solid var(--border-color);
}
.wpo-pricing-top h4 {
  font-family: var(--heading-font);
  font-size: 29px;
  font-weight: 400;
  color: #101010;
}

.wpo-pricing-bottom {
  text-align: center;
  padding: 10px 20px 0;
}
.wpo-pricing-bottom p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 27px;
  margin: 0;
  padding: 0 75px;
}

@media (max-width: 1199px) {
  .wpo-pricing-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-bg-title h2 {
    font-size: 46px;
  }
  .wpo-pricing-bottom p {
    padding: 0 30px;
  }
}
@media (max-width: 991px) {
  .wpo-pricing-wrap {
    margin-top: -110px;
  }
  .pricing-bg-image {
    height: 420px;
  }
  .pricing-bg-title {
    padding-top: 50px;
  }
  .pricing-bg-title h2 {
    font-size: 38px;
  }
  .pricing-bg-title p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .wpo-pricing-wrap {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-top: -80px;
  }
  .pricing-bg-image {
    height: 340px;
  }
  .pricing-bg-title {
    padding-top: 40px;
  }
  .pricing-bg-title h2 {
    font-size: 28px;
  }
  .wpo-pricing-bottom p {
    padding: 0 10px;
  }
}

/* =========================================================
   RSVP / Contact
   ========================================================= */
.wpo-contact-section-s3 {
  padding: 180px 20px;
}
.contact-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.shape-1,
.shape-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  opacity: 0.85;
  z-index: 2;
}
.shape-1 {
  left: -150px;
}
.shape-2 {
  right: -150px;
}
.wpo-contact-form-area {
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
  padding: 60px 50px;
}
.wpo-contact-form-area .section-title h2 {
  font-size: 38px;
  margin-bottom: 0px;
}

.rsvp-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.rsvp-form .full-width {
  grid-column: 1 / -1;
}
.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  height: 50px;
  border: 1px solid var(--border-color);
  padding: 6px 16px;
  font-size: 15px;
  color: #555;
  background: #fff;
}
.rsvp-form textarea {
  height: auto;
  padding: 14px 16px;
}
.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  outline: none;
  border-color: var(--theme-primary);
}
.rsvp-form input.is-invalid,
.rsvp-form select.is-invalid,
.rsvp-form textarea.is-invalid {
  border-color: #c62828;
}
.rsvp-submit {
  text-align: center;
  margin-top: 10px;
}
.rsvp-submit .theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.rsvp-submit .theme-btn:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.btn-spinner {
  display: none;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
}
.rsvp-submit .theme-btn.is-loading .btn-spinner {
  display: inline-block;
}
@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.form-status {
  margin: 14px 0 0;
  font-size: 15px;
}
.form-status.is-success {
  color: #2e7d32;
}
.form-status.is-error {
  color: #c62828;
}

@media (max-width: 1199px) {
  .shape-1,
  .shape-2 {
    display: none;
  }
}
@media (max-width: 991px) {
  .wpo-contact-section-s3 {
    padding: 0px 0px;
  }
  .wpo-contact-form-area {
    box-shadow: none;
  }
}
@media (max-width: 575px) {
  .wpo-contact-form-area {
    padding: 40px 22px;
  }
  .wpo-contact-form-area .section-title h2 {
    font-size: 26px;
  }
  .rsvp-form {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Footer
   ========================================================= */
.wpo-site-footer {
  background: #fff0e6;
}
.wpo-upper-footer {
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 20px 0;
  display: grid;
  grid-template-columns: 7fr 2fr 3fr;
  gap: 40px;
}
.footer-title-left h2 {
  color: #000;
  font-size: 40px;
  max-width: 678px;
}
.widget-title h3 {
  color: #000;
  font-size: 24px;
  margin-bottom: 20px;
}
.link-widget ul li {
  padding-bottom: 12px;
  color: var(--text-light);
}
.link-widget a {
  color: var(--text-light);
  transition: color 0.3s;
}
.link-widget a:hover {
  color: var(--theme-primary);
  text-decoration: underline;
}

.wpo-lower-footer {
  max-width: 1320px;
  margin: 0px auto 0;
  border-top: 1px solid var(--border-color);
  padding: 0px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.copyright {
  color: var(--theme-primary);
  font-size: 16px;
}
.copyright a {
  color: var(--theme-primary);
  text-decoration: underline;
}

@media (max-width: 991px) {
  .wpo-upper-footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 20px;
    gap: 20px;
  }
  .wpo-lower-footer {
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
    padding: 0px;
  }
  .footer-title-left h2 {
    padding-bottom: 10px;
  }
}

/* =========================================================
   QR Galerija (standalone page — dark landing hero)
   ========================================================= */
.qr-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 20px 60px;
  background: #000;
}
.qr-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.qr-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.qr-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.qr-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 9px 20px 9px 16px;
  color: #f2c9d3;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.qr-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--theme-primary);
  display: inline-block;
}

.qr-hero-text h1 {
  font-family: var(--base-font);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 22px;
  max-width: 640px;
}
.qr-hero-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 34px;
}

.qr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}
.qr-btn-primary,
.qr-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
}
.qr-btn-primary {
  background: var(--theme-primary);
  color: #18181c;
}
.qr-btn-primary:hover {
  background: var(--theme-primary-hover);
  color: #fff;
}
.qr-btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 600;
}
.qr-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.qr-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}
.qr-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  padding: 9px 16px;
  color: #fff;
  font-size: 14px;
}
.qr-trust svg {
  color: var(--theme-primary);
  flex-shrink: 0;
}

.qr-stats {
  display: flex;
  gap: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 15px;
  max-width: 50%;
}
.qr-stats h3 {
  font-family: var(--base-font);
  font-weight: 800;
  font-size: 32px;
  color: #fff;
  margin-bottom: 4px;
}
.qr-stats p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

@media (max-width: 1199px) {
  .qr-hero-text h1 {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  .qr-hero {
    padding-top: 130px;
  }
  .qr-hero-text h1 {
    font-size: 32px;
  }
  .qr-stats {
    gap: 30px;
  }
}

/* Kicker label used above the "Kako funkcioniše" / "Za koje događaje" titles */
.qr-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--theme-primary-hover);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.qr-kicker span {
  width: 30px;
  height: 1px;
  background: var(--theme-primary-hover);
  display: inline-block;
}

/* Kako funkcioniše */
.qr-steps {
  background: var(--section-bg);
  padding: 50px 20px;
}
.qr-steps-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.qr-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.qr-step-item {
  max-width: 340px;
  margin: 0 auto;
}
.qr-step-icon {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: var(--theme-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.qr-step-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--theme-primary-hover);
  margin-bottom: 10px;
}
.qr-step-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
}
.qr-step-item p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
}
.qr-steps-cta {
  margin-top: 50px;
}
.qr-step-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--theme-primary);
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.3s;
}
.qr-step-btn:hover {
  background: var(--theme-primary-hover);
}
@media (max-width: 991px) {
  .qr-steps-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* Za koje događaje */
.qr-events {
  padding: 50px 20px;
}
.qr-events-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.qr-events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}
.qr-event-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px 24px;
}
.qr-event-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}
.qr-event-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .qr-events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .qr-steps,
  .qr-events {
    padding: 70px 20px;
  }
  .qr-events-grid {
    grid-template-columns: 1fr;
  }
}

/* SEO i pomoć (FAQ) */
.qr-faq {
  padding: 50px 20px;
}
.qr-faq-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.qr-faq-text h2 {
  font-size: 40px;
  margin-bottom: 22px;
}
.qr-faq-text p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.qr-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.qr-faq-item {
  background: #fdf6f1;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 24px 28px;
}
.qr-faq-item h4 {
  font-size: 19px;
  margin-bottom: 8px;
}
.qr-faq-item p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .qr-faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .qr-faq {
    padding: 70px 20px;
  }
  .qr-faq-text h2 {
    font-size: 30px;
  }
}

/* Zašto QR galerija (benefits) */
.qr-benefits {
  background: var(--section-bg);
  padding: 50px 20px;
}
.qr-benefits-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.qr-benefits-inner h2 {
  font-size: 40px;
  margin-bottom: 16px;
}
.qr-benefits-lead {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 50px;
}
.qr-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.qr-benefit-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.06);
}
.qr-benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f7dbe1;
  color: var(--theme-primary-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.qr-benefit-card h4 {
  font-size: 19px;
  margin-bottom: 10px;
}
.qr-benefit-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .qr-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .qr-benefits {
    padding: 70px 20px;
  }
  .qr-benefits-inner h2 {
    font-size: 28px;
  }
  .qr-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Back to top
   ========================================================= */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--theme-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 50;
  transition: background 0.3s;
}
.scroll-top:hover {
  background: var(--theme-primary-hover);
}

/* =========================================================
   Galerija Page Styles
   ========================================================= */
.gallery-hero {
  position: relative;
  padding: 140px 20px 70px;
  background: #18181c;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.gallery-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: blur(2px);
}
.gallery-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  padding: 8px 20px;
  color: #f2c9d3;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.gallery-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--theme-primary);
  display: inline-block;
}
.gallery-hero h1 {
  font-family: var(--base-font);
  font-weight: 800;
  font-size: 52px;
  margin-bottom: 18px;
  color: #fff;
  line-height: 1.15;
}
.gallery-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
}

/* Gallery Main Section with warm orange-brown theme background */
.gallery-main-section {
  background: var(--section-bg); /* Warm orange-brown / peach #fff0e6 */
  padding: 150px 20px 100px;
  min-height: 70vh;
}
.gallery-container {
  max-width: 1320px;
  margin: 0 auto;
}

/* Filter controls */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 45px;
}
.gallery-filter-btn {
  background: #fff;
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--theme-primary);
  color: #fff;
  border-color: var(--theme-primary);
  box-shadow: 0 4px 14px rgba(170, 55, 88, 0.3);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    opacity 0.4s ease;
}
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.gallery-card-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 72%; /* 4:3 Aspect Ratio */
  overflow: hidden;
}
.gallery-card-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-card-img-wrap img {
  transform: scale(1.08);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24, 24, 28, 0.9) 0%,
    rgba(24, 24, 28, 0.2) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-tag {
  align-self: flex-start;
  background: var(--theme-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gallery-card-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.gallery-card-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}
.gallery-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.gallery-card:hover .gallery-card-icon {
  transform: scale(1);
}

/* Lightbox Modal */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  margin-top: 16px;
  text-align: center;
  color: #fff;
}
.lightbox-caption h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}
.lightbox-caption p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--theme-primary);
}

.lightbox-close {
  top: -45px;
  right: 0;
  width: 40px;
  height: 40px;
}
.lightbox-prev {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.lightbox-next {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

/* Gallery CTA Banner */
.gallery-cta-section {
  background: #fdf6f1;
  border-top: 1px solid var(--border-color);
  padding: 80px 20px;
  text-align: center;
}
.gallery-cta-inner {
  max-width: 750px;
  margin: 0 auto;
}
.gallery-cta-inner h2 {
  font-size: 38px;
  margin-bottom: 16px;
  color: var(--heading-color);
}
.gallery-cta-inner p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .gallery-hero h1 {
    font-size: 40px;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  .gallery-main-section {
    padding-top: 130px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}

@media (max-width: 575px) {
  .gallery-hero {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .gallery-hero h1 {
    font-size: 30px;
  }
  .gallery-main-section {
    padding: 110px 15px 70px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-filter-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* =========================================================
   Social Networks (link-in-bio) page
   ========================================================= */
.social-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.social-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.social-page-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
}
.social-logo {
  display: inline-block;
  margin-bottom: 0px;
}
.social-logo img {
  width: 260px;
  max-width: 80vw;
  height: auto;
  margin: 0 auto;
}
.social-tagline {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 0px;
}
.social-tagline em {
  color: var(--theme-primary);
  font-style: italic;
}
.social-box {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  padding: 26px;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 12px 22px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.social-link:hover {
  background: var(--theme-primary);
  border-color: var(--theme-primary);
  transform: translateY(-2px);
}
.social-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--theme-primary);
  color: var(--theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.social-link:hover .social-icon {
  background: #fff;
  color: var(--theme-primary);
}

@media (max-width: 575px) {
  .social-logo img {
    width: 200px;
  }
  .social-tagline {
    font-size: 19px;
    margin-bottom: 30px;
  }
  .social-box {
    padding: 18px;
    border-radius: 20px;
  }
  .social-link {
    padding: 10px 18px;
    font-size: 15px;
  }
  .social-icon {
    width: 36px;
    height: 36px;
  }
}
