/*
Theme Name: Budai Villa
Theme URI: https://budaivilla.hu
Author: Modern Luxus Kft.
Author URI: https://budaivilla.hu
Description: WordPress theme for Budai Villa luxury homes.
Version: 1.0.11
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: budaivilla
*/

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --gold: #b8832e;
  --gold-lt: #cc9e50;
  --gold-pale: #e8d5b0;
  --bg: #f4ede0;
  --bg2: #ede4d3;
  --bg3: #e5dac8;
  --card: #fff;
  --text: #2c2416;
  --text2: #4a3f30;
  --muted: #8a7a65;
  --border: rgba(184,131,46,.18);
  --r: 14px;
  --r-sm: 8px;
  --r-lg: 20px;
}
body { background: var(--bg); color: var(--text); font-family: 'Jost', sans-serif; font-weight: 300; overflow-x: hidden; }
.container { max-width: 1280px; margin: 0 auto; width: 100%; padding: 0 2rem; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ===== NAV ===== */
body.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar nav { top: 46px; } }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 1.8rem 0; transition: all .5s; }
nav.solid { background: rgba(244,237,224,.97); padding: 1rem 0; border-bottom: 1px solid var(--border); backdrop-filter: blur(16px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; letter-spacing: .08em; color: var(--gold); text-decoration: none; }
.logo span { color: rgba(255,255,255,.9); }
.logo-img { height: 15px;}
nav.solid .logo span { color: var(--text); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,.85); text-decoration: none; font-size: .67rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; transition: color .3s; }
nav.solid .nav-links a { color: var(--text2); }
.nav-links a:hover { color: var(--gold-pale); }
nav.solid .nav-links a:hover { color: var(--gold); }
.nav-cta { border: 1.5px solid var(--gold) !important; color: var(--gold) !important; padding: .4rem 1.2rem; border-radius: var(--r-sm) !important; }
.nav-cta:hover { background: var(--gold) !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 201; position: relative; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold); transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
#hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; }
.hero-inner { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; align-items: stretch; max-width: 1200px; width: 100%; padding: 0 2rem; }
.hero-content { position: relative; flex: 1; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 8vh; }
.hero-tag { display: inline-flex; align-items: center; gap: .8rem; font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-pale); margin-bottom: 1.2rem; opacity: 0; animation: fup 1s .4s forwards; }
.hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold-pale); }
.hero-h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; color: #fff; opacity: 0; animation: fup 1s .6s forwards; }
.hero-h1 em { font-style: italic; color: var(--gold-pale); }
.hero-btns { display: flex; align-items: center; gap: 1.2rem; opacity: 0; animation: fup 1s .8s forwards; }
.hero-sub { font-size: .78rem; color: rgba(255,255,255,.8); max-width: 560px; line-height: 1.8; opacity: 0; animation: fup 1s .8s forwards; }
.hero-stats { position: relative; align-self: center; z-index: 3; display: flex; flex-direction: column; gap: 2rem; opacity: 0; animation: fadein 1.2s 1.2s forwards; background: rgba(10,8,4,.45); backdrop-filter: blur(10px); padding: 2rem 2rem 2rem 2.4rem; border-radius: var(--r); border: 0px solid rgba(232,213,176,.15); flex-shrink: 0; }
.hst { text-align: right; padding-right: 1.2rem; border-right: 2px solid rgba(232,213,176,.6); }
.hst-v { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; color: var(--gold-pale); line-height: 1; }
.hst-l { font-size: .57rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8); display: block; margin-top: .2rem; }

