/* ============================================================
   ALPHA SUITS LUXURY ROOMS — style.css
   Design: Cinematic Dark Luxury | Navy × Gold × Cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500&family=Bebas+Neue&display=swap');

/* ── Variables ── */
:root {
  --navy:       #0b1628;
  --navy-mid:   #0f1e38;
  --navy-light: #162844;
  --gold:       #c9922a;
  --gold-light: #e8b84b;
  --gold-pale:  #f5dfa0;
  --cream:      #f8f2e6;
  --cream-dim:  #e8dcc8;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-body:  #8fa3c0;
  --text-muted: #4a6080;
  --blue-accent:#1e5fa8;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:      88px;
}

/* ── Reset ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'DM Sans',sans-serif;background:var(--navy);color:var(--text-body);overflow-x:hidden;line-height:1.7}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

/* ── Typography ── */
h1,h2,h3,h4{font-family:'Playfair Display',serif;color:var(--cream);line-height:1.1;font-weight:700}
h1{font-size:clamp(3rem,7vw,6.5rem)}
h2{font-size:clamp(2.2rem,4.5vw,3.8rem)}
h3{font-size:clamp(1.4rem,2.5vw,2rem)}

.bebas{font-family:'Bebas Neue',sans-serif;letter-spacing:0.08em}

.tag{
  display:inline-block;
  font-family:'DM Sans',sans-serif;
  font-size:0.65rem;
  font-weight:500;
  letter-spacing:0.35em;
  text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:1rem;
  position:relative;
  padding-left:2.5rem;
}
.tag::before{
  content:'';
  position:absolute;
  left:0; top:50%;
  transform:translateY(-50%);
  width:1.8rem; height:1px;
  background:var(--gold-light);
}

/* ── Layout ── */
.container{max-width:1240px;margin:0 auto;padding:0 2.5rem}

/* ── Buttons ── */
.btn-gold{
  display:inline-flex;align-items:center;gap:0.6rem;
  background:var(--gold);
  color:var(--navy);
  padding:0.9rem 2.2rem;
  font-family:'DM Sans',sans-serif;
  font-size:0.78rem;font-weight:500;
  letter-spacing:0.18em;text-transform:uppercase;
  transition:all 0.35s var(--ease);
  clip-path:polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,0 100%);
  border:none;cursor:pointer;
}
.btn-gold:hover{background:var(--gold-light);transform:translateY(-3px);box-shadow:0 16px 40px rgba(201,146,42,0.35)}
.btn-gold svg{transition:transform 0.3s ease}
.btn-gold:hover svg{transform:translateX(4px)}

.btn-outline{
  display:inline-flex;align-items:center;gap:0.6rem;
  border:1px solid rgba(200,170,100,0.45);
  color:var(--cream);
  padding:0.9rem 2.2rem;
  font-family:'DM Sans',sans-serif;
  font-size:0.78rem;font-weight:500;
  letter-spacing:0.18em;text-transform:uppercase;
  transition:all 0.35s var(--ease);
}
.btn-outline:hover{border-color:var(--gold);background:rgba(201,146,42,0.08);transform:translateY(-3px)}

