/* Global Settings */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}
/* Colors */
:root {
  --gold: #FFD700;
  --dark: #000;
  --light: #222;
}

/* Navigation links */
header {
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 8%;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--gold);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}


/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
  url('media/hero-bg.png') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10%;
}
.hero h2 {
  font-size: 2.8rem;
}
.hero span {
  color: var(--gold);
}
.hero p {
  margin-top: 10px;
  font-size: 1.2rem;
}
.btn {
  background: var(--gold);
  color: #000;
  padding: 12px 24px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
}
.btn:hover {
  background: #fff;
  color: #000;
}
/* Sections */
.section {
  padding: 80px 10%;
  text-align: center;
}
.section.dark {
  background: var(--light);
}
.section-title {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 40px;
}

/* About me section */
.section-content {
  max-width: 700px;
  margin: auto;
}

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  max-width: 600px;
  margin: auto;
}
.skill-card {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  font-weight: bold;
}
.skill-card:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.05);
}

/* Education section */
.plp {
    text-decoration: none;
    color: #FFD700;
}
.plp:hover {
    text-decoration: underline;
}

/* Interests section */
.interests-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  text-align: left;
}

.interests-list li {
  background: #111;
  padding: 12px 20px;
  margin-bottom: 12px;
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  transition: background 0.3s;
}

.interests-list li:hover {
  background: var(--gold);
  color: #000;
}


/* Projects  section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.project-card {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: translateY(-10px);
}
.project-card h3 {
  color: var(--gold);
  font-size: 1.2rem;
}

/* Contact */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-family: inherit;
}
.contact-form button {
  background: var(--gold);
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
.contact-form button:hover {
  background: #fff;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 20px;
  color: #888;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}
.fade-in.delay1 { animation-delay: 0.3s; }
.fade-in.delay2 { animation-delay: 0.6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }
  .nav-links {
    flex-direction: column;
    gap: 4px;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}