/* ===== BUTTONS ===== */
.btn-gold { display: inline-block; background: var(--gold); color: #fff; padding: .85rem 2.2rem; font-size: .67rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; transition: background .3s, transform .2s; border-radius: var(--r); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.85); font-size: .67rem; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; transition: color .3s; border: 1.5px solid rgba(255,255,255,.35); padding: .82rem 1.8rem; border-radius: var(--r); }
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost svg { transition: transform .3s; }
.btn-ghost:hover svg { transform: translateX(4px); }
.link-arrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold); font-size: .67rem; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; transition: gap .3s; font-weight: 500; }
.link-arrow:hover { gap: .8rem; }
.link-arrow svg { transition: transform .3s; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ===== GOLD BAR ===== */
.gold-bar { background: #0f0d0a; margin: 0; border-top: 0px solid rgba(184,131,46,.35); border-bottom: 0px solid rgba(184,131,46,.18); position: relative; }
.gold-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.gbi { display: flex; align-items: center; gap: 1.1rem; padding: 1.6rem 2rem; border-right: 1px solid rgba(184,131,46,.15); transition: background .3s; }
.gbi:last-child { border-right: none; }
.gbi:hover { background: rgba(184,131,46,.06); }
.gbi-icon { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(184,131,46,.45); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color .3s, background .3s; }
.gbi:hover .gbi-icon { border-color: var(--gold); background: rgba(184,131,46,.12); }
.gbi svg { color: var(--gold-pale); width: 15px; height: 15px; flex-shrink: 0; }
.gbi-text { display: flex; flex-direction: column; gap: .15rem; }
.gbi span { font-family: 'Cormorant Garamond', serif; font-size: 8pt; font-weight: 300; letter-spacing: .14em; text-transform: uppercase; color: rgba(232,213,176,.9); line-height: 1; }
.gbi small { font-size: .52rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(184,131,46,.6); font-family: 'Jost', sans-serif; font-weight: 400; }

/* ===== SECTIONS ===== */
.sec-lbl { display: inline-flex; align-items: center; gap: .8rem; font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.sec-lbl::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.sec-h { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--text); line-height: 1.1; }
.sec-h em { font-style: italic; color: var(--gold); }

/* ===== PAGE HEADER ===== */
.page-header { padding-top: 8.5rem; padding-bottom: 2rem; background: var(--bg); }
.page-header .hero-tag { display: inline-flex; align-items: center; gap: .8rem; font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.page-header .hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.page-header .hero-h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 300; line-height: 1.05; color: var(--text); margin-bottom: 0; }
.page-header .hero-h1 em { font-style: italic; color: var(--gold); }

/* ===== CONCEPT ===== */
#koncepcio { background: var(--bg2); padding: 3rem 0; }
.concept-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 5vw; align-items: start; margin-top: 3.5rem; }
.c-blocks { display: flex; flex-direction: column; gap: 1.2rem; }
.c-block { padding: 1.5rem 1.8rem; background: var(--card); border-radius: var(--r); }
.c-block h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--text); margin-bottom: .4rem; }
.c-block p { font-size: .76rem; line-height: 1.85; color: var(--muted); }
.c-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 230px 230px; gap: 8px; }
.m-img { overflow: hidden; background: var(--bg3); cursor: pointer; border-radius: var(--r); }
.m-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s; }
.m-img:hover img { transform: scale(1.06); }
.m-img.tall { grid-row: span 2; }

