body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #007BFF; /* Blue */
    color: white;
    padding: 1rem;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: #FF0000; /* Red */
    border-bottom: 2px solid #FF0000; /* Red */
}

section {
    padding: 2rem;
    margin: 2rem 0;
}

#home .hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

#home .hero h1 {
    font-size: 2.5rem;
    color: #007BFF; /* Blue */
}

#home .hero p {
    font-size: 1.25rem;
    color: #333;
}

.cta {
    background-color: #007BFF; /* Blue */
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #0056b3; /* Darker Blue */
}

#home .highlights {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

#home .highlight {
    flex: 1 1 30%;
    text-align: center;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

#home .highlight:hover {
    transform: scale(1.05);
}

#home .highlight img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

footer p {
    margin: 0;
}

.social-media a img {
    width: 24px;
    height: 24px;
    margin: 0 0.5rem;
    transition: transform 0.3s;
}

.social-media a img:hover {
    transform: scale(1.2);
}

/* Additional animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

section {
    animation: fadeIn 1s ease-in-out;
}

header {
    animation: slideIn 1s ease-in-out;
}

.cta {
    animation: bounce 2s infinite;
}


#gallery {
    text-align: center;
}

#gallery h1 {
    font-size: 2.5rem;
    color: #007BFF; /* Blue */
    margin-bottom: 2rem;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    flex: 1 1 300px;
    max-width: 300px;
    margin: 1rem;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s, opacity 0.3s;
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    margin: 0;
    padding: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.gallery-item:hover p {
    opacity: 1;
}

.facebook-post {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

a{
    color: #fff;
    text-decoration: none;
}




footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

footer p {
    margin: 0;
}

.social-media a img {
    width: 24px;
    height: 24px;
    margin: 0 0.5rem;
    transition: transform 0.3s;
}

.social-media a img:hover {
    transform: scale(1.2);
}

/* Additional animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

section {
    animation: fadeIn 1s ease-in-out;
}

header {
    animation: slideIn 1s ease-in-out;
}

/*about*/
#about {
    text-align: center;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text {
    max-width: 800px;
    text-align: left;
}

.about-text h2 {
    color: #007BFF; /* Blue */
}

.about-text h3 {
    color: #FF0000; /* Red */
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding: 0.5rem 0;
}

.cta {
    background-color: #007BFF; /* Blue */
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #0056b3; /* Darker Blue */
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* Add to existing CSS file */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

section {
    animation: fadeIn 1s ease-in-out;
}

header {
    animation: slideIn 1s ease-in-out;
}

.cta {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
