/* =========================
   PAKETI PAGE
   Samo za paketi.html
========================= */

.packages-page {
  margin: 0;
  background: #22311D;
  color: #FAF8F4;
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
}

.packages-main {
  background: #22311D;
}

/* =========================
   HEADER FALLBACK
========================= */

.packages-page .site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 35px 40px;
  background: transparent;
}

.packages-page .header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.packages-page .logo img {
  height: 60px;
  width: auto;
  display: block;
}

.packages-page .main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 38px;
}

.packages-page .main-nav a {
  text-decoration: none;
  color: #FAF8F4;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}

.packages-page .header-right {
  display: flex;
  align-items: center;
}

.packages-page .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FAF8F4;
  border: 1px solid rgba(250, 248, 244, 0.75);
  background: rgba(250, 248, 244, 0.08);
  border-radius: 0;
  transition: all 0.35s ease;
}

.packages-page .header-cta:hover {
  background: #FAF8F4;
  color: #22311D;
}

/* =========================
   PAKETI HERO
========================= */

.packages-hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 70px 105px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 22, 14, 0.42) 50%, rgba(17, 22, 14, 0.78) 100%),
    url("../assets/packages/poyadina.jpg") center/cover no-repeat;
}

.packages-hero-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.75'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* =========================
   INTRO
========================= */

.packages-intro {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  margin: 0 auto 58px;
  text-align: center;
}

.packages-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 26px;
  border: 1px solid rgba(250, 248, 244, 0.45);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FAF8F4;
  margin-bottom: 24px;
}

.packages-intro h1 {
  margin: 0;
  font-family: 'FogtwoNo5', serif;
  font-size: clamp(4rem, 6.2vw, 6.8rem);
  font-weight: 400;
  line-height: 0.92;
  color: #FAF8F4;
}

.packages-intro p {
  max-width: 620px;
  margin: 24px auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  line-height: 1.45;
  color: rgba(250, 248, 244, 0.82);
}

/* =========================
   PACKAGE CARDS
========================= */

.packages-grid {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.package-card {
  position: relative;
  min-height: 690px;
  padding: 38px 34px 32px;
  display: flex;
  flex-direction: column;
  background: rgba(250, 248, 244, 0.96);
  color: #22311D;
  border: 1px solid rgba(250, 248, 244, 0.34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.package-card-featured {
  background: rgba(250, 248, 244, 0.18);
  color: #FAF8F4;
  border: 1px solid rgba(250, 248, 244, 0.46);
  backdrop-filter: blur(34px) saturate(135%);
  -webkit-backdrop-filter: blur(34px) saturate(135%);
  box-shadow:
    inset 0 1px 0 rgba(250, 248, 244, 0.26),
    inset 0 -1px 0 rgba(250, 248, 244, 0.08),
    0 34px 95px rgba(0, 0, 0, 0.34);
}

.package-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(250, 248, 244, 0.26), rgba(250, 248, 244, 0.04) 48%, rgba(250, 248, 244, 0.14)),
    radial-gradient(circle at 30% 12%, rgba(250, 248, 244, 0.20), rgba(250, 248, 244, 0) 38%);
}
.package-card-featured::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border: 1px solid rgba(250, 248, 244, 0.16);
}

.package-badge {
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  height: 42px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #799a58;
  color: #FAF8F4;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
}

.package-top,
.package-list,
.package-prices,
.package-btn {
  position: relative;
  z-index: 2;
}

.package-top {
  text-align: center;
}

.package-symbol {
  display: block;
  margin-bottom: 20px;
  font-size: 1.65rem;
  line-height: 1;
  color: currentColor;
}

.package-card h2 {
  margin: 0;
  font-family: 'FogtwoNo5', serif;
  font-size: clamp(2.25rem, 2.4vw, 2.75rem);
  font-weight: 400;
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.package-top p {
  min-height: 48px;
  max-width: 235px;
  margin: 18px auto 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.35;
  color: rgba(34, 49, 29, 0.76);
}

.package-card-featured .package-top p {
  color: rgba(250, 248, 244, 0.82);
}

.package-list {
  list-style: none;
  padding: 24px 0 0;
  margin: 0 0 26px;
  display: grid;
  gap: 9px;
  border-top: 1px solid rgba(34, 49, 29, 0.20);
}

.package-card-featured .package-list {
  border-top-color: rgba(250, 248, 244, 0.27);
}

.package-list li {
  position: relative;
  padding-left: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  line-height: 1.25;
  color: rgba(34, 49, 29, 0.86);
}

.package-card-featured .package-list li {
  color: rgba(250, 248, 244, 0.88);
}

.package-highlight {
  font-weight: 700;
  color: inherit;
}

.package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: currentColor;
}

.package-prices {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(34, 49, 29, 0.20);
  display: grid;
  gap: 8px;
}