/* ===== PROPERTIES ===== */
#ingatlanok { background: var(--bg); padding: 3rem 0; }
.prop-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3.5rem; }
.pf { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; margin-bottom: 12px; }
.p-gal { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 270px 270px; gap: 6px; }
.p-gal-sm { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 195px 195px; gap: 6px; }
.g-img { overflow: hidden; cursor: pointer; position: relative; border-radius: var(--r); text-decoration: none; }
.g-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s; }
.g-img:hover img { transform: scale(1.05); }
.g-img.main { grid-column: span 2; height: 270px; border-radius: var(--r); }
.g-more { position: absolute; inset: 0; background: rgba(20,15,8,.55); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .3rem; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: #fff; transition: background .3s; pointer-events: none; border-radius: var(--r); }
.g-img:hover .g-more { background: rgba(20,15,8,.35); }
.g-more strong { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold-pale); line-height: 1; }
.p-info { padding: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; background: var(--card); border-radius: var(--r); text-decoration: none; }
.p-badge { display: inline-block; background: var(--gold); color: #fff; font-size: .57rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; padding: .3rem .85rem; align-self: flex-start; border-radius: var(--r-sm); }
.p-badge.ref { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.p-name { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 400; color: var(--text); line-height: 1.2; }
.p-sub { font-size: .63rem; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; }
.p-specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; }
.ps { padding: .85rem; background: var(--bg2); text-align: center; border-radius: var(--r-sm); }
.ps strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 400; color: #0f0d0a; line-height: 1; }
.ps span { font-size: .54rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); display: block; margin-top: .2rem; }
.p-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.ptag { font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); border: 1.5px solid var(--border); padding: .28rem .7rem; border-radius: 100px; background: rgba(184,131,46,.06); }
.p-cta { display: inline-flex; align-items: center; gap: .6rem; color: var(--gold); font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: auto; transition: gap .3s; font-weight: 500; }
.p-cta:hover { gap: 1rem; }
.ps2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ===== GALLERY ===== */
#galeria { background: var(--bg2); padding: 3rem 0; }
.gstrip { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; margin-top: 2.5rem; }
.gsi { overflow: hidden; aspect-ratio: 4/3; cursor: pointer; border-radius: var(--r-sm); }
.gsi img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s; }
.gsi:hover img { transform: scale(1.07); }

/* Main gallery (property detail) */
#kepek { background: var(--bg); padding: 3rem 0; }
.main-gallery { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: 260px 260px; gap: 10px; margin-top: 2.5rem; }
.main-gallery .g-img.main { grid-column: 1 / 2; grid-row: span 2; height: 100%; }
.main-gallery .g-img { text-decoration: none; }
.bv-lightbox-hidden { display: none; }

/* ===== DETAILS ===== */
#reszletek { background: var(--bg2); padding: 3rem 0; }
.det-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 5vw; margin-top: 2.5rem; align-items: start; }
.det-text { display: flex; flex-direction: column; gap: 1.4rem; }
.det-text p { font-size: 0.9rem; color: var(--muted); line-height: 1.9; }
.det-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 400; color: var(--text); margin-bottom: .4rem; }
.det-list { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.det-list li { list-style: none; display: flex; align-items: flex-start; gap: .6rem; font-size: 0.8rem; color: var(--text2); line-height: 1.5; }
.det-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.det-list.check { display: flex; flex-direction: column; gap: .55rem; }
.det-list.check li { background: #fff; padding: .55rem .75rem; border-radius: var(--r-sm); align-items: center; }
.det-list.check li::before { content: '✓'; color: var(--gold); font-weight: 600; }
.det-card { background: var(--card); padding: 2.2rem; border-radius: var(--r-lg); position: sticky; top: 100px; }
.det-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--text); margin-bottom: 1.2rem; }
.spec-rows { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.6rem; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: .6rem; border-bottom: 1px solid var(--border); font-size: .8rem; }
.spec-row span { color: var(--muted); }
.spec-row strong { color: var(--text); font-weight: 400; }
.det-cta { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; width: 100%; background: var(--gold); color: #fff; padding: .9rem 1.5rem; font-size: .67rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; transition: background .3s, transform .2s; border-radius: var(--r); }
.det-cta:hover { background: var(--gold-lt); transform: translateY(-2px); }
.det-cta svg { transition: transform .3s; }
.det-cta:hover svg { transform: translateX(4px); }

/* ===== FEATURES ===== */
#felszereltseg { background: var(--bg); padding: 3rem 0; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 2.5rem; }
.feat-card { background: var(--card); padding: 1.6rem 1.4rem; border-radius: var(--r); border: 1.5px solid var(--border); transition: transform .3s, border-color .3s; }
.feat-card:hover { transform: translateY(-3px); border-color: rgba(184,131,46,.35); }
.feat-card svg { color: var(--gold); margin-bottom: .9rem; }
.feat-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; color: var(--text); margin-bottom: .35rem; }
.feat-card p { font-size: .66rem; color: var(--muted); line-height: 1.7; }

