:root{
  --bg:#0e0e0f;
  --panel:#1f1f1f;
  --accent:#ff3b3b;
  --muted:#bdbdbd;
  --white:#ffffff;
  --container:1200px;
  --max-hero-width:1100px;
}

/* Reset / global */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  -webkit-tap-highlight-color: transparent;
}

.container{
  width:92%;
  max-width:var(--container);
  margin:0 auto;
}

/* Header */
.site-header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  z-index:120;
  background:rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(255,255,255,0.02);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.logo{
  height: 120px;
  width:auto;
  object-fit:contain;
}

/* Nav */
.main-nav{
  display:flex;
  gap:36px;
  align-items:center;
}

.main-nav .nav-link{
  text-decoration:none;
  color:var(--white);
  font-weight:700;
  letter-spacing:1px;
  font-size:15px;
  text-transform:uppercase;
}

/* Hamburger (mobile) */
.hamburger{
  display:none;
  background:none;
  border:0;
  cursor:pointer;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  padding:6px;
}
.hamburger span{
  display:block;
  height:3px;
  background:var(--white);
  margin:5px 0;
  border-radius:2px;
  transition:transform .25s ease;
}

/* ---------------- HERO (fixed/updated) ----------------- */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:flex-start; /* keep overlay on the left by default */
  padding-top:28px;
  background-color:#0b0b0b; /* fallback if image doesn't fill */
}

/* hero-bg uses background-image; we override sizing per breakpoint */
.hero-bg{
  position:absolute;
  inset:0;
  background-image: url("assets/herobg.png");
  background-repeat: no-repeat;
  background-position: 74% center;
  background-size: cover; /* default fallback */
  z-index:1;
  will-change: transform, background-position;
}

/* gradient overlay so text remains readable */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
}

/* particles canvas sits above bg but under text */
#particles{
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
}

/* overlay area - positioned left on desktop, centered on mobile */
.hero-overlay{
  position:relative;
  z-index:4;
  max-width:760px;
  padding:48px 0;
  margin-left:6vw; /* pushes the text to the left side on desktop */
  text-align:left;
}

/* headline: responsive sizing */
.hero-text{
  font-family:'Anton', sans-serif;
  font-size:clamp(36px, 7.2vw, 96px);
  line-height:0.95;
  margin:0 0 18px;
  text-transform:uppercase;
  letter-spacing:0.1px;
  color:var(--white);
  word-break:break-word;
}
.hero-text span{ color:var(--accent) ; 
 }

/* CTA button */
.hero-btn{
  display:inline-block;
  margin-top:18px;
  background:var(--accent);
  padding:14px 28px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  color:#fff;
  letter-spacing:1px;
  transition:transform .18s ease, box-shadow .18s ease;
}
.hero-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(255,59,59,0.16);
}



/* SECTION STYLES (unchanged from earlier) */
.section-title{
  font-family: 'Anton', sans-serif;
  font-size:64px;
  margin:36px 0 12px;
  display:flex;
  gap:18px;
  align-items:flex-end;
  color:var(--white);
  justify-content: center;
}
.section-title .accent{color:var(--accent); }

/* AMENITIES */
.amenities{
  padding:70px 0;
}
.amenities-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap:28px;
  margin-top:28px;
}
.amen-card{
  background:transparent;
  border-radius:18px;
  padding:40px 28px;
  border:2px solid rgba(255,255,255,0.06);
  min-height:320px;
  position:relative;
}
.amen-icon{
  font-size:42px;
  color:var(--accent);
  display:block;
  margin-bottom:18px;
}
.amen-card h3{
  color:var(--accent);
  margin:0 0 12px;
  font-weight:700;
  letter-spacing:1px;
}
.amen-card p{color:var(--muted); line-height:1.7}

