@import url('https://fonts.googleapis.com/css2?family=Agu+Display&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Emblema+One&family=IM+Fell+English+SC&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and basic styles */
body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #000;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh; /* Full-screen height */
    background-image: url('your-image.jpg'); /* Add your image here */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Optional: Dark overlay to improve text visibility */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* semi-transparent overlay */
}

/* Hero content (Text and Button) */
.hero-content {
    position: relative;
    z-index: 1; /* Ensure it stays on top of the overlay */
}

.hero h1 {
    font-size: 3rem;
    /* font-family: "Agu Display", serif; */ /* Custom font for the title */
      /* font-family: " Emblema One", system-ui ; */
      font-family: " sans-serif", serif;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    text-decoration: none;
    background-color: #ff7f50; /* Warm color for the button */
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e56d4f; /* Darker shade for hover effect */
}

/* About Section */
.about {
    background-color: #fff;
    color: #333;
    padding: 80px 20px;
    text-align: center;
}

/* Profile Picture */
.profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Circle shape */
    object-fit: cover;
    margin-bottom: 20px;
}

/* About Text */
.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
}

/* Personal Quote */
blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin: 20px 0;
    border-left: 5px solid #ff7f50;
    padding-left: 15px;
}

/* Skills Section */
.skills {
    margin-top: 40px;
}

.skills h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.skills ul {
    list-style-type: none;
    padding: 0;
}

.skills li {
    font-size: 1.1rem;
    margin: 10px 0;
}



.about-details {
    margin-top: 60px;
    background-color: #fefefe;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  }
  
  .how-i-help {
    padding: 80px 20px;
    background-color: #fffdfb;
    text-align: center;
  }
  
  .how-i-help h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #222;
  }
  
  .help-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .help-card {
    background-color: #fff;
    font-style: italic;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  
  .help-card img {
    width: 50px;
    margin-bottom: 20px;
  }
  
  .help-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
  }




.mpf{
    font-size: 2.2rem;
    font-weight: 600;
    color: #ff7f50;
}

/* Portfolio Section */
.portfolio {
    background-color: #f9f9f9;
    color: #333;
    padding: 80px 20px;
    text-align: center;
} 
.portfolio-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.portfolio-item {
    background: #fff;
    padding: 80px 20px;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item h3 {
    margin-bottom: 10px;
    color: #333;
}

.portfolio-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.portfolio-item a {
    color: #ff7f50;
    text-decoration: none;
    font-weight: bold;
}



.flyer-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.flyer-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .flyer-section {
    padding: 40px 15px;
  }

  .flyer-section h2 {
    font-size: 1.5rem;
  }

  .flyer-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .flyer-caption {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image,
  .hero-text {
    width: 100%;
  }

  .hero-image img {
    max-width: 250px;
    margin: 0 auto;
  }

  .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}



/* Contact Section */
.contact {
    background-color: #fff;
    color: #333;
    padding: 80px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    resize: none;
}

.contact-form button {
    background-color: #ff7f50;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #e56d4f;
}

.contact .email {
    margin-top: 30px;
    font-size: 1rem;
}

.contact .email a {
    color: #ff7f50;
    text-decoration: none;
}

.contact .email a:hover {
    text-decoration: underline;
}

.address {
    margin-top: 20px;
    font-size: 1rem;
    color: #555;
}


/* Footer Section */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-content p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.social-links a {
    color: #ff7f50;
    font-size: 2.5rem;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .portfolio-items,
    .contact-form {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .portfolio-item {
        width: 90%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .social-links {
        margin-top: 15px;
    }
}