/* ===== LOCATION ===== */
#elhelyezkedes { background: var(--bg); padding: 3rem 0; }
#elhelyezkedes.alt { background: var(--bg2); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; margin-top: 3.5rem; align-items: center; }
.loc-imgs { position: relative; }
.loc-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: var(--r-lg); }
.loc-thumb { position: absolute; bottom: -1.8rem; right: -1.8rem; width: 44%; aspect-ratio: 1; object-fit: cover; border: 4px solid var(--bg); border-radius: var(--r); }
.loc-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: var(--r-lg); }
.loc-rows { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.l-row { display: flex; align-items: flex-start; gap: 1rem; padding: .9rem 1.1rem; border: 1.5px solid var(--border); background: var(--card); border-radius: var(--r); transition: border-color .3s; }
.l-row:hover { border-color: rgba(184,131,46,.35); }
.l-icon { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: rgba(184,131,46,.1); color: var(--gold); flex-shrink: 0; border-radius: var(--r-sm); }
.l-txt strong { display: block; font-size: .74rem; font-weight: 500; color: var(--text); margin-bottom: .15rem; }
.l-txt span { font-size: .7rem; color: var(--muted); line-height: 1.5; }

/* ===== WHY ===== */
#miert { background: var(--bg2); padding: 3rem 0; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 3rem; }
.w-card { background: var(--card); padding: 2.5rem 2rem; border-radius: var(--r-lg); transition: transform .3s; }
.w-card:hover { transform: translateY(-3px); }
.w-card svg { color: var(--gold); margin-bottom: 1.2rem; }
.w-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--text); margin-bottom: .6rem; }
.w-card p { font-size: .74rem; line-height: 1.85; color: var(--muted); }

/* ===== CONTACT ===== */
#kapcsolat { background: var(--bg); padding: 3rem 0; }
.c-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; }
.c-img-col { position: relative; }
.c-img-main { width: 100%; height: 520px; object-fit: cover; display: block; border-radius: var(--r-lg); }
.c-img-tag { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; background: rgba(255,255,255,.9); border: 1px solid var(--border); padding: 1.3rem 1.6rem; backdrop-filter: blur(12px); border-radius: var(--r); }
.c-img-tag strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: .25rem; }
.c-img-tag span { font-size: .63rem; color: var(--muted); letter-spacing: .08em; }
.c-form-col { display: flex; flex-direction: column; gap: .9rem; }
.c-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 300; color: var(--text); line-height: 1.15; margin-bottom: .7rem; }
.c-title em { font-style: italic; color: var(--gold); }
.c-desc { font-size: .77rem; color: var(--muted); line-height: 1.85; margin-bottom: .8rem; }
.c-links { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.c-link { display: flex; align-items: center; gap: .75rem; font-size: .77rem; color: var(--text2); text-decoration: none; transition: color .3s; }
.c-link svg { color: var(--gold); flex-shrink: 0; }
.c-link:hover { color: var(--gold); }
.form { display: flex; flex-direction: column; gap: .75rem; }
.form-r2 { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.fg { display: flex; flex-direction: column; gap: .32rem; }
.fg label { font-size: .57rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.fg input, .fg textarea, .fg select { background: var(--card); border: 1.5px solid var(--border); color: var(--text); font-family: 'Jost', sans-serif; font-size: .77rem; padding: .82rem 1rem; outline: none; transition: border-color .3s; resize: none; -webkit-appearance: none; border-radius: var(--r-sm); }
.fg select option { background: #fff; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--gold); }
.fg textarea { height: 105px; }
.f-btn { display: inline-flex; align-items: center; gap: .7rem; background: var(--gold); color: #fff; border: none; padding: .9rem 2rem; font-family: 'Jost', sans-serif; font-size: .67rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; cursor: pointer; transition: background .3s, transform .2s; align-self: flex-start; margin-top: .4rem; border-radius: var(--r); }
.f-btn:hover { background: var(--gold-lt); transform: translateY(-2px); }
.priv { font-size: .61rem; color: var(--muted); line-height: 1.6; }

/* ===== PRIVACY ===== */
#adatvedelem { background: var(--bg); padding: 0 0 4rem; }
.privacy-text { max-width: 780px; font-size: .78rem; color: var(--text2); line-height: 1.9; }
.privacy-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400; color: var(--text); margin: 2.4rem 0 1rem; }
.privacy-text h2:first-child { margin-top: 0; }
.privacy-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--text); margin: 1.6rem 0 .6rem; }
.privacy-text p { margin-bottom: .9rem; }
.privacy-text ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; margin: .8rem 0 1rem; }
.privacy-text li { padding-left: 1.2rem; position: relative; }
.privacy-text li::before { content: '—'; color: var(--gold); position: absolute; left: 0; }
.privacy-text a { color: var(--gold); text-decoration: none; transition: color .3s; }
.privacy-text a:hover { color: var(--gold-lt); }
.p-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.p-meta div { font-size: .65rem; color: var(--muted); letter-spacing: .08em; }
.p-meta strong { display: block; color: var(--text); font-weight: 400; letter-spacing: 0; font-size: .72rem; margin-top: .15rem; }

/* ===== FOOTER ===== */
footer { background: #0f0d0a; border-top: 1px solid rgba(184,131,46,.25); padding: 2.5rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.2rem; }
.f-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold); text-decoration: none; }
.f-logo span { color: rgba(255,255,255,.9); }
.f-brand { display: flex; flex-direction: column; align-items: flex-start; gap: .4rem; }
.f-info { font-size: .61rem; color: rgba(232,213,176,.65); text-align: left; line-height: 1.7; }
.f-links { display: flex; gap: 1.5rem; }
.f-links a { font-size: .59rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(232,213,176,.65); text-decoration: none; transition: color .3s; }
.f-links a:hover { color: var(--gold-pale); }

