now the breats can be the cover at the home now
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(-45deg, #fdf2f8 0%, #fce7f3 25%, #f8e8f8 50%, #fce7f3 75%, #fdf2f8 100%);
    background-size: 400% 400%;
    animation: bodyGradient 20s ease infinite;
}

@keyframes bodyGradient {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: purple;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 250px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.logo img:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(white);
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s;
}

nav a:hover, .nav-active {
    color: #ff1493;
    border-bottom: 2px solid #ff1493;
}

/* Hero */
#hero {
    background: linear-gradient(-45deg, #ffc0cb, #ff69b4, #da70d6, #9370db, #ff69b4, #ffc0cb);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    margin-top: 80px;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
    position: relative;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-image {
    position: relative;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-bg-img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
}

.btn {
    display: inline-block;
    background: #fff;
    color: #9370db;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(147, 112, 219, 0.4);
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #8a2be2;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #fdf2f8;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fdf2f8;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #9370db;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-info {
    grid-column: span 1;
    text-align: left;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #8a2be2;
}

h2, h3 {
    color: #8a2be2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* Cards and Grids */
.team-hero {
    position: relative;
    height: 400px;
    margin-bottom: 4rem;
    border-radius: 20px;
    overflow: hidden;
}

.team-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.team-hero:hover .team-hero-bg {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.team-hero:hover .team-hero-bg {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.card, .contact-card, .fund-card, .donation-card, .team-card {
    position: relative;
    background: linear-gradient(145deg, #fdf2f8 0%, #f8e8f8 50%, #fdf2f8 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.1),
        0 0 30px rgba(147, 112, 219, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.6);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.card::before, .contact-card::before, .fund-card::before, .donation-card::before, .team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(147,112,219,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.card:hover::before, .contact-card:hover::before, .fund-card:hover::before, .donation-card:hover::before, .team-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.card:hover, .contact-card:hover, .fund-card:hover, .donation-card:hover, .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(147, 0, 219, 0.3);
}

ul {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

ul li {
    background: #fdf2f8;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: pink;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    margin: 0 1rem;
    transition: transform 0.3s;
    text-decoration: none;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.social-link:hover {
    transform: scale(1.3);
    color: #ff1493;
}

.fb:hover { color: #1877f2; }
.ig:hover { color: #e4405f; }

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    height: 40px;
    width: 40px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(5px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        position: fixed;
        background: rgba(147, 112, 219, 0.95);
        backdrop-filter: blur(10px);
        top: 80px;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav ul.mobile-active {
        max-height: 400px;
        padding: 1.5rem 0;
        opacity: 1;
        transform: translateY(0);
    }

    nav li {
        margin: 0.5rem 0;
        opacity: 0;
        transform: translateX(20px);
        animation: slideIn 0.4s forwards;
    }

    nav ul.mobile-active li {
        opacity: 1;
        transform: translateX(0);
    }

    nav ul.mobile-active li:nth-child(1) { animation-delay: 0.1s; }
    nav ul.mobile-active li:nth-child(2) { animation-delay: 0.2s; }
    nav ul.mobile-active li:nth-child(3) { animation-delay: 0.3s; }
    nav ul.mobile-active li:nth-child(4) { animation-delay: 0.4s; }
    nav ul.mobile-active li:nth-child(5) { animation-delay: 0.5s; }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    nav a {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        display: block;
    }

    #hero h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}
