/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    background-image: url(./DSC05545.jpeg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    
}
        /* Animation Keyframes */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
/* Apply animation to all content except footer background */
body > *:not(footer) {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1.5s ease-out forwards;
}

/* Target footer content for animation, excluding background */
footer .footer02-container,
footer .social-icons02 a,
footer p {
    opacity: 0;
    transform: translateY(-5px);
    animation: fadeInUp 1.5s ease-out forwards;
    animation-delay: 0.3s; /* Optional: Add delay for a staggered effect */
}
h1 {
    text-align: center;
    color: #fff; /* White text */
}


/* Social Media Section */
.social-media-section {
    text-align: center;
    padding: 30px 15px;
    background-color: #00000000; /* Black background */
    margin-bottom: -35px;
}

.social-media-section h1 {
    margin-bottom: 17px;
    font-size: 30px;
    margin-top: 5rem; 
}

.social-icons a {
    color: #fff;
    margin: 0 1.8rem 1rem;
    font-size: 5rem;
    transition: color 0.3s ease, transform 0.3s ease-in; /* Smooth transition for hover effect */
}

.social-icons a:hover {
    color: #ffffff; /* Light blue on hover */
    transform: scale(1.2); /* Scale up the icon */
}

/* Contact Form Section */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    min-height: 60vh;
}

.contact-form {
    background-color: #111111c9; /* Darker shade of black */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 80px rgba(255, 255, 255, 0.267); /* Subtle white shadow */
    width: 100%;
    max-width: 500px;
}

.contact-form h1 {
    color: #fff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff; /* White text */
}

input, textarea {
    width: 96%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #222; /* Darker background for inputs */
    color: #fff; /* White text */
    font-size: 14px;
}

input::placeholder, textarea::placeholder {
    color: #bbb; /* Subtle placeholder color */
}

button {
    width: 100%;
    padding: 10px;
    background-color: #fff; /* White button */
    color: #000; /* Black text for the button */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #ddd; /* Lighter hover effect */
    color: #000;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 10px;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .social-icons img {
        width: 40px;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .social-icons img {
        width: 30px;
    }

    .contact-form {
        padding: 15px;
    }

    button {
        font-size: 14px;
    }
}

header {
    background-color: #000000; /* Black with 70% opacity */
    background: linear-gradient(180deg, #000000, #00000071, #00000000);
    width: 100%; /* Adjusted width */
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    font-family:  'Times New Roman', Times, serif;
  }
  
  .navbar {
      font-family: 'Times New Roman', Times, serif;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-left: 18px;
      margin-top: 20px;
      animation: fadeInUp 1.5s ease-out forwards; /* Apply fade-in animation */
  }
  
  .navbar .logo {
      font-size: 1.4rem;
      font-weight: bold;
      color: #ffffff;
      text-decoration: none;
      transition: transform 0.3s ease-in;
      font-family:  'Times New Roman', Times, serif;
      
  }
  
  .navbar ul {
      list-style: none;
      display: flex;
      gap: 0rem;
  }
  
  .navbar a {
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
  }
  
  .navbar a:hover {
      color: #ffffff;
      transform: scale(1.2);
      transition: transform 0.3s ease-in;
  }

  /* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 5rem;
    }
    .social-icons a {
        font-size: 4rem;
    }
    .contact-form {
        padding: 15px;
    }
    .navbar {
        margin-left: 14px;
    }
}
@media (max-width: 450px) {
    .navbar {
        margin-left: 10px
        }

}
@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    .social-icons a {
        font-size: 3rem;
    }
    button {
        font-size: 0.9rem;
    }
    .navbar {
        margin-left: 15px;
    }
}


/* Add breakpoints for very small devices */
@media (max-width: 320px) {
    .social-icons a {
        font-size: 1.8rem;
    }
    button {
        font-size: 0.8rem;
    }
}

footer {
    background-color: #ffffff; /* Black background */
    width: auto;
    color: #000000; /* White text */
    text-align: center;
    padding: 0.4rem 1rem;
    margin-top: 16.5px;
    font-family: 'Times New Roman', Times, serif;
    }
    
    .footer02-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-family: 'Times New Roman', Times, serif;
    }
    
    .social-icons02 a {
    color: #000000;
    margin: 0 1rem 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    }
    
    .social-icons02 a:hover {
    color: #3d7fe2; /* Light blue on hover */
    transform: scale(1.2);
    }
    
    
    @media (max-width: 550px) {
    footer .social-icons02 a {
        font-size: 1.2rem;
    
        
    }
    }
    @media (max-width: 415px) {
    footer .social-icons02 a {
        font-size: 1.2rem;
    }
    }