.package-card-featured .package-prices {
  border-top-color: rgba(250, 248, 244, 0.27);
}

.package-prices div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  color: rgba(34, 49, 29, 0.82);
}

.package-card-featured .package-prices div {
  color: rgba(250, 248, 244, 0.88);
}

.package-prices strong {
  font-weight: 600;
}

.package-price-extra {
  margin-top: 5px;
  padding-top: 10px;
  border-top: 1px dashed rgba(34, 49, 29, 0.25);
}

.package-card-featured .package-price-extra {
  border-top-color: rgba(250, 248, 244, 0.30);
}

.package-btn {
  margin-top: 28px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22311D;
  color: #FAF8F4;
  border: 1px solid #22311D;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.package-btn:hover {
  background: transparent;
  color: #22311D;
}

.package-btn-light {
  background: #FAF8F4;
  color: #22311D;
  border-color: #FAF8F4;
}

.package-btn-light:hover {
  background: transparent;
  color: #FAF8F4;
}

/* =========================
   CUSTOM SECTION
========================= */

.packages-custom {
  position: relative;
  padding: 95px 70px;
  background: #E0CDB6;
  color: #22311D;
  overflow: hidden;
}

.packages-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.75'/%3E%3C/svg%3E");
  background-size: 170px 170px;
}

.packages-custom-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.packages-custom-title span {
  display: block;
  margin-bottom: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(34, 49, 29, 0.70);
}

.packages-custom-title h2 {
  margin: 0;
  font-family: 'FogtwoNo5', serif;
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.92;
  color: #22311D;
  text-transform: uppercase;
}

.packages-custom-text p {
  margin: 0 0 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  line-height: 1.48;
  color: rgba(34, 49, 29, 0.82);
}

.packages-custom-text a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 34px;
  background: #22311D;
  color: #FAF8F4;
  border: 1px solid #22311D;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.84rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.packages-custom-text a:hover {
  background: transparent;
  color: #22311D;
}

/* =========================
   FOOTER FALLBACK
========================= */

.packages-page .footer-section {
  position: relative;
  padding: 120px 70px;
  background: #22311D;
  color: #22311D;
  overflow: hidden;
}

.packages-page .footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.75'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.packages-page .footer-card {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  margin: 0 auto;
  background: #E0CDB6;
  color: #22311D;
  border: 1px solid rgba(250, 248, 244, 0.18);
}

.packages-page .footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 70px;
  padding: 56px 70px 52px;
}

.packages-page .footer-logo {
  width: 185px;
  height: auto;
  margin-bottom: 20px;
}

.packages-page .footer-brand p {
  max-width: 430px;
  margin: 0 0 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.45;
  color: rgba(34, 49, 29, 0.82);
}

.packages-page .footer-form {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 430px;
}

.packages-page .footer-form input {
  flex: 1;
  height: 44px;
  border: none;
  border-bottom: 1px solid rgba(34, 49, 29, 0.55);
  background: transparent;
  color: #22311D;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
}

.packages-page .footer-form button {
  height: 42px;
  padding: 0 28px;
  border: 1px solid #22311D;
  background: #22311D;
  color: #FAF8F4;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.35s ease;
}

.packages-page .footer-form button:hover {
  background: transparent;
  color: #22311D;
}

.packages-page .footer-links,
.packages-page .footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.packages-page .footer-links h4,
.packages-page .footer-contact h4 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.86rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #22311D;
}

.packages-page .footer-links a,
.packages-page .footer-contact a {
  width: fit-content;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(34, 49, 29, 0.78);
}

.packages-page .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 70px;
  border-top: 1px solid rgba(34, 49, 29, 0.35);
}

.packages-page .footer-bottom p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(34, 49, 29, 0.82);
}

.packages-page .footer-bottom div {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.packages-page .footer-bottom a {
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(34, 49, 29, 0.78);
}

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

@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .package-card {
    min-height: auto;
  }

  .packages-custom-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

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

  .packages-page .footer-section {
    padding: 80px 24px;
  }

  .packages-page .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 46px 34px;
  }

  .packages-page .footer-form {
    flex-direction: column;
    align-items: stretch;
  }

  .packages-page .footer-form button {
    width: 100%;
  }

  .packages-page .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 34px;
  }
}

@media (max-width: 768px) {
  .packages-hero {
    padding: 130px 24px 80px;
  }

  .packages-intro {
    margin-bottom: 48px;
  }

  .packages-intro h1 {
    font-size: 3.5rem;
  }

  .packages-intro p {
    font-size: 1.12rem;
  }

  .package-card {
    padding: 42px 28px 32px;
  }

  .packages-custom {
    padding: 75px 24px;
  }

  .packages-custom-text p {
    font-size: 1.14rem;
  }
}
/* =========================================================
   FULL RESPONSIVE OVERRIDES — PAKETI
========================================================= */

