/* =============================================
   ICONIC Design Studio — Shared Stylesheet
   ============================================= */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #111;
  color: #fff;
  overflow-x: hidden;
}
::selection { background: #b07242; color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #b07242; }

/* ── NAVBAR ── */
.site-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: linear-gradient(to bottom, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.0) 100%);
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
  padding: 0 2.5rem;
}
.site-nav.scrolled {
  background: rgba(13,13,13,.97);
  border-bottom-color: #1e1e1e;
  backdrop-filter: blur(14px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 150px;
}
.nav-logo {
  filter: brightness(0) invert(1);
  height: 142px;
  width: auto;
  display: block;
  transition: opacity .3s;
}
.nav-logo:hover { opacity: .8; }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  position: relative;
  font-size: .82rem; letter-spacing: 2.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff; text-decoration: none;
  padding-bottom: 5px;
  transition: color .3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #b07242;
  transition: width .3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: #b07242; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,.55); border-radius: 50px;
  padding: 10px 26px; background: rgba(255,255,255,.08); text-decoration: none;
  transition: background .3s ease, color .3s ease, border-color .3s ease; white-space: nowrap;
  backdrop-filter: blur(6px);
}
.nav-cta:hover {
  background: #b07242;
  border-color: #b07242;
  color: #fff;
}
.site-nav.scrolled .nav-cta {
  color: #b07242;
  border-color: #b07242;
  background: transparent;
}
.site-nav.scrolled .nav-cta:hover {
  background: #b07242;
  color: #fff;
}

.nav-toggler {
  display: none; background: transparent;
  border: 1px solid #333; border-radius: 4px;
  padding: 7px 10px; cursor: pointer;
}
.nav-toggler span {
  display: block; width: 22px; height: 2px;
  background: #fff; margin: 4px 0;
  transition: all .3s ease;
}
.mobile-menu {
  display: none; background: #111;
  border-top: 1px solid #1e1e1e;
  padding: 1.5rem 2.5rem;
}
.mobile-menu .nav-links { flex-direction: column; align-items: flex-start; gap: 20px; }
.mobile-menu .nav-cta { margin-top: 1rem; display: inline-block; }
.mobile-menu.open { display: block; }

@media (max-width: 991.98px) {
  .desktop-links { display: none !important; }
  .nav-toggler { display: block; }
  .site-nav { padding: 0 1.5rem; }
  .nav-inner { height: 68px; }
  .nav-logo { height: 52px; }
}
@media (min-width: 992px) {
  .nav-toggler { display: none; }
  .mobile-menu { display: none !important; }
}

