/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Global Styles */
body {
    font-family: "Poppins", sans-serif;
    line-height: 1.7;
    color: #6a6a6a;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #323232;
}

a {
    color: #323232;
    text-decoration: none;
    transition: color 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: #f50e0e;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 120px 0;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(../IMAGES/IMG_2001.JPG) center/cover no-repeat;
    min-height: 100vh;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 14px 32px;
    transition: transform 0.2s ease;
    color: #fff;
    border-radius: 50px; /* 50% roundness */
}

.btn-primary {
    background-color: #f50e0e;
    border-color: #f50e0e;
}

.btn-primary:hover {
    transform: scale(1.1);
}

/* About Section */
#about {
    position: relative;
    overflow: hidden;
}

#about::before {
    content: "";
    width: 30%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f50e0e;
    z-index: -1;
}

#about h6 {
    color: #f50e0e;
}

@media (max-width: 992px) {
    #about::before {
        border-radius: 40px; /* 40% roundness */
        width: 100%;
        height: 40%;
        bottom: 0;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-title h1 {
    color: rgb(255, 0, 0); /* Fixed missing semicolon */
}

/* FOOTER */
footer ul {
    list-style: none;
}

footer ul a {
    color: rgba(0, 0, 0, 0.6);
}

.footer-top {
    padding-top: 120px;
    padding-bottom: 30px;
}

.footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(15, 15, 15, 0.6);
}

/* Enable dropdown on hover for screens larger than 992px */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Align dropdown menu with navbar item */
    }
  
    /* Add smooth fade effect */
    .navbar .dropdown .dropdown-menu {
        transition: opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
  
    .navbar .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
}

/* Image Styling */
.img-fluid {
    border-radius: 15px; /* Adjust the value to control roundness */
}

/* SERVICES */
#service1 {
    border-radius: 25%;
}

section#find-us {
    background-color: rgb(20, 20, 20); /* More specific than .bg-black */
}

main#find-us {
    background-color: rgb(20, 20, 20); /* More specific than .bg-black */
}


/* Are Section */
#are {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(../IMAGES/IMG_1746.JPG) center/cover no-repeat;
    min-height: 1vh;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Daddy Section */
#daddy {
    position: relative;
    overflow: hidden;
}

#daddy::before {
    content: "";
    width: 30%;
    height: 100%;
    position: absolute;
    border-radius: 25%;
    top: 0;
    left: 0;
    /* background-color: #f50e0e; */
    z-index: -1;
}

#daddy h6 {
    color: #f50e0e;
}



/* Ministries Section */
#ministries1 {
    position: relative;
    overflow: hidden;
    padding: 20px 0; /* Adding some padding for spacing */
}

#ministries1 h6 {
    color: #f50e0e;
}

/* Styling for images and text wrapping around them */
#ministries1 .ministry-description {
    clear: both;
    margin-bottom: 20px;
    line-height: 1.6; /* Ensure line spacing is even for readability */
}

/* Make sure all paragraphs inside .ministry-description wrap around images */
#ministries1 .ministry-description p {
    margin: 0;
    padding: 0;
}

/* Image styling and float for wrapping text */
#ministries1 .ministry-description img {
    float: left; /* Float image to the left */
    margin-right: 20px; /* Space between the image and text */
    margin-bottom: 10px; /* Space between image and following paragraph */
    max-width: 100%; /* Ensure the image is responsive */
    height: auto; /* Maintain the aspect ratio */
}

.ministry-image {
    margin-right: 15px; /* Adds space between the image and text */
    margin-bottom: 15px; /* Ensures the image doesn't crowd the text below */
    float: left; /* Makes the image float on the left to allow text wrapping */
}


/* For right-aligned images */
#ministries1 .ministry-description img.alignright {
    float: right; /* Float image to the right */
    margin-left: 20px; /* Space between the image and text */
    margin-right: 0; /* Remove any right margin */
}

/* Ensure text wraps around images */
#ministries1 .ministry-description p {
    margin: 0;
    padding: 0;
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    #ministries1 .ministry-description img {
        float: none; /* Remove float for smaller screens */
        display: block;
        margin: 0 auto 15px; /* Center the image and add margin below */
    }

    #ministries1 .ministry-description {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Styling for screens 992px and below */
@media (max-width: 992px) {
    #about::before {
        border-radius: 40px; /* 40% roundness */
        width: 100%;
        height: 40%;
        bottom: 0;
    }
}

/* 
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-12 {
    width: 100%;
    padding: 15px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.image-album {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.image-album img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.image-album img:hover {
    transform: scale(1.05);
} */


/* Optional: Add padding or margin for better spacing */
.container {
    padding-top: 20px;
  }
  
  /* Style for the image gallery */
  .image-gallery {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px; /* Space between images */
  }
  
  /* Style for each image */
  .rounded-image {
    width: 30%; /* Adjust to fit the layout */
    height: auto;
    border-radius: 15px; /* Rounded edges */
    object-fit: cover; /* Ensures images cover the container area */
  }
  
  /* Ensure responsive layout for smaller screens */
  @media (max-width: 768px) {
    .rounded-image {
      width: 48%; /* Adjust for medium-sized screens */
    }
  }
  
  @media (max-width: 480px) {
    .rounded-image {
      width: 100%; /* Adjust for small screens */
    }
  }
  