/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Light grey text */
  background-color: #121212; /* Dark background */
}

a {
  text-decoration: none;
  color: #00afff; /* Vibrant light blue accent for links */
}

a:hover {
  color: #ccefff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

h1, h2, h3 {
  color: #ffffff; /* White headings */
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1f1f1f; /* Dark grey header */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00afff; /* Light blue logo */
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #e0e0e0;
  font-weight: 500;
}

.nav-links a:hover {
  color: #ccefff;
  text-decoration: underline;
}

/* Hero Section */
#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  text-align: center;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #00afff; /* Light blue button */
  color: #ffffff;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ccefff;
  transform: translateY(-3px);
}

/* About Section */
#about {
  background: #1e1e1e;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.skills {
  margin-top: 20px;
}

.skills ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills li {
  background: #2d2d2d;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #e0e0e0;
  border: 1px solid #444;
}

/* Projects Section */
#projects {
  background: #1a1a1a;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background: #252525;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.project-img {
  width: 100%;
  height: 200px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 2rem;
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  margin-bottom: 10px;
}

.project-info p {
  color: #cccccc;
  margin-bottom: 15px;
}

.project-links a {
  margin-right: 15px;
  font-weight: 500;
}

/* Blog Section (Optional) */
#blog {
  background: #1e1e1e;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-card {
  border: 1px solid #333;
  border-radius: 10px;
  padding: 20px;
  background: #252525;
}

.blog-card h3 {
  margin-bottom: 10px;
}

.blog-card p {
  color: #cccccc;
  margin-bottom: 10px;
}

.blog-card .read-more {
  font-weight: 500;
  color: #00afff;
}

/* Contact Section */
#contact {
  background: #1a1a1a;
}

#contact h2 {
  color: white;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #444;
  background: #2d2d2d;
  color: #e0e0e0;
  border-radius: 5px;
}

button {
  background: #00afff;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

button:hover {
  background: #ccefff;
}

.social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 1.5rem;
}

.social-links a {
  color: #e0e0e0;
}

.social-links a:hover {
  color: #00afff;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  background: #121212;
  color: #888;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
	flex-direction: column;
  }

  .hero-content h1 {
	font-size: 2.5rem;
  }

  .hero-content p {
	font-size: 1.1rem;
  }

  .nav-links {
	flex-direction: column;
	gap: 15px;
  }
}