/* ==========================================
   NINA NOVA TV — ENIGMATIC CREATOR THEME
   Warm • Intimate • Calm
   DESKTOP FIRST
   ========================================== */


/* ==========================================
   FONTS
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter+Tight:wght@400;600;700;800&display=swap');


/* ==========================================
   ROOT VARIABLES
   ========================================== */
:root{
  --bg-main:#07070b;
  --bg-panel:#111118;
  --bg-soft:#161622;

  --text-main:#f4f4f8;
  --text-muted:#bdb9d1;

  --pink:#ff4fa0;
  --purple:#a12bff;
  --orange:#ff8c32;

  --radius-lg:26px;
  --radius-md:18px;
  --radius-sm:12px;

  --blur: blur(18px) saturate(160%);
  --glow: 0 0 32px rgba(255,79,160,.38);
  --transition:.35s cubic-bezier(.4,0,.2,1);
}


/* ==========================================
   RESET / BASE
   ========================================== */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html,body{
  min-height:100%;
  background:var(--bg-main);
  color:var(--text-main);
  font-family:'Inter Tight',sans-serif;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}


/* ==========================================
   BACKGROUND
   ========================================== */
body.has-bg{
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("images/4.png") center / cover no-repeat fixed;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(480px 320px at 20% 30%, rgba(255,79,160,.14), transparent 60%),
    radial-gradient(420px 320px at 80% 20%, rgba(161,43,255,.14), transparent 70%);
  z-index:-1;
}


/* ==========================================
   NAVBAR (DESKTOP)
   ========================================== */
