/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Raleway', sans-serif;
  scroll-behavior: smooth;
}

/* Background */
body {
  background: linear-gradient(
    rgba(60, 0, 90, 0.85), 
    rgba(40, 0, 60, 0.85)
  ), url('assets/background.jpg') no-repeat center center/cover;
}

.logo-img {
  height: 90px;
  margin-right: 40px;
  vertical-align: middle;
}
.nav-logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  gap: 8px;
}


/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(30, 0, 60, 0.9);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff6ec7;
}

/* Overlay */
.background-overlay {
  color: white;
  padding: 60px 20px;
}

/* Intro */
.intro {
  text-align: center;
  padding: 60px 0;
}

.profile {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffd700;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.intro-text {
  max-width: 500px;
  text-align: center;
}

.intro h1 {
  font-size: 3rem;
  animation: slideIn 1s ease-out;
}

.intro p {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #e0e0e0;
}

/* Sections */
section {
  max-width: 800px;
  margin: 60px auto;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd700;
}

ul {
  list-style-type: none;
}

ul li {
  background-color: rgba(255, 255, 255, 0.08);
  margin: 10px 0;
  padding: 12px 18px;
  border-left: 4px solid #4dd0e1;
  border-radius: 8px;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

form input, form textarea {
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  padding: 12px;
  background-color: #ffd700;
  color: #3a0066;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #ff6ec7;
  color: white;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 80px;
  font-size: 0.9rem;
  color: #ddd;
}

footer a {
  margin: 0 8px;
  color: #ffd700;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #ff6ec7;
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links li {
    margin-bottom: 10px;
  }

  .intro h1 {
    font-size: 2.2rem;
  }

  .intro p {
    font-size: 1rem;
  }

  section {
    padding: 0 15px;
  }

  form input, form textarea {
    font-size: 0.9rem;
  }
}