/* ===== ANIMATIONS ===== */
@keyframes fup { from { opacity:0; transform:translateY(26px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadein { from { opacity:0; } to { opacity:1; } }
.reveal { opacity:0; transform:translateY(34px); transition: opacity .8s, transform .8s; }
.reveal.vis { opacity:1; transform:translateY(0); }

/* ===== PAGE-SPECIFIC HERO OVERRIDES ===== */
/* Home page hero */
#hero.home { height: 100vh; min-height: 600px; }
#hero.home .hero-bg::after { background: linear-gradient(to bottom, rgba(20,15,8,.15) 0%, rgba(20,15,8,.05) 35%, rgba(20,15,8,.55) 75%, rgba(20,15,8,.88) 100%); }
#hero.home .hero-h1 { font-size: clamp(3rem, 7vw, 6.2rem); line-height: 1.03; margin-bottom: 1.6rem; }

/* Property detail hero */
#hero.detail { height: 70vh; min-height: 520px; }
#hero.detail .hero-bg::after { background: linear-gradient(to bottom, rgba(20,15,8,.25) 0%, rgba(20,15,8,.15) 40%, rgba(20,15,8,.65) 100%); }
#hero.detail .hero-inner { align-items: flex-end; padding-bottom: 6vh; }
#hero.detail .hero-h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); line-height: 1.05; margin-bottom: 1.4rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: rgba(244,237,224,.98); align-items: center; justify-content: center; gap: 2.5rem; z-index: 199; height: 100vh; }
  .nav-links.open a { font-size: .95rem; color: var(--text); }
  .hero-stats { display: none; }
  .concept-layout { grid-template-columns: 1fr; }
  .c-mosaic { grid-template-rows: 180px 180px; }
  .pf { grid-template-columns: 1fr; }
  .ps2 { grid-template-columns: 1fr; }
  .main-gallery { grid-template-columns: 1fr; grid-template-rows: 300px 220px 220px; }
  .main-gallery .g-img.main { grid-row: auto; }
  .det-grid { grid-template-columns: 1fr; }
  .det-card { position: static; margin-top: 2rem; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-thumb { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .c-grid { grid-template-columns: 1fr; }
  #koncepcio, #ingatlanok, #galeria, #elhelyezkedes, #miert, #kapcsolat, #kepek, #reszletek, #felszereltseg { padding: 3rem 0; }
  .p-info { padding: 2rem; }
  .prop-hdr { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .f-links { justify-content: center; }
  .gold-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .gbi { border-right: none; border-bottom: 1px solid rgba(184,131,46,.12); padding: 1.4rem 2rem; }
  .gbi:nth-child(odd) { border-right: 1px solid rgba(184,131,46,.15); }
  .gbi:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  #hero.home .hero-h1 { font-size: 2.5rem; }
  #hero.detail .hero-h1 { font-size: 2.2rem; }
  .page-header .hero-h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .p-specs { grid-template-columns: repeat(2,1fr); }
  .p-gal { grid-template-columns: 1fr; }
  .g-img.main { grid-column: 1; }
  .p-gal-sm { grid-template-columns: 1fr; }
  .c-mosaic { grid-template-columns: 1fr; grid-template-rows: unset; }
  .m-img.tall { grid-row: auto; height: 200px; }
  .m-img { height: 200px; }
  .form-r2 { grid-template-columns: 1fr; }
  .gold-bar-inner { grid-template-columns: 1fr; }
  .gbi { padding: 1rem 1.5rem; border-right: none !important; }
  .gbi:nth-last-child(-n+2) { border-bottom: 1px solid rgba(184,131,46,.12); }
  .gbi:last-child { border-bottom: none; }
  .why-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .det-list { grid-template-columns: 1fr; }
  .main-gallery { grid-template-rows: 260px 180px 180px; }
}

/* ===== LIGHTBOX ===== */
.bv-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 13, 10, .96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: bv-lb-fade-in .2s ease forwards;
}

.bv-lightbox-overlay.bv-lightbox-fade-out {
  animation: bv-lb-fade-out .2s ease forwards;
}

.bv-lightbox-figure {
  position: relative;
  max-width: 92vw;
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bv-lightbox-figure img {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.bv-lightbox-close,
.bv-lightbox-prev,
.bv-lightbox-next {
  position: absolute;
  z-index: 1001;
  background: transparent;
  border: none;
  color: rgba(232, 213, 176, .85);
  cursor: pointer;
  transition: color .2s, transform .2s;
  line-height: 1;
}

.bv-lightbox-close:hover,
.bv-lightbox-prev:hover,
.bv-lightbox-next:hover {
  color: var(--gold);
}

.bv-lightbox-close {
  top: 1rem;
  right: 1.2rem;
  font-size: 2.4rem;
}

.bv-lightbox-prev,
.bv-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.2rem;
  padding: 0 .8rem;
}

.bv-lightbox-prev:hover,
.bv-lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.bv-lightbox-prev { left: .6rem; }
.bv-lightbox-next { right: .6rem; }

.bv-lightbox-counter {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(232, 213, 176, .75);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.bv-lightbox-loader {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(184, 131, 46, .25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: bv-lb-spin .8s linear infinite;
}

.bv-lightbox-error {
  color: var(--gold-pale);
  font-size: .8rem;
}

@keyframes bv-lb-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes bv-lb-fade-out { from { opacity: 1; } to { opacity: 0; } }
@keyframes bv-lb-spin { to { transform: rotate(360deg); } }

@media (max-width: 768px) {
  .bv-lightbox-prev,
  .bv-lightbox-next {
    font-size: 2.4rem;
    padding: 0 .4rem;
  }
  .bv-lightbox-prev { left: .2rem; }
  .bv-lightbox-next { right: .2rem; }
  .bv-lightbox-close { font-size: 2rem; }
}
