
body {
  font-family: 'Roboto', sans-serif;
  color: white;
  
}

section {
  padding: 50px 0;
  text-align: center;
}

.header-image {
  text-align: center;
  margin-bottom: 20px;
}

.header-image img {
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transition: transform 0.3s ease;
}

.header-image img:hover {
  transform: scale(1.1); /* Zoom in a bit on hover */
}

h1 {
  font-size: 48px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1);
  }
}

/* Rotating guitar animation */
.guitar-image {
  position: relative;
}

.guitar-image img {
  width: 200px;
  height: auto;
  animation: rotate 8s infinite linear;
  transform-origin: center center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  animation: fadeInAnimation 1s ease-in-out forwards;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Particle effect background */
.particles-js-canvas-el {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

 h2, h3 {
  color: black;
  margin-bottom: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

/* ... Existing CSS code ... */

/* Home section styles */
#home {
  background-color: #2D2727;
  padding: 80px 0;
  text-align: center;
}

.profile-image {
  opacity: 0;
  animation: fade-in 1s ease-in-out forwards;
}

@keyframes fade-in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

h1, p {
  opacity: 0;
  animation: fade-in-delayed 1s ease-in-out forwards;
}

@keyframes fade-in-delayed {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes text-animation {
  0% {
    opacity: 0;
    transform: translateY(-50px) rotateZ(0deg);
  }
  50% {
    opacity: 1;
    transform: translateY(0) rotateZ(360deg);
  }
  100% {
    opacity: 1;
    transform: translateY(-50px) rotateZ(0deg);
  }
}




/* ... Existing CSS code ... */

/* Header styles */
#home {
  text-align: center;
  padding: 100px 0;
}

.header-image img {
  width: 300px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

h1 {
  font-size: 56px;
  margin-top: 30px;
  opacity: 0;
  animation: text-animation 1.5s ease-in-out forwards;
}

p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0;
  animation: text-animation 1.5s ease-in-out forwards;
}
.p1{
  font-size: 20px;
  margin-top: 20px;
}
/* ... Existing CSS code ... */

/* Home section styles */


/* Contact section styles */
#contact {
  background-color: whitesmoke;
  padding: 80px 0;
  color: white;
}

#contact h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

#contact-form {
  max-width: 500px;
  margin: 0 auto;
}

#contact-form .form-group {
  margin-bottom: 20px;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: black;
  border: none;
  border-radius: 4px;
  color: white;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

#contact-form .error {
  color: red;
  margin-top: 5px;
  font-size: 14px;
}

#contact-form button {
  padding: 12px 24px;
  font-size: 16px;
  background-color: black;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#contact-form button:hover {
  background-color: #222;
}

#success-message {
  color: #00cc66;
  font-size: 18px;
  margin-top: 10px;
}


/* Social media icons */
.social-media {
  margin-top: 20px;
}

.social-media a {
  display: inline-block;
  margin: 0 8px;
  transition: transform 0.3s ease;
}

.social-media a:hover {
  transform: translateY(-3px);
}

.social-media img {
  width: 32px;
  height: 32px;
}

/* Footer styles */
footer {
  background-color: #222;
  padding: 20px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

footer p {
  font-size: 14px;
  margin-bottom: 5px;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: ivory;
}
.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}
/* ... Existing CSS code ... */

/* hello section styles */
#hello {
  background-color: whitesmoke;
  padding: 80px 0;
  color: black; /* Set the text color to black */
}

#hello h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: black; /* Set the heading color to black */
}

#hello p1 {
  font-size: 18px;
  margin-bottom: 40px;
  color: black; /* Set the paragraph text color to black */
}


.container {
    position: relative;
    overflow: hidden;
}

