 /* =====================================================
   GLOBAL RESET & BASE STYLES
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(circle at top, #020617, #000);
  color: #e5e7eb;
  overflow-x: hidden;
}

/*=====================================================
   GLASS EFFECT
  =====================================================*/

.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  border-radius: 16px;
}

/* =====================================================
   NAVBAR
  =====================================================*/

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.nav-left {
  font-size: 22px;
  font-weight: 600;
}

.nav-left span {
  color: #38bdf8;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: #38bdf8;
}
/* 
/ =====================================================
   HERO SECTION
===================================================== / */

.hero {
  min-height: 100vh;
  padding-top: 140px;
  position: relative;
  
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(56,189,248,0.08), transparent 70%);
  z-index: -1;
}

.hero-container {
  max-width: 1300px;
  width: 92%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

/* / PROFILE IMAGE / */
.profile-wrapper {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  padding: 10px;

  /* DARK BLUE RING */
  background: #0f2745;

  /* OUTER GLOW */
  border:4px solid #38bdf8;
  box-shadow:
    0 0 30px rgba(56,189,248,0.6),
    0 0 70px rgba(56,189,248,0.35),
    0 0 120px rgba(56,189,248,0.18);
  animation:float 3s ease-in-out infinite;
}

.profile-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;


  /* REMOVE glow from image */
  box-shadow: none;
}


/* / TEXT / */

.hero-right h1 {
  font-size: 80px;
}

.hero-right h1 span {
  color: #38bdf8;
}

.subtitle {
  margin-top: 10px;
  color: #94a3b8;
}

/* / BADGES / */

.badges {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badges span {
  padding: 8px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

/* / INFO CARDS / */

.info-cards {
  display: flex;
  gap: 20px;
  margin: 24px 0;
}

.info-card {
  padding: 14px 18px;
  font-size: 14px;
}

/* / SOCIAL ICONS / */

.socials {
  margin-top: 20px;
  display: flex;
  gap: 18px;
}

.socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  transition: 0.3s;
}

.socials a:hover {
  background: #38bdf8;
  transform: scale(1.1);
}

/* / FLOAT ANIMATION / */

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* =====================================================
   ELEVENLABS WIDGET STYLE
===================================================== */

elevenlabs-agent {
  --accent-color: #38bdf8;
  --background: rgba(20, 20, 30, 0.9);
  --border-radius: 18px;
}

/* =====================================================
   HOME PAGE MOBILE RESPONSIVE
===================================================== */

@media (max-width: 900px) {

  /* HERO LAYOUT -> SINGLE COLUMN */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  /* PROFILE IMAGE SMALLER */
  .profile-wrapper {
    width: 240px;
    height: 240px;
    margin: auto;
  }

  /* HEADING SIZE */
  .hero-right h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 14px;
  }

  /* BADGES CENTER */
  .badges {
    justify-content: center;
  }

  /* INFO CARDS STACK */
  .info-cards {
    flex-direction: column;
    align-items: center;
  }

  .info-card {
    width: 100%;
    max-width: 300px;
  }

  /* SOCIAL ICONS CENTER */
  .socials {
    justify-content: center;
  }
}


/* SMALL PHONES */
@media (max-width: 500px) {

  .hero-right h1 {
    font-size: 34px;
  }

  .profile-wrapper {
    width: 200px;
    height: 200px;
  }

  .nav-links {
    display: none;
  }
}


/* =====================================================
   GLOBAL MOBILE NAVBAR
===================================================== */

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #38bdf8;
}

/* Mobile Navbar */
@media (max-width: 900px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;

    background: rgba(2,6,23,0.95);
    backdrop-filter: blur(16px);

    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px 0;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}
