/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a1a;
    color: #fff;
    transition: background-color 0.3s, color 0.3s;
  }
  
  body.light-mode {
    background-color: #f4f4f4;
    color: #333;
  }
  
  /* Ironman Theme Styles */
  body.ironman-mode {
    background-color: #000;
    color: #fff;
  }
  
  body.ironman-mode .navbar {
    background-color: #b11313; /* Ironman Red */
  }
  
  body.ironman-mode .btn, body.ironman-mode .skills span, body.ironman-mode .contact-form button {
    background-color: #b11313; /* Ironman Red */
  }
  
  body.ironman-mode .btn:hover, body.ironman-mode .contact-form button:hover {
    background-color: #ff8c42; /* Ironman Gold */
  }
  
  body.ironman-mode .project-card {
    background-color: #333;
  }
  
  body.ironman-mode .project-card:hover {
    background-color: #b11313; /* Ironman Red */
  }
  
  /* Header and Navbar */
  .header {
    background-color: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
  }
  
  .navbar .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff5722;
  }
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .navbar .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .navbar .nav-links a:hover {
    color: #ff5722;
  }
  
  .navbar .theme-toggle {
    cursor: pointer;
    color: #fff;
  }
  
  .navbar .theme-toggle:hover {
    color: #ff5722;
  }
  
  .navbar .hamburger {
    display: none;
    cursor: pointer;
    color: #fff;
  }
  
  .navbar .hamburger:hover {
    color: #ff5722;
  }
  
  /* Home Section */
  .home-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  
  .home-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
  }
  
  .home-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-in-out;
  }
  
  .btn {
    padding: 10px 20px;
    background-color: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    animation: fadeIn 1s ease-in-out;
  }
  
  .btn:hover {
    background-color: #e64a19;
  }
  
  /* About Section */
  .about-section {
    padding: 80px 10%;
    text-align: center;
  }
  
  .about-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in-out;
  }
  
  .skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }
  
  .skills span {
    padding: 10px 20px;
    background-color: #ff5722;
    border-radius: 5px;
    animation: fadeIn 1s ease-in-out;
  }
  
  /* Projects Section */
  .projects-section {
    padding: 80px 10%;
    text-align: center;
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .project-card {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, background-color 0.3s;
    animation: fadeInUp 1s ease-in-out;
  }
  
  body.light-mode .project-card {
    background-color: #fff;
    color: #333; /* Ensure text is visible in light mode */
    border: 1px solid #ddd; /* Add border for better visibility */
  }
  
  .project-card:hover {
    transform: translateY(-10px);
  }
  
  /* Contact Section */
  .contact-section {
    padding: 80px 10%;
    text-align: center;
  }
  
  .contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeIn 1s ease-in-out;
  }
  
  .contact-form input, .contact-form textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
  }
  
  body.light-mode .contact-form input,
  body.light-mode .contact-form textarea {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
  }
  
  .contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #ccc;
  }
  
  body.light-mode .contact-form input::placeholder,
  body.light-mode .contact-form textarea::placeholder {
    color: #888;
  }
  
  .contact-form button {
    padding: 10px;
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #e64a19;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
  }
  
  .social-links {
    margin-top: 10px;
  }
  
  .social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
  
  .social-links a:hover {
    color: #ff5722;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Particle Animation */
  #particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 10%;
      background-color: #333;
      padding: 20px;
      border-radius: 10px;
    }
  
    .navbar .nav-links.active {
      display: flex;
    }
  
    .navbar .hamburger {
      display: block;
    }
  
    .home-content h1 {
      font-size: 2.5rem;
    }
  
    .home-content p {
      font-size: 1.2rem;
    }
  }
  
  /* Custom Font for Azar */
  @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Pacifico&display=swap');
  
  .highlight-azar {
    font-family: 'Orbitron', sans-serif; /* Futuristic font */
    font-size: 4rem; /* Match the h1 size */
    background: linear-gradient(45deg, #ff5722, #ffc107); /* Default gradient */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