.about{padding:70px 0}
.testimonials{
  margin-top:36px;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:26px;
}
.test-card{
  background:var(--white);
  color:#111;
  padding:24px;
  border:6px solid rgba(0,0,0,0.02);
  min-height:360px;
  position:relative;
}
.quote-mark{
  font-size:48px;
  color:var(--accent);
  transform:translateY(-18px);
}
.test-img{
  width:120px;
  border:6px solid rgba(255,59,59,0.08);
  margin:8px 12px 12px 0;
  float:left;
}
.test-text{color:#222; line-height:1.6}
.test-name{
  margin-top:22px;
  font-size:20px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1px;
}
.test-name .accent{color:var(--accent)}

/* CONTACT */
.contact{padding:70px 0}
.lead{color:var(--muted); font-size:20px}
.center{text-align:center}

.contact-grid{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:22px;
}
.contact-card{
  background:var(--panel);
  padding:36px 28px;
  border-radius:20px;
  border:2px solid rgba(255,255,255,0.07);
  text-align:center;
}
.contact-icon{font-size:48px; color:var(--accent); margin-bottom:8px}
.contact-card h3{font-family:'Anton',sans-serif; text-transform:uppercase; letter-spacing:1px}
.sub{color:var(--muted); margin:8px 0 18px}
.btn{
  display:inline-block;
  padding:12px 20px;
  background:var(--accent);
  color:var(--white);
  text-decoration:none;
  border-radius:10px;
  font-weight:600;
}

/* LOCATION */
.location{padding:70px 0}
.location-text{color:var(--muted); font-size:18px; display:flex; gap:10px; align-items:center;justify-content: center}

.map-curve{
  margin-top:36px;
  height:340px;
  border:3px solid rgba(255,255,255,0.04);
  box-shadow: inset 0 -10px 50px rgba(0,0,0,0.5);
}
.map-curve iframe{
  width:100%;
  height:100%;
  border:0;
  transform:translateY(-30px);
  filter:contrast(0.9) saturate(0.6);
}

/* GALLERY */
.gallery{padding:70px 0 120px}
.gallery-grid{
  margin-top:26px;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:18px;

}
.gallery-grid img{
  width:100%;
  display:block;
  object-fit:cover;
  height:260px;
  filter:grayscale(0.6);
  border:2px solid #ff3b3b;
  padding: 2px;   
}

/* Footer */
.site-footer{
  padding:22px 0;
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.02);
  color:var(--muted);
}
/* Footer: extended style to match screenshot */
.site-footer-extended {
  background: #080808;
  color: #d8d8d8;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.02);
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

/* thin red rule at top */
.footer-top-rule{
  height:4px;
  background: linear-gradient(90deg, rgba(255,59,59,1), rgba(255,59,59,1));
  width:100%;
  display:block;
  box-shadow: 0 1px 0 rgba(0,0,0,0.35) inset;
}

/* main footer columns */
.footer-main {
  display:flex;
  gap:24px;
  padding:42px 0 36px;
  align-items:start;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* columns */
.footer-col{
  flex: 1 1 200px; /* grow, shrink, base width */
  min-width:200px;
  max-width: 320px;
}

/* titles */
.footer-title{
  margin:0 0 14px;
  font-weight:700;
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:0.6px;
  font-size:16px;
}

/* quick links list */
.footer-links{
  list-style:none;
  margin:0;
  padding:0;
}
.footer-links li{
  margin:10px 0;
}
.footer-links a{
  color: #bfbfbf;
  text-decoration:none;
  transition: color .15s ease, transform .12s ease;
}
.footer-links a:hover{
  color: #fff;
  transform: translateX(4px);
}

/* contact block */
.footer-contact { 
  color: #bfbfbf;
  font-style: normal;
}
.footer-contact a { 
  color: #bfbfbf;
  text-decoration:none;
}
.footer-contact a:hover{ color: #fff; }

/* hours */
.footer-hours{ color:#bfbfbf; }

/* social buttons */
.footer-follow .social-row {
  display:flex;
  gap:12px;
  margin-top:6px;
}
.social-btn{
  display:inline-flex;
  width:44px;
  height:44px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background: rgba(255,255,255,0.03);
  color: #f0f0f0;
  text-decoration:none;
  transition: transform .15s ease, background .15s ease;
  box-shadow: 0 2px 0 rgba(0,0,0,0.45) inset;
  border: 2px solid rgba(255,255,255,0.02);
  font-size:16px;
}
.social-btn:hover{
  transform:translateY(-4px);
  background: rgba(255,59,59,0.12);
  color: #ffeded;
}

/* bottom row */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.02);
  padding:18px 0;
  margin-top: 8px;
}
.footer-bottom .container{
  display:flex;
  align-items:center;
  justify-content:center; /* center copyright */
}

/* copyright text */
.footer-bottom p{ 
  margin:0;
  color:#9b9b9b;
  font-size:14px;
}

/* small-screen responsiveness */
@media (max-width:880px){
  .footer-main { padding:28px 0; gap:18px; }
  .footer-col { min-width: 220px; max-width: 100%; flex:1 1 100%; }
  .footer-top-rule{height:3px}
  .social-btn{ width:40px; height:40px; }
}

@media (max-width:480px){
  .footer-main { padding:20px 0; gap:12px; }
  .footer-title{ font-size:15px; }
  .footer-links li{ margin:8px 0; }
}


/* Responsive */
@media (max-width:1100px){
  .section-title{font-size:48px}
  .amenities-grid{grid-template-columns: repeat(2,1fr)}
  .testimonials{grid-template-columns: repeat(2,1fr)}
  .gallery-grid{grid-template-columns: repeat(2,1fr)}
}

@media (max-width:820px){
  .header-inner{padding:10px 0}
  .main-nav{display:none}
  .hamburger{display:flex}
  .hero{justify-content:center}
  .hero-overlay{padding:28px 0; text-align:center}
  .hero-text{font-size:clamp(30px, 10vw, 56px); line-height:1}
  .amenities-grid{grid-template-columns:1fr}
  .testimonials{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr}
  .logo{height:56px}
  .map-curve{height:260px}
}

/* small phones */
@media (max-width:420px){
  .logo{height:52px}
  .hero-btn{padding:12px 18px}
}

/* small improvements for accessibility and performance */
img{max-width:100%;height:auto;display:block}
