@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Great+Vibes&display=swap');

:root{
  --glass: rgba(255,255,255,.62);
  --glass2: rgba(255,255,255,.40);
  --line: rgba(255,255,255,.50);
  --shadow: 0 18px 60px rgba(30,25,60,.18);

  --text: #1b1b20;
  --muted: rgba(27,27,32,.70);

  --gold1:#d4af37;
  --gold2:#f5e6b3;
  --gold3:#c5a028;

  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);

  /* ✅ background image */
  background: url("images/bg.png") center top / cover no-repeat fixed;
}

/* overlay for dreamy look */
.bg-overlay{
  position: fixed;
  inset:0;
  background:
    radial-gradient(900px 500px at 20% 20%, rgba(255,255,255,.70), rgba(255,255,255,0)),
    radial-gradient(900px 500px at 80% 30%, rgba(255,255,255,.65), rgba(255,255,255,0)),
    linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,.25));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 0;
  pointer-events:none;
}

a{ color: inherit; text-decoration:none; }
.link{ text-decoration: underline; text-underline-offset: 3px; }

.glass{
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 16px 18px 0;
}
.topbar__inner{
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 16px;

  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 14px 50px rgba(30,25,60,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.brand{ display:flex; align-items:center; gap:12px; min-width: 240px; }
.brand__badge{
  width:44px; height:44px;
  border-radius: 12px;
  display:grid; place-items:center;
  border: 1px solid rgba(197,160,40,.55);
  color: var(--gold3);
  background: rgba(255,255,255,.45);
  font-weight: 650;
}
.brand__name{ font-family: "Great Vibes", cursive; font-size: 26px; line-height: 1; }
.brand__city{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.nav{ display:flex; gap:18px; }
.nav a{ font-size: 14px; color: rgba(27,27,32,.75); padding: 10px 10px; border-radius: 12px; }
.nav a:hover{ background: rgba(255,255,255,.45); }

/* Flag switch */
.lang{ position: relative; }
.lang__btn{
  display:flex; align-items:center; gap:8px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
}
.lang__flag{ width:22px; height:14px; border-radius: 3px; object-fit: cover; }
.lang__chev{ opacity:.7; font-size: 12px; }
.lang__menu{
  position:absolute;
  right:0; top: calc(100% + 10px);
  min-width: 160px;
  border-radius: 14px;
  overflow:hidden;
  display:none;
  z-index: 20;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(30,25,60,.18);
}
.lang__menu.open{ display:block; }
.lang__item{
  width:100%;
  display:flex; align-items:center; gap:10px;
  padding: 12px 12px;
  border:0;
  background: transparent;
  cursor:pointer;
  text-align:left;
  font-size: 14px;
}
.lang__item:hover{ background: rgba(255,255,255,.55); }
.lang__item img{ width:22px; height:14px; border-radius: 3px; }

/* Hero */
.hero{ position: relative; z-index: 1; max-width: 1180px; margin: 24px auto 80px; padding: 0 18px; }

.hero__card{
  border-radius: 22px;
  padding: 40px 34px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
}

.hero__kicker{
  letter-spacing: .42em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(27,27,32,.52);
  margin-bottom: 16px;
  text-align: center;
  font-weight: 500;
}

.hero__title{ margin:0; line-height:1.0; }
.hero__titleGold{
  font-family: "Great Vibes", cursive;
  font-size: 86px;
  font-weight: 400;

  background: linear-gradient(90deg,var(--gold1),var(--gold2),var(--gold3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle{
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: 2px;
  color: rgba(27,27,32,.65);
}

.hero__actions{ display:flex; gap:14px; flex-wrap: wrap; margin-top: 22px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  font-weight: 600;
  font-size: 14px;
  cursor:pointer;
}
.btn--gold{
  background: linear-gradient(90deg, rgba(212,175,55,.95), rgba(245,230,179,.95), rgba(197,160,40,.95));
  color: #fff;
  border-color: rgba(197,160,40,.55);
  box-shadow: 0 14px 40px rgba(197,160,40,.22);
}
.btn--glass{
  background: rgba(255,255,255,.55);
  color: rgba(27,27,32,.85);
}
.btn--wide{ width:100%; }

.hero__desc{
  margin-top: 18px;
  max-width: 56ch;
  color: rgba(27,27,32,.70);
  line-height: 1.6;
}

.hero__visual{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  min-height: 360px;
}
.hero__img{
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(30,25,60,.18));
}
.hero__fallback{
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.60);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.fallback__note{ color: rgba(27,27,32,.65); text-align:center; font-size: 13px; }
.fallback__blob{ position:absolute; width: 240px; height: 240px; border-radius: 999px; background: rgba(212,175,55,.10); filter: blur(18px); }

/* Info cards */
.info{ margin-top: 18px; }
.info__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info__card{
  border-radius: 18px;
  padding: 16px 16px;
  display:flex;
  gap: 12px;
  align-items:center;
}
.info__icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.60);
}
.info__title{ font-size: 12px; color: rgba(27,27,32,.55); letter-spacing: 1px; text-transform: uppercase; }
.info__value{ font-weight: 600; color: rgba(27,27,32,.82); }
.info__text{ flex:1; }
.miniBtn{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.60);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.miniBtn:hover{ background: rgba(255,255,255,.70); }

/* Sections */
.section{
  margin-top: 26px;
  border-radius: 22px;
  padding: 26px;
}
.section__head{ display:flex; justify-content:space-between; align-items:flex-end; gap: 18px; margin-bottom: 14px; }
.section h2{ margin:0; font-size: 22px; }
.muted{ margin:0; color: rgba(27,27,32,.65); }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(255,255,255,.60);
}
.card h3{ margin:0 0 8px; font-size: 16px; }
.card p{ margin:0; color: rgba(27,27,32,.68); }

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ph{
  border-radius: 18px;
  min-height: 170px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.60);
  display:grid; place-items:center;
  color: rgba(27,27,32,.55);
}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact__box{
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.50);
  border: 1px solid rgba(255,255,255,.60);
}
.row{ display:flex; justify-content:space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.55); }
.row:last-child{ border-bottom:0; }
.contact__actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

