/* === Base === */
*,
*::before,
*::after{
  box-sizing:border-box;
}

:root{
  --bg:#02030a;
  --card:#070914;
  --accent:#2bff85;
  --accent-soft:#1ad16a;
  --text:#f7f8ff;
  --muted:#a9b4cf;
  --border-soft:rgba(255,255,255,0.06);
}

html,body{
  margin:0;
  padding:0;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:radial-gradient(circle at top,#16192b 0,#02030a 45%,#000 100%);
  color:var(--text);
}

body{
  min-height:100vh;
}

/* Layout */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px 40px;
}

/* Header */
.top{
  position:sticky;
  top:0;
  z-index:30;
  background:linear-gradient(to bottom,rgba(0,0,0,0.96),rgba(0,0,0,0.85));
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.wrap-header{
  max-width:1100px;
  margin:0 auto;
  padding:10px 16px;
  display:flex;
  align-items:center;
  gap:14px;
}
#ishafun-logo svg{
  display:block;
}

/* nav */
.nav{
  display:flex;
  gap:14px;
  margin-left:20px;
  font-size:14px;
}
.nav a{
  color:var(--muted);
  text-decoration:none;
  padding:6px 8px;
  border-radius:999px;
}
.nav a:hover{
  background:rgba(255,255,255,0.08);
  color:var(--text);
}

.header-ctas{
  margin-left:auto;
  display:flex;
  align-items:center;
}

/* buttons */
.btn{
  border-radius:999px;
  padding:7px 14px;
  border:none;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
}
.btn.whatsapp{
  background:#25D366;
  color:#02030a;
}
.btn.whatsapp.big{
  padding:10px 20px;
  font-size:15px;
}
.btn.primary{
  background:var(--accent-soft);
  color:#02030a;
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap:24px;
  padding:28px 0 22px;
}
.hero-left h1{
  font-family:"Playfair Display",serif;
  font-size:32px;
  margin:0 0 10px;
}
.hero-left .muted{
  max-width:460px;
}
.hero-ctas{
  margin-top:16px;
  display:flex;
  gap:10px;
}
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  color:var(--text);
  text-decoration:none;
  font-size:14px;
}

.video-embed{
  background:#000;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 60px rgba(0,0,0,0.9);
}
.video-embed video{
  width:100%;
  display:block;
}

/* Sections / cards */
.section{
  margin-top:28px;
}
.card{
  background:var(--card);
  border-radius:20px;
  border:1px solid var(--border-soft);
  padding:18px 16px 18px;
  box-shadow:0 18px 60px rgba(0,0,0,0.85);
}
.card h2{
  font-family:"Playfair Display",serif;
  font-size:24px;
  margin:0 0 10px;
}
.card h3{
  font-size:17px;
  margin:12px 0 6px;
}
.muted{
  color:var(--muted);
  font-size:14px;
}
.muted.small{
  font-size:12px;
}

/* About */
.about-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  margin-top:8px;
}
.about-item{
  background:rgba(0,0,0,0.4);
  border-radius:14px;
  padding:10px 12px;
}

/* ===== FEATURED PROFILES – VIDEO GRID ===== */
.profile-video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:16px;
  margin-top:10px;
}
.profile-video-card{
  background:#05060d;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.06);
  padding:10px 10px 12px;
}
.profile-video-wrap{
  position:relative;
  width:100%;
  aspect-ratio:9/16; /* same vertical reels-style */
  overflow:hidden;
  border-radius:14px;
  background:#000;
}
.profile-video-wrap video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:14px;
}
.profile-video-card h3{
  margin:10px 0 4px;
  font-size:16px;
}
.profile-video-desc{
  margin:0;
  font-size:13px;
  line-height:1.5;
  color:#d3d9e8;
}

/* Booking / contact */
.booking-wrap{
  display:grid;
  grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  gap:18px;
  align-items:flex-start;
}
.booking-form{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.booking-form input,
.booking-form textarea{
  background:#050815;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.18);
  padding:8px 10px;
  font-size:14px;
  color:var(--text);
  font-family:inherit;
}
.booking-form textarea{
  min-height:90px;
  resize:vertical;
}
.booking-form input:focus,
.booking-form textarea:focus{
  outline:none;
  border-color:var(--accent);
}
.form-actions{
  margin-top:4px;
}
.form-msg{
  font-size:13px;
  margin-top:2px;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:12px;
  margin-top:10px;
}
.contact-grid a{
  color:var(--accent);
}

/* Footer */
.site-footer{
  border-top:1px solid rgba(255,255,255,0.08);
  background:#020309;
  padding:16px 0 20px;
}
.footer-inner{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:8px;
}
.logo.sm{
  width:32px;
  height:32px;
  border-radius:10px;
  background:#fdf3c2;
  color:#000;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:15px;
}
.footer-links{
  display:flex;
  gap:10px;
  font-size:13px;
}
.footer-links a{
  color:var(--muted);
  text-decoration:none;
}
.footer-copy{
  font-size:12px;
  color:var(--muted);
}

/* Hamburger + mobile nav */
.hamburger{
  display:none;
  margin-left:8px;
  background:none;
  border:none;
  cursor:pointer;
}
.hamburger-box{
  width:24px;
  height:18px;
  display:inline-block;
  position:relative;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after{
  position:absolute;
  width:24px;
  height:3px;
  border-radius:5px;
  background:#f8fafc;
  transition:transform .25s ease, top .25s ease, opacity .25s ease;
}
.hamburger-inner{
  top:7.5px;
}
.hamburger-inner::before{
  content:"";
  top:-7px;
}
.hamburger-inner::after{
  content:"";
  top:7px;
}
.hamburger.is-active .hamburger-inner{
  transform:rotate(45deg);
}
.hamburger.is-active .hamburger-inner::before{
  top:0;
  transform:rotate(-90deg);
}
.hamburger.is-active .hamburger-inner::after{
  top:0;
  opacity:0;
}

.mobile-menu{
  position:fixed;
  inset:0;
  display:none;
  z-index:25;
}
.mobile-menu.open{
  display:block;
}
.mobile-menu-inner{
  position:relative;
  max-width:260px;
  height:100%;
  background:#050815;
  border-right:1px solid rgba(255,255,255,0.14);
  padding:18px 14px;
}
.mobile-close{
  position:absolute;
  top:8px;
  right:8px;
  border:none;
  background:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}
.mobile-nav{
  margin-top:30px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobile-nav a{
  color:var(--text);
  text-decoration:none;
  font-size:15px;
}
.mobile-whatsapp{
  margin-top:16px;
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#25D366;
  color:#02030a;
  text-decoration:none;
  font-weight:600;
}
.mobile-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  left:260px;
}

/* Responsive */
@media(max-width:960px){
  .nav{
    display:none;
  }
  .hamburger{
    display:block;
  }
}
@media(max-width:768px){
  .hero{
    grid-template-columns:1fr;
  }
  .booking-wrap{
    grid-template-columns:1fr;
  }
  #ishafun-logo svg{
    width:260px;
    height:auto;
  }
}
@media(max-width:520px){
  .hero-left h1{
    font-size:26px;
  }
  .wrap-header{
    padding-inline:12px;
  }
  .card{
    padding-inline:14px;
  }
}

