/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #000000;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #222;
    color: white;
}

.logo {
    font-size: 24px;  /* Adjust size as needed */
    font-weight: bold; /* Make it bold */
    color: #f4a950; /* Set your desired text color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s, transform 0.1s; /* Smooth transitions */
}

.logo:hover {
    color: #f4a955; /* Change color on hover */
    transform: scale(1.05); /* Slightly increase size on hover */
}

.logo:active {
    color: #f4a950; /* Change color when clicked */
    transform: scale(0.95); /* Slightly decrease size when clicked */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Add shadow for effect */
}




nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f4a261;
}

/* Hero section */
#hero {
    text-align: center;
    padding: 100px 20px;
    background: url('52341915_1838516999586726_1149111225372928690_n.jpg') no-repeat center center/cover;
    color: white;
}

#hero h1 {
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#hero p {
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

#hero .btn {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background: rgba(244, 162, 97, 0.9);
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

#hero .btn:hover {
    background: rgba(231, 111, 81, 0.9);
}


/* Gallery */
.image-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.image-container img {
    width: 30%;
    border-radius: 8px;
    transition: transform 0.3s;
}

.image-container img:hover {
    transform: scale(1.1);
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

form input, form textarea {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    cursor: pointer;
    padding: 10px;
    background: #2a9d8f;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background: #21867a;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}
/* Support Section */
#support {
    text-align: center;
    padding: 40px 20px;
    background-color: #e8f0fe; /* Light background color for support section */
}

#support h2 {
    font-size: 32px; /* Font size for the heading */
    margin-bottom: 20px; /* Space below the heading */
}

#support p {
    font-size: 18px; /* Font size for the paragraph */
    margin-bottom: 20px; /* Space below the paragraph */
}

#support .btn {
    margin-top: 10px; /* Add some space above the button */
    background: #2a9d8f; /* Consistent button color */
    color: white; /* White text for button */
    padding: 10px 20px; /* Padding for the button */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    transition: background 0.3s; /* Smooth background transition */
}

#support .btn:hover {
    background: #21867a; /* Darker color on hover */
}
html {
    scroll-behavior: smooth;
}
.social-icons img {
    width: 30px;  /* Adjust size as needed */
    height: auto;
    margin: 0 10px;
    transition: opacity 0.3s;
}

/* Add this to prevent color changes */
.social-icons a {
    color: inherit; /* Inherit color from parent */
    text-decoration: none; /* Remove underline if necessary */
}

.social-icons a:hover img {
    opacity: 0.7; /* Change this for hover effect */
}
#about {
    max-width: 800px;  /* Sets a max width for readability */
    margin: 50px auto;  /* Centers the section horizontally and adds space at the top */
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: justify; /* Makes text align nicely */
}

#about h1 {
    font-size: 32px;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
}

#about h2 {
    font-size: 24px;
    margin-top: 30px;
    color: #444;
}

#about p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px; /* Adds space between paragraphs */
}
/* Social Links Section */
#socials {
    text-align: center;
    padding: 50px 20px;
}

#socials h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
}

#socials p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Social Icons */
.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links li {
    display: inline-block;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px; /* Adjust the size of the icon box */
    height: 80px;
    font-size: 40px; /* Adjust icon size */
    color: white;
    background: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #f4a261;
}

/* Footer Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    font-size: 40px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f4a261;
}
/* General centering */
section {
    text-align: center;
    padding: 50px 20px;
}

/* Contact form styling */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: auto;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Button styling */
.btn {
    background: #f4a261;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e76f51;
}

/* Social media icons */
.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    font-size: 24px;
    color: #ffffff;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #df6400;
}

/* Support section */
#support {
    background: #222;
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 20px auto;
    width: 50%;
}
/* Social media icons - Fix visibility */
.social-icons a {
    font-size: 30px;
    color: #f4a261;  /* Change this to your preferred color */
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #e76f51; /* Change color when hovered */
}

/* Social links inside the section */
.social-links a {
    font-size: 30px;
    color: #f4a261;  /* Set the default color */
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #000000; /* Hover color */
}
/* Hero Section */
#donate-hero {
    text-align: center;
    padding: 40px 20px;
    background: url('49933556_290906584951223_9200270114554286347_n.jpg') no-repeat center center/cover;
    color: rgb(255, 255, 255);
    font-size: 24px;
       
}

#donate-hero h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 150px;
    -webkit-text-stroke: 2px black; /* Creates an outline around the text */
    color: rgb(255, 166, 0); /* Change text color to white for better visibility */
}

#donate-hero p {
    text-align: center; /* Centers the text */
    font-family: 'Roboto', sans-serif; 
    font-size: 18px; /* Adjusts text size */
    max-width: 600px; /* Limits width for better readability */
    margin: 10px auto; /* Centers horizontally */
    color: #333; /* Adjusts text color */
}



/* Donation Info Section */
#donate-info {
    text-align: center;
    padding: 40px 20px;
    background: #f4f4f4;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 700px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#donate-info h2 {
    font-size: 28px;
    color: #333;
}

#donate-info p {
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
}

/* Donation Options Section */
#donate-options {
    text-align: center;
    padding: 40px 20px;
}

#donate-options h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.donate-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.gofundme-btn {
    background: #28a745;
    color: white;
}

.gofundme-btn:hover {
    background: #218838;
}

.paypal-btn {
    background: #003087;
    color: white;
}

.paypal-btn:hover {
    background: #001f5b;
}
/* Contact & Socials Sections */
#contact, #socials, #donate {
    text-align: center;
    padding: 40px 20px;
    max-width: 700px;
    margin: 20px auto;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#contact h2, #socials h2, #donate h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

/* Donate Section */
#donate {
    background: #e3f2fd;
}

.donate-btn {
    background: #28a745;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    transition: 0.3s ease;
}

.donate-btn:hover {
    background: #218838;
}
img {
    display: block;
    margin: 0 auto; /* Centers images inside their container */
    max-width: 100%; /* Ensures images are responsive */
}