/* Footer */
.footer{ margin-top: 22px; border-radius: 22px; padding: 16px; }
.footer__inner{ display:flex; justify-content:space-between; gap: 12px; flex-wrap: wrap; }
.footer__links{ display:flex; gap: 12px; }
.footer__links a{ color: rgba(27,27,32,.65); }
.footer__links a:hover{ color: rgba(27,27,32,.92); }

/* WhatsApp float */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(37,211,102,.92);
  color: #fff;
  display:grid;
  place-items:center;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  z-index: 50;
}
.wa-float:hover{ transform: translateY(-1px); }
.wa-float__icon{ font-size: 22px; }

/* Responsive */
@media (max-width: 980px){
  .nav{ display:none; }
  .hero__card{ grid-template-columns: 1fr; }
  .hero__visual{ min-height: 280px; }
  .info__grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .hero__titleGold{ font-size: 66px; }
}

/* ===== Hero: right visual like magazine (edge + shadow + floral layer) ===== */

.hero__card{
  position: relative;
  overflow: hidden; /* 让花朵层更干净 */
}

/* 中间文字更像封面：居中、收紧 */
.hero__content{
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

/* 右侧视觉：靠右贴边 */
.hero__visual{
  position: relative;
  justify-content: flex-end;
  align-items: flex-end;
}

/* 手部图更“贴边”，更像你截图 */
.hero__img{
  position: absolute;
  right: -26px;
  bottom: -34px;
  max-width: 520px;
  width: 110%;
  height: auto;
  filter:
    drop-shadow(0 22px 55px rgba(30,25,60,.22))
    drop-shadow(0 6px 14px rgba(255,255,255,.35));
}

/* 花朵层：用伪元素做“光晕花瓣感” */
.hero__visual::before{
  content:"";
  position:absolute;
  inset: -40px -40px -40px -40px;
  pointer-events:none;
  background:
    radial-gradient(220px 220px at 80% 35%, rgba(255,255,255,.65), rgba(255,255,255,0) 60%),
    radial-gradient(260px 260px at 92% 25%, rgba(213,182,255,.35), rgba(255,255,255,0) 65%),
    radial-gradient(220px 220px at 86% 78%, rgba(255,210,235,.35), rgba(255,255,255,0) 60%),
    radial-gradient(180px 180px at 72% 85%, rgba(170,225,255,.30), rgba(255,255,255,0) 62%),
    radial-gradient(100px 100px at 95% 65%, rgba(255,255,255,.40), rgba(255,255,255,0) 70%);
  filter: blur(2px);
  opacity: .95;
}

/* 右侧再加一点“柔光边缘” */
.hero__visual::after{
  content:"";
  position:absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212,175,55,.22), rgba(255,255,255,0) 60%);
  filter: blur(14px);
  pointer-events:none;
}