.hello-container {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.hobby {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.hobby img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.hobby p1 {
    text-align: center;
}

/* Animation */
.hello-container {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.hello-container.show {
    opacity: 1;
    transform: translateY(0);
}
.hello-container {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hello-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.hello-content.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hobbies {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hobby {
  width: calc(33.33% - 20px);
  margin-bottom: 40px;
}

.hobby img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.hobby p {
  margin-top: 10px;
  color: black; /* Set the hobby description text color to black */
}
/* ... Existing CSS code ... */

.hobby {
  position: relative;
  overflow: hidden;
}

.hobby img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.hobby:hover img {
  transform: scale(1.1);
  opacity: 0.7;
}

.hobby .popup-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}

.hobby:hover .popup-image {
  display: flex;
}

.hobby .popup-image img {
  max-width: 90%;
  max-height: 90%;
}

.hobby p {
  margin-top: 10px;
  color: black; /* Set the hobby description text color to black */
}

/* Responsive styles */
@media (max-width: 768px) {
  .hobby {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .hobby {
    width: 100%;
  }
}

/* hello section styles */
#hello {
  background-color: #f8f8f8;
  padding: 80px 0;
  color: #000;
  text-align: center;
}

#hello h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #000;
}

/* Improved hobbies container styles */
.hobbies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 40px;
}

.hobby {
  flex: 1 0 300px;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added box-shadow animation */
  max-width: 350px;
}

.hobby:hover {
  transform: translateY(-5px) scale(1.05); /* Slight lift on hover */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); /* More pronounced shadow on hover */
}

.hobby img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.hobby-description {
  padding: 15px;
  color: #333;
  font-size: 16px;
  text-align: center;
  margin: 0;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
}

/* Animation for description on hover */
.hobby:hover .hobby-description {
  background-color: #f8f8f8; /* Lighten the background on hover */
  transform: translateY(-5px); /* Slight lift on hover */
}

/* About section styles */
#about {
  background-color: bisque;
  padding: 80px 0;
  text-align: center;
}

#about h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
}

.about-container {
  background-color: #fff;
  color: #333;
  padding: 30px;
  border-radius: 10px;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover{
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 15px black;
}
.quote {
  font-size: 18px;
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
}

/* Update the font color to black for the quotes in the about section */
.quote strong {
  color: #333;
}

/* Update the font color to a different shade of black for the about content */
.about-content p {
  color: #444;
  padding-top: 40px;;
}


/* Remove the fade-in animation for the quote */
.quote {
  opacity: 1;
  transform: translateY(0);
}



/* Responsive styles */
@media (max-width: 768px) {
  .hobby {
    flex-basis: calc(50% - 40px);
  }
}

@media (max-width: 480px) {
  .hobby {
    flex-basis: 100%;
  }
}

.hobbies1{
  padding-top: 50px;
  font-size: 2rem;
  font-family: cursive;
}

@keyframes animateText {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

.navbar-brand .animated-text {
  display: inline-block;
  animation: animateText 2s infinite ease-in-out;
}

/* Portfolio section styles */
#portfolio {
  background-color: #292929; /* Dark background for portfolio section */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

#portfolio h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: snow;
  animation: glow 2s infinite alternate;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
  margin-top: 40px;
  margin-bottom: 10px;
}

.project {
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 350px;
}

.project img {
  width: 350px; /* Use the full width of the container */
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
}

.project p {
  margin-top: 60px; /* Reduce the top margin */
  margin-bottom: 10px; /* Add a bottom margin for spacing */
  font-size: 18px;
  font-weight: bold;
  color: #ffffff; /* Text color */
}

.project:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.4); /* Light shadow on hover */
}

/* Media queries for responsive design */
@media screen and (max-width: 768px) {
  .projects {
    grid-template-columns: 1fr; /* Switch to single column layout for smaller screens */
  }

  .project {
    max-width: 100%; /* Take the full width of the container on small screens */
  }
}

/********Bible Verse*******/
#dailyVerse {
  font-size: 18px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  margin: 50px;
  text-align: center;
  color:black;
  animation: glow 2s infinite alternate;
}