.nav{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:var(--blur);
  background:rgba(10,10,16,.85);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav-inner{
  max-width:1100px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:14px;
}

.brand{
  font-family:'Anton',sans-serif;
  font-size:1.9rem;
  letter-spacing:.5px;
  display:flex;
  align-items:baseline;
  gap:4px;
}

.brand span{color:var(--pink)}
.brand em{font-style:normal;color:var(--orange);font-size:.9em}

.location-strong{
  margin-left:auto;
  font-size:.95rem;
  font-weight:600;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}


/* ==========================================
   HAMBURGER + MOBILE MENU
   ========================================== */
.hamburger{
  display:none;
  margin-left:10px;
  background:none;
  border:none;
  cursor:pointer;
}

.hamburger span{
  display:block;
  width:26px;
  height:2px;
  background:#fff;
  margin:5px 0;
}

.mobile-menu{
  display:none;
  flex-direction:column;
  background:rgba(12,12,18,.96);
  border-top:1px solid rgba(255,255,255,.08);
}

.mobile-menu.open{display:flex}

.mobile-menu a{
  padding:18px 22px;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-weight:700;
}


/* ==========================================
   BUTTONS
   ========================================== */
.btn{
  padding:14px 34px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  border:none;
  background:linear-gradient(135deg,var(--pink),var(--purple));
  color:#fff;
  box-shadow:var(--glow);
  transition:var(--transition);
}

.btn:hover{
  transform:translateY(-2px);
}

.btn.ghost{
  background:transparent;
  border:2px solid var(--purple);
  color:var(--pink);
  box-shadow:none;
}


/* ==========================================
   CTA BLOCKS
   ========================================== */
.cta{
  display:flex;
  gap:16px;
  margin-top:32px;
  align-items:center;
  flex-wrap:wrap;
}

.cta.monetisation{
  margin-top:36px;
}

.cta-subtle{
  margin-top:14px;
  font-size:.95rem;
  color:var(--text-muted);
}


/* ==========================================
   HERO
   ========================================== */
.hero{
  max-width:1100px;
  margin:46px auto;
  padding:70px 28px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:42px;
  background:rgba(18,18,26,.7);
  backdrop-filter:var(--blur);
  border-radius:var(--radius-lg);
}

.hero h1{
  font-family:'Anton',sans-serif;
  font-size:clamp(2.3rem,5vw,4.1rem);
  background:linear-gradient(90deg,var(--purple),var(--pink),var(--orange));
  -webkit-background-clip:text;
  color:transparent;
}

.hero p{
  margin-top:16px;
  color:var(--text-muted);
  font-size:1.08rem;
}

.hero p + p{
  margin-top:12px;
}


/* ==========================================
   HERO IMAGES
   ========================================== */
.hero-image-wrap{
  display:flex;
  flex-direction:column;
  gap:26px;
  align-items:center;
}

.hero-portrait{
  max-width:340px;
  border-radius:var(--radius-md);
  box-shadow:0 0 48px rgba(255,79,160,.25);
}


/* ==========================================
   CHAT PREVIEW (HOMEPAGE)
   ========================================== */
.chat-preview{
  margin-top:34px;
  background:rgba(14,14,20,.75);
  border-radius:var(--radius-md);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}

.chat-preview-header,
.chat-preview-footer{
  padding:12px 16px;
  font-size:.85rem;
  opacity:.8;
}

.chat-preview-body{
  padding:14px 16px;
}

.msg.nina{
  background:rgba(255,255,255,.06);
  padding:10px 14px;
  border-radius:14px;
  margin-bottom:8px;
  width:fit-content;
}


/* ==========================================
   CHAT PAGE — RESTORED AESTHETIC
   ========================================== */
.contact-hero{
  max-width:1100px;
  margin:46px auto;
  padding:70px 28px;
  background:rgba(18,18,26,.72);
  backdrop-filter:var(--blur);
  border-radius:var(--radius-lg);
}

.contact-hero h1{
  font-family:'Anton',sans-serif;
  font-size:clamp(2.1rem,4vw,3.4rem);
  background:linear-gradient(90deg,var(--purple),var(--pink));
  -webkit-background-clip:text;
  color:transparent;
}

.contact-hero p{
  margin-top:16px;
  color:var(--text-muted);
  font-size:1.05rem;
}

.chat-box{
  margin-top:36px;
  background:rgba(14,14,20,.75);
  border-radius:var(--radius-md);
  border:1px solid rgba(255,255,255,.1);
  overflow:hidden;
}

.chat-header{
  padding:14px 16px;
  font-weight:800;
  border-bottom:1px solid rgba(255,255,255,.08);
}

#chat-messages{
  padding:16px;
  max-height:360px;
  overflow-y:auto;
}

.msg.user{
  margin-left:auto;
  background:linear-gradient(135deg,var(--pink),var(--purple));
  color:#fff;
  padding:10px 14px;
  border-radius:14px;
  max-width:75%;
}

.chat-input{
  display:flex;
  gap:10px;
  padding:14px;
  border-top:1px solid rgba(255,255,255,.08);
}

.chat-input input{
  flex:1;
  background:rgba(255,255,255,.06);
  border:none;
  border-radius:999px;
  padding:12px 16px;
  color:#fff;
}

.chat-input button{
  border-radius:999px;
  padding:12px 20px;
  background:linear-gradient(135deg,var(--pink),var(--purple));
  border:none;
  color:#fff;
  font-weight:800;
}


/* ==========================================
   LINKS
   ========================================== */
.links{
  margin-top:44px;
  display:grid;
  gap:18px;
}

.links a{
  padding:20px 22px;
  border-radius:var(--radius-md);
  background:var(--bg-panel);
  border:1px solid rgba(255,255,255,.08);
  text-align:center;
  font-weight:800;
}


/* ==========================================
   FOOTER
   ========================================== */
.footer{
  margin-top:72px;
  padding:46px 18px;
  text-align:center;
  color:var(--text-muted);
  background:rgba(10,10,14,.65);
}


/* ======================================================================
   =====================  MOBILE OVERRIDES START  ========================
   ====================================================================== */


/* ≤1024px */
@media (max-width:1024px){
  .hamburger{display:block}
  .nav-cta{display:none}
}


