/* Global Reset & Font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: #000;
  color: #f9f9f9;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background: #111;
  padding: 12px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.05);
}

.logo {
  color: gold;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}

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

.nav-links a {
  color: #f9f9f9;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: gold;
}

/* Hero */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: #111;
}

.profile-pic {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 4px solid gold;
  object-fit: cover;
  margin-bottom: 20px;
}

.hero h1 {
  color: gold;
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.hero p {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.btn,
.btn-outline {
  padding: 12px 26px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn {
  background-color: gold;
  color: black;
  border: none;
}

.btn:hover {
  background-color: #ffcc00;
}

.btn-outline {
  border: 2px solid gold;
  background: transparent;
  color: gold;
}

.btn-outline:hover {
  background-color: gold;
  color: black;
}

/* Sections */
.section {
  padding: 60px 10%;
  text-align: center;
}

.section h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Card Layout */
.card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 25px;
  max-width: 700px;
  margin: 20px auto;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
  text-align: left;
}

/* Footer */
footer {
  background-color: #111;
  padding: 20px;
  text-align: center;
  border-top: 1px solid #222;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-links img {
  filter: brightness(1.5);
  transition: transform 0.3s ease;
}

.footer-links img:hover {
  transform: scale(1.2);
}

footer p {
  color: #999;
  font-size: 0.9rem;
}

/* Links */
a {
  color: gold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ddd;
}


/* Responsive */
@media (max-width: 768px) {
  .profile-pic {
    width: 180px;
    height: 180px;
  }

  .card {
    width: 90%;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 15px;
  }
}