.packages-page .header-inner {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.packages-page .nav-toggle-light {
  border-color: rgba(250, 248, 244, 0.68);
  background: rgba(34, 49, 29, 0.18);
  color: #FAF8F4;
}

@media (max-width: 1180px) {
  .packages-page .site-header {
    padding: 26px 28px;
  }

  .packages-page .main-nav {
    gap: 24px;
  }

  .packages-page .main-nav a {
    font-size: 0.84rem;
    letter-spacing: 0.18em;
  }

  .packages-page .header-cta {
    padding-inline: 14px;
    font-size: 0.72rem;
  }
}

@media (max-width: 900px) {
  .packages-page .site-header {
    padding: 20px;
  }

  .packages-page .header-inner {
    min-height: 52px;
  }

  .packages-page .logo,
  .packages-page .nav-toggle {
    position: relative;
    z-index: 1002;
  }

  .packages-page .logo img {
    height: 52px;
  }

  .packages-page .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .packages-page .header-right {
    display: none;
  }

  .packages-page .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1000;
    transform: translateY(-18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 120px 28px 48px;
    background:
      linear-gradient(rgba(34, 49, 29, 0.97), rgba(20, 28, 17, 0.99)),
      #22311D;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.32s ease, visibility 0.32s ease, transform 0.32s ease;
  }

  .packages-page .main-nav::before {
    content: "BOOTH STUDIO";
    margin-bottom: 10px;
    font-family: 'FogtwoNo5', serif;
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    line-height: 0.9;
    color: rgba(250, 248, 244, 0.12);
  }

  .packages-page .main-nav a {
    color: #FAF8F4;
    font-size: 1.05rem;
    letter-spacing: 0.24em;
  }

  .packages-page .main-nav .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(330px, 100%);
    min-height: 52px;
    margin-top: 12px;
    border: 1px solid #FAF8F4;
    background: #FAF8F4;
    color: #22311D;
  }

  .packages-page.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .packages-hero {
    min-height: auto;
    padding: 132px 24px 92px;
    background-position: 58% center;
  }

  .packages-intro {
    margin-bottom: 54px;
  }

  .packages-intro h1 {
    font-size: clamp(3.5rem, 11vw, 5.5rem);
  }

  .packages-grid {
    max-width: 620px;
  }

  .package-card {
    min-height: auto;
  }

  .packages-custom {
    padding: 84px 24px;
  }

  .packages-custom-title h2 {
    font-size: clamp(3.1rem, 10vw, 5rem);
  }

  .packages-page .footer-section {
    padding: 74px 20px;
  }

  .packages-page .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
    padding: 42px 30px;
  }

  .packages-page .footer-brand {
    grid-column: 1 / -1;
  }

  .packages-page .footer-form {
    max-width: 100%;
  }

  .packages-page .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 30px;
  }
}

@media (max-width: 560px) {
  .packages-page .site-header {
    padding: 16px;
  }

  .packages-page .logo img {
    height: 46px;
  }

  .packages-hero {
    padding: 116px 16px 72px;
  }

  .packages-eyebrow {
    min-height: 34px;
    padding: 0 16px;
    font-size: 0.66rem;
    letter-spacing: 0.2em;
  }

  .packages-intro {
    margin-bottom: 44px;
  }

  .packages-intro h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .packages-intro p {
    margin-top: 20px;
    font-size: 1.05rem;
  }

  .packages-grid {
    gap: 34px;
  }

  .package-card {
    padding: 38px 22px 26px;
  }

  .package-badge {
    top: -18px;
    height: 36px;
    padding: 0 18px;
    font-size: 0.64rem;
  }

  .package-card h2 {
    font-size: 2.35rem;
  }

  .package-top p {
    min-height: 0;
    font-size: 0.98rem;
  }

  .package-list li,
  .package-prices div {
    font-size: 0.94rem;
  }

  .package-btn {
    height: 50px;
    font-size: 0.76rem;
  }

  .packages-custom {
    padding: 68px 18px;
  }

  .packages-custom-inner {
    gap: 28px;
  }

  .packages-custom-title h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .packages-custom-text p {
    font-size: 1.07rem;
  }

  .packages-custom-text a {
    width: 100%;
    padding: 0 18px;
  }

  .packages-page .footer-section {
    padding: 56px 14px;
  }

  .packages-page .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 36px 22px;
  }

  .packages-page .footer-brand {
    grid-column: auto;
  }

  .packages-page .footer-form {
    flex-direction: column;
    align-items: stretch;
  }

  .packages-page .footer-form button {
    width: 100%;
  }

  .packages-page .footer-bottom {
    padding: 22px;
  }

  .packages-page .footer-bottom div {
    flex-direction: column;
    gap: 10px;
  }
}