/* ≤768px */
@media (max-width:768px){

  .location-strong{display:none}

  .nav-inner{padding:12px 14px}

  .brand{font-size:1.55rem}

  .hero,
  .contact-hero{
    margin:18px 12px;
    padding:36px 18px;
    grid-template-columns:1fr;
    gap:26px;
    border-radius:20px;
  }

  .hero h1,
  .contact-hero h1{
    font-size:2.4rem;
    line-height:1.15;
  }

  .hero p,
  .contact-hero p{
    font-size:1rem;
    margin-top:12px;
  }

  .cta{
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    margin-top:26px;
  }

  .btn{
    width:100%;
    padding:16px;
    font-size:1rem;
  }

  .hero-image-wrap{gap:16px}

  .hero-portrait{max-width:260px}

  .links{
    margin-top:32px;
    gap:12px;
  }

  .links a{
    padding:16px;
    font-size:.95rem;
  }

  .footer{
    margin-top:40px;
    padding:32px 16px;
    font-size:.9rem;
  }
}


/* ==========================================
   ≤380px (SMALL PHONES – MODERN)
   ========================================== */
@media (max-width:380px){

  .nav-inner{
    padding:11px 13px;
  }

  .brand{
    font-size:1.5rem;
  }

  .hero,
  .contact-hero{
    margin:16px 11px;
    padding:34px 16px;
  }

  .hero h1,
  .contact-hero h1{
    font-size:2.25rem;
    line-height:1.14;
  }

  .hero p,
  .contact-hero p{
    font-size:1rem;
  }

  .btn{
    padding:15px;
    font-size:.98rem;
  }

  .hero-portrait{
    max-width:250px;
  }
}


/* ==========================================
   ≤360px (SMALL PHONES)
   ========================================== */
@media (max-width:360px){

  .nav-inner{
    padding:10px 12px;
  }

  .brand{
    font-size:1.45rem;
  }

  .hero,
  .contact-hero{
    margin:15px 10px;
    padding:32px 15px;
  }

  .hero h1,
  .contact-hero h1{
    font-size:2.1rem;
    line-height:1.13;
  }

  .hero p,
  .contact-hero p{
    font-size:.97rem;
  }

  .btn{
    padding:14px;
    font-size:.96rem;
  }

  .hero-portrait{
    max-width:240px;
  }

  .links a{
    padding:15px;
    font-size:.92rem;
  }
}


/* ==========================================
   ≤340px (COMPACT MODERN PHONES)
   ========================================== */
@media (max-width:340px){

  .nav-inner{
    padding:10px 12px;
  }

  .brand{
    font-size:1.38rem;
  }

  .hero,
  .contact-hero{
    margin:15px 10px;
    padding:30px 14px;
  }

  .hero h1,
  .contact-hero h1{
    font-size:2rem;
    line-height:1.13;
  }

  .hero p,
  .contact-hero p{
    font-size:.96rem;
  }

  .btn{
    padding:14px;
    font-size:.95rem;
  }

  .hero-portrait{
    max-width:235px;
  }

  .links a{
    padding:15px;
    font-size:.92rem;
  }
}
/* ==========================================
   ≤320px (VERY SMALL / OLDER PHONES)
   ========================================== */
@media (max-width:320px){

  .nav-inner{
    padding:10px 12px;
  }

  .brand{
    font-size:1.34rem;
  }

  .hero,
  .contact-hero{
    margin:15px 10px;
    padding:30px 14px;
  }

  .hero h1,
  .contact-hero h1{
    font-size:1.9rem;
    line-height:1.14;
  }

  .hero p,
  .contact-hero p{
    font-size:.95rem;
  }

  .btn{
    padding:14px;
    font-size:.94rem;
  }

  .hero-portrait{
    max-width:230px;
  }

  .links a{
    padding:15px;
    font-size:.9rem;
  }
}