/* ── FOOTER ── */
footer {
  background: #0d0d0d;
  border-top: 1px solid #1e1e1e;
  padding: 4.5rem 0 2rem;
}
.footer-logo {
  height: 76px;
  filter: brightness(0) invert(1);
  opacity: .45;
  margin-bottom: 1.5rem;
  display: block;
}
.footer-tagline { font-size: .78rem; color: #555; letter-spacing: 1px; margin-bottom: 2rem; }
.footer-socials a { color: #555; font-size: 1.1rem; margin-right: 1rem; transition: color .3s ease; }
.footer-socials a:hover { color: #b07242; }
.footer-copyright {
  font-size: .72rem; color: #444; letter-spacing: 1px;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid #1a1a1a; text-align: center;
}
.footer-col-title { font-size: .68rem; letter-spacing: 3px; text-transform: uppercase; color: #b07242; margin-bottom: 1.2rem; }
.footer-nav a {
  color: #555; font-size: .72rem; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  margin-bottom: .6rem; display: block; transition: color .3s ease;
}
.footer-nav a:hover { color: #b07242; }

/* ── COMMON SECTION UTILITIES ── */
.section-label {
  font-size: .68rem; letter-spacing: 4px;
  text-transform: uppercase; color: #b07242; margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: #fff; line-height: 1.2;
}
.section-body { color: #888; font-size: .92rem; line-height: 1.85; }
.gold-divider { width: 48px; height: 2px; background: #b07242; margin: 1.5rem 0; }
.gold-divider.mx-auto { margin-left: auto; margin-right: auto; }
.text-accent { color: #b07242; }

/* ── FADE ANIMATION ── */
.fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: .15s; }
.fade-up.delay-2 { transition-delay: .3s; }
.fade-up.delay-3 { transition-delay: .45s; }
.fade-up.delay-4 { transition-delay: .6s; }

/* ── INNER PAGE HERO CURVE ── */
.inner-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
}

/* ── SWIPER CUSTOM COLORS ── */
.swiper-pagination-bullet { background: #888; opacity: .6; }
.swiper-pagination-bullet-active { background: #b07242; opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: #b07242; }

/* ── FLOATING ACTION BUTTONS ── */
.fab-group {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
}
.fab-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(0,0,0,0.55);
  color: #fff;
}
.fab-whatsapp { background: #25d366; }
.fab-whatsapp:hover { background: #1ebe5a; }
.fab-phone { background: #b07242; }
.fab-phone:hover { background: #c8854e; }

/* Pulse ring on WhatsApp */
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: fabPulse 2s ease-out infinite;
}
@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* Tooltip labels */
.fab-btn .fab-tip {
  position: absolute;
  right: 64px;
  background: rgba(20,20,20,0.92);
  color: #fff;
  font-size: .65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.fab-btn:hover .fab-tip { opacity: 1; }
.fa-brands, .fab {
    font-size: 34px;
}
.fa-solid, .fas {
    font-size: 32px;
}
/* â”€â”€ LANGUAGE SWITCH â”€â”€ */
.lang-switch { display: flex; align-items: center; gap: 10px; }
.lang-switch a {
  font-size: .7rem; letter-spacing: 2px; text-transform: uppercase;
  color: #aaa; text-decoration: none; padding-bottom: 2px;
  border-bottom: 1px solid transparent; transition: color .3s ease, border-color .3s ease;
}
.lang-switch a:hover { color: #b07242; border-bottom-color: #b07242; }

/* â”€â”€ BREADCRUMBS â”€â”€ */
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 0; margin: 0; list-style: none; }
.breadcrumbs li { display: flex; align-items: center; gap: 10px; font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; color: #666; }
.breadcrumbs li + li::before { content: '/'; color: #333; }
.breadcrumbs a { color: #888; text-decoration: none; transition: color .3s ease; }
.breadcrumbs a:hover { color: #b07242; }
.breadcrumbs li[aria-current] { color: #b07242; }

/* â”€â”€ COOKIE CONSENT â”€â”€ */
.cookie-consent {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  z-index: 10000; width: min(720px, calc(100% - 32px));
  background: rgba(17,17,17,.97); border: 1px solid #2a2a2a; border-radius: 12px;
  padding: 1.25rem 1.5rem; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem; backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent-text { font-size: .8rem; color: #999; margin: 0; flex: 1 1 320px; line-height: 1.7; }
.cookie-consent-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-btn {
  font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 50px; padding: 10px 22px; cursor: pointer;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.cookie-btn-ghost { background: transparent; border: 1px solid #3a3a3a; color: #aaa; }
.cookie-btn-ghost:hover { border-color: #b07242; color: #b07242; }
.cookie-btn-solid { background: #b07242; border: 1px solid #b07242; color: #fff; }
.cookie-btn-solid:hover { background: #c8854e; border-color: #c8854e; }

/* â”€â”€ PAGINATION (Bootstrap 5 overrides in theme colours) â”€â”€ */
.pagination { justify-content: center; gap: 6px; margin-top: 3rem; }
.pagination .page-link {
  background: transparent; border: 1px solid #2a2a2a; color: #888;
  font-size: .75rem; letter-spacing: 1px; border-radius: 6px; padding: 8px 14px;
}
.pagination .page-link:hover { border-color: #b07242; color: #b07242; background: transparent; }
.pagination .page-item.active .page-link { background: #b07242; border-color: #b07242; color: #fff; }
.pagination .page-item.disabled .page-link { border-color: #1e1e1e; color: #3a3a3a; }