.btn-wa{
  display:inline-flex;align-items:center;gap:0.75rem;
  background:#25d366;color:#fff;
  padding:1rem 2.4rem;
  font-family:'DM Sans',sans-serif;
  font-size:0.85rem;font-weight:500;
  letter-spacing:0.12em;text-transform:uppercase;
  border-radius:0;
  transition:all 0.35s var(--ease);
  clip-path:polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,0 100%);
}
.btn-wa:hover{background:#1db954;transform:translateY(-3px);box-shadow:0 16px 40px rgba(37,211,102,0.4)}

/* ── Top Bar ── */
.topbar{
  background:var(--navy-mid);
  border-bottom:1px solid rgba(201,146,42,0.18);
  padding:0.6rem 0;
  font-size:0.78rem;
  font-weight:400;
  letter-spacing:0.04em;
}
.topbar .container{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:0.8rem}
.topbar-left{display:flex;gap:2rem;align-items:center}
.topbar-right{display:flex;gap:1.5rem;align-items:center}
.topbar a{color:var(--text-body);display:flex;align-items:center;gap:0.45rem;transition:color 0.3s}
.topbar a:hover{color:var(--gold-light)}
.topbar svg{width:13px;height:13px;fill:currentColor;flex-shrink:0}
.topbar .wa-badge{
  background:rgba(37,211,102,0.12);
  color:#4ade80;
  border:1px solid rgba(37,211,102,0.3);
  padding:0.18rem 0.8rem;
  font-size:0.7rem;
  font-weight:500;
  letter-spacing:0.12em;
}

/* ── Navigation ── */
nav{
  position:sticky;top:0;z-index:1000;
  height:var(--nav-h);
  background:rgba(11,22,40,0.88);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(201,146,42,0.15);
  transition:all 0.4s ease;
}
nav.scrolled{background:rgba(11,22,40,0.97);box-shadow:0 4px 40px rgba(0,0,0,0.5)}

.nav-inner{display:flex;align-items:center;justify-content:space-between;height:100%}
.nav-logo{display:flex;align-items:center}
.nav-logo img{height:60px;width:auto;filter:drop-shadow(0 2px 8px rgba(201,146,42,0.3))}

.nav-links{display:flex;gap:2.2rem;align-items:center}
.nav-links a{
  font-size:0.73rem;font-weight:500;
  letter-spacing:0.2em;text-transform:uppercase;
  color:rgba(248,242,230,0.75);
  position:relative;
  transition:color 0.3s;
  padding-bottom:3px;
}
.nav-links a::after{
  content:'';position:absolute;
  bottom:0;left:0;width:0;height:1px;
  background:var(--gold-light);
  transition:width 0.35s var(--ease);
}
.nav-links a:hover,.nav-links a.active{color:var(--gold-light)}
.nav-links a:hover::after,.nav-links a.active::after{width:100%}

.nav-wa{
  background:rgba(37,211,102,0.1);
  border:1px solid rgba(37,211,102,0.35);
  color:#4ade80 !important;
  padding:0.45rem 1.1rem;
  font-size:0.7rem !important;
  display:flex;align-items:center;gap:0.4rem;
}
.nav-wa::after{display:none !important}
.nav-wa:hover{background:rgba(37,211,102,0.2) !important;color:#4ade80 !important}

/* Hamburger */
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;padding:4px}
.hamburger span{display:block;width:26px;height:2px;background:var(--cream);transition:0.35s var(--ease)}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-nav{
  display:none;
  position:fixed;top:var(--nav-h);left:0;right:0;
  background:rgba(11,22,40,0.99);
  backdrop-filter:blur(20px);
  z-index:999;padding:2rem 2.5rem;
  flex-direction:column;gap:1.2rem;
  border-bottom:1px solid rgba(201,146,42,0.15);
}
.mobile-nav.open{display:flex}
.mobile-nav a{font-size:0.88rem;font-weight:500;letter-spacing:0.15em;text-transform:uppercase;color:var(--cream);padding:0.6rem 0;border-bottom:1px solid rgba(255,255,255,0.05);transition:color 0.3s}
.mobile-nav a:hover{color:var(--gold-light)}

/* ── Gold Line Decoration ── */
.gold-line{width:60px;height:2px;background:linear-gradient(90deg,var(--gold),var(--gold-light));margin-bottom:0}
.gold-line.center{margin:0 auto}

/* ── Diagonal Strip ── */
.diagonal-strip{
  position:relative;
  background:var(--gold);
  padding:1.4rem 0;
  clip-path:polygon(0 0,100% 0,100% 70%,0 100%);
  margin-bottom:-2rem;
  z-index:2;
}

/* ── Scroll Reveal ── */
.reveal{opacity:0;transform:translateY(40px);transition:opacity 0.9s var(--ease),transform 0.9s var(--ease)}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-left{opacity:0;transform:translateX(-50px);transition:opacity 0.9s var(--ease),transform 0.9s var(--ease)}
.reveal-left.visible{opacity:1;transform:translateX(0)}
.reveal-right{opacity:0;transform:translateX(50px);transition:opacity 0.9s var(--ease),transform 0.9s var(--ease)}
.reveal-right.visible{opacity:1;transform:translateX(0)}

/* Stagger children */
.stagger > *:nth-child(1){transition-delay:0.05s}
.stagger > *:nth-child(2){transition-delay:0.15s}
.stagger > *:nth-child(3){transition-delay:0.25s}
.stagger > *:nth-child(4){transition-delay:0.35s}
.stagger > *:nth-child(5){transition-delay:0.45s}
.stagger > *:nth-child(6){transition-delay:0.55s}

/* ── WhatsApp Float ── */
.wa-float{
  position:fixed;bottom:2.2rem;right:2.2rem;z-index:997;
  background:#25d366;
  width:60px;height:60px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 28px rgba(37,211,102,0.45);
  transition:transform 0.35s var(--ease),box-shadow 0.35s var(--ease);
  animation:waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover{transform:scale(1.12);box-shadow:0 10px 40px rgba(37,211,102,0.65);animation:none}
.wa-float svg{width:30px;height:30px;fill:white}
@keyframes waPulse{0%,100%{box-shadow:0 6px 28px rgba(37,211,102,0.45)}50%{box-shadow:0 6px 40px rgba(37,211,102,0.7),0 0 0 8px rgba(37,211,102,0.12)}}

/* ── Footer ── */
footer{
  background:var(--navy-mid);
  border-top:1px solid rgba(201,146,42,0.18);
  padding:5rem 0 2rem;
}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:4rem;margin-bottom:4rem}
.footer-brand img{height:64px;margin-bottom:1.4rem;filter:drop-shadow(0 2px 8px rgba(201,146,42,0.25))}
.footer-brand p{font-size:0.9rem;font-weight:300;line-height:1.85;color:var(--text-body);max-width:280px}
.footer-col h4{
  font-family:'DM Sans',sans-serif;
  font-size:0.65rem;font-weight:500;
  letter-spacing:0.28em;text-transform:uppercase;
  color:var(--gold-light);
  margin-bottom:1.5rem;
  padding-bottom:0.8rem;
  border-bottom:1px solid rgba(201,146,42,0.2);
}
.footer-col ul li{margin-bottom:0.7rem}
.footer-col ul li a{font-size:0.88rem;color:var(--text-body);transition:color 0.3s;display:flex;align-items:center;gap:0.5rem}
.footer-col ul li a:hover{color:var(--gold-light)}
.footer-col ul li a::before{content:'›';color:var(--gold);font-size:1rem}
.footer-contact-item{display:flex;gap:0.75rem;align-items:flex-start;margin-bottom:1rem}
.footer-contact-item svg{width:16px;height:16px;fill:var(--gold);flex-shrink:0;margin-top:3px}
.footer-contact-item a,.footer-contact-item p{font-size:0.87rem;color:var(--text-body);transition:color 0.3s}
.footer-contact-item a:hover{color:var(--gold-light)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.05);
  padding-top:2rem;
  display:flex;justify-content:space-between;align-items:center;
  flex-wrap:wrap;gap:1rem;
  font-size:0.78rem;color:var(--text-muted);
}
.footer-bottom-gold{color:var(--gold-light)}

