/* ==============================
   Base Reset & Body
   ============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==============================
   Glass Effect Container
   ============================== */
.glass-effect {
  background: rgba(30, 30, 30, 0.35);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 189, 57, 0.18);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

/* ==============================
   Navbar
   ============================== */
.navbar {
  background: rgba(10, 10, 10, 0.92);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 189, 57, 0.12);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffbd39;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-menu a {
  color: #ddd;
  font-size: 1.05rem;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ffbd39;
}

/* ==============================
   Hero Section
   ============================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
}

.hero-content {
  width: 100%;
  padding: 120px 20px 80px;
}

.profile-name-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.profile-image {
  flex-shrink: 0;
}

.profile-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid rgba(255,189,57,0.35);
  box-shadow: 0 0 60px rgba(255,189,57,0.4);
}

.hero-text {
  max-width: 720px;
}

.home-title {
  font-size: 3.4rem;
  line-height: 1.15;
  background: linear-gradient(90deg, #ffffff, #ffbd39);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-subtitle {
  font-size: 2rem;
  color: #ffbd39;
  margin: 20px 0 30px;
}

.home-description {
  font-size: 1.3rem;
  color: #ccc;
  max-width: 650px;
}

/* ==============================
   Social Links & Buttons
   ============================== */
.social-links {
  display: flex;
  gap: 35px;
  margin: 50px 0;
}

.social-links a {
  font-size: 2.2rem;
  color: #ddd;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ffbd39;
  transform: translateY(-6px);
}

.cta-buttons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 50px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(45deg, #ffbd39, #ffa500);
  color: #111;
}

.btn-secondary {
  border: 2px solid #ffbd39;
  color: #ffbd39;
  background: transparent;
}

/* ==============================
   Common Sections
   ============================== */
.section {
  padding: 120px 0;
  background: #0f0f0f;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  color: #ffbd39;
  margin-bottom: 70px;
}

/* ==============================
   Footer
   ============================== */
.footer {
  background: #000;
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
}

/* ==============================
   Responsive Fix (Tablet & Mobile)
   ============================== */
@media (max-width: 992px) {
  .profile-name-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-text {
    text-align: center;
  }

  .home-title {
    font-size: 2.8rem;
  }

  .home-subtitle {
    font-size: 1.7rem;
  }

  .home-description {
    font-size: 1.15rem;
    margin: 0 auto;
  }

  .social-links,
  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .home-title {
    font-size: 2.3rem;
  }

  .home-subtitle {
    font-size: 1.5rem;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }
}