/* ── Page Hero (inner pages) ── */
.page-hero{
  position:relative;
  height:52vh;min-height:380px;
  overflow:hidden;
  display:flex;align-items:flex-end;
}
.page-hero-bg{
  position:absolute;inset:0;
  background-size:cover;background-position:center;
}
.page-hero-bg::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(11,22,40,0.92) 0%,rgba(11,22,40,0.6) 60%,rgba(15,30,56,0.85) 100%);
}
.page-hero-content{
  position:relative;z-index:2;
  padding:0 0 4rem;
  width:100%;
}
.page-hero-content .container{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;flex-wrap:wrap}
.page-hero h1{font-size:clamp(2.5rem,6vw,5rem);line-height:1}
.breadcrumb{display:flex;gap:0.6rem;align-items:center;font-size:0.78rem;color:var(--text-body)}
.breadcrumb a{transition:color 0.3s}.breadcrumb a:hover{color:var(--gold-light)}
.breadcrumb span{color:var(--text-muted)}

/* ── Animations ── */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
@keyframes shimmer{0%{background-position:200% center}100%{background-position:-200% center}}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
@keyframes rotateSlow{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}

/* ── Responsive ── */
@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .nav-links{display:none}
  .hamburger{display:flex}
  .footer-grid{grid-template-columns:1fr}
  .topbar-left{display:none}
  :root{--nav-h:72px}
  .page-hero-content .container{flex-direction:column;align-items:flex-start}
}
@media(max-width:480px){
  .container{padding:0 1.5rem}
  .topbar .container{justify-content:center}
}
