/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    scroll-behavior: smooth;
}
body { background: #fff; color: #333; line-height: 1.7; }


/* Navbar */
.navbar {
    width: 100%;
    background: #fff0f6;
    padding: 15px 10%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(209, 43, 106, 0.2);
}

/* Flex container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/* Logo */
.navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d12b6a;
    text-decoration: none;
}

.navbar .logo img{
  max-width: 150px;
  width: 93px;
  height: auto;
}

/* Nav menu (desktop) */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: #b0206a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #d12b6a;
}

/* Hamburger (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #d12b6a;
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff0f6;
        width: 200px;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 10px;
        display: none;
        box-shadow: 0 10px 25px rgba(209, 43, 106, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* NAVBAR */
/* .navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    align-items: center;
    background: #ffebf2;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar h2 { color: #d63384; font-weight: 700; }
.navbar ul { list-style: none; display: flex; gap: 25px; }
.navbar a { color: #d63384; text-decoration: none; font-weight: 500; transition: .3s; }
.navbar a:hover { color: #a52063; } */

/* HERO SECTION */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
        margin-top: 90px;

}

.hero-content h1 { font-size: 2.6rem; margin-bottom: 20px; }
.hero-content p { max-width: 700px; margin: auto; }

.btn {
    background: white;
    color: #d63384;
    padding: 12px 25px;
    border-radius: 30px;
    margin-top: 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}
.btn:hover { background: #ffe0ec; transform: scale(1.05); }

/* SECTIONS */
.section { padding: 70px 10%; }
.section.light { background: #fff6fa; }

.title { color: #d63384; font-size: 2rem; margin-bottom: 20px; }
.subtitle { color: #b0206a; margin-top: 20px; margin-bottom: 10px; }

/* SPLIT LAYOUT */
.split {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* .split.reverse { flex-direction: row-reverse; } */

.section-img {
    width: 50%;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

/* ICON LIST */
.icon-list { list-style: none; margin-top: 10px; }
.icon-list li { padding: 10px 0; font-weight: 500; }
.icon-list i { margin-right: 10px; color: #d63384; }

/* FOOTER */
footer {
    background: #d63384;
    color: white;
    padding: 20px;
    text-align: center;
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(25px); animation: fadeUp 1s forwards; }
.delay1 { animation-delay: 0.3s; }
.delay2 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVENESS */
@media (max-width: 900px) {
    .split { flex-direction: column; }
    .section-img { width: 100%; }
}

@media (max-width: 768px) {
    .navbar ul { display: none; }
    .hero-content h1 { 
        font-size: 2.2rem;
           line-height: 40px;

     }
    
}
     
    

/* SCROLL ANIMATIONS */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
}

.scroll-animate.fade-left {
    transform: translateX(-60px);
}

.scroll-animate.fade-right {
    transform: translateX(60px);
}

.scroll-animate.fade-down {
    transform: translateY(-40px);
}

.scroll-animate.active {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Make transitions smooth */
.scroll-animate.active {
    transition: 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Floating Pink Ribbon */
.floating-ribbon {
    position: fixed;
    top: 20px;
    right: 36px;
    z-index: 9999;
    animation: float 4s ease-in-out infinite, sway 6s ease-in-out infinite;
    pointer-events: none;
}

.floating-ribbon img {
    width: 70px;
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(255, 105, 180, 0.5));
    animation: glow 3s ease-in-out infinite alternate;
}

/* Slow up-down floating */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}

/* Gentle left-right rotation */
@keyframes sway {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
    100% { transform: rotate(0deg); }
}

/* Subtle glowing pulse */
@keyframes glow {
    0% { filter: drop-shadow(0 0 5px rgba(255, 105, 180, 0.3)); }
    100% { filter: drop-shadow(0 0 14px rgba(255, 105, 180, 0.7)); }
}

.pink-overlay-section {
    position: relative;
    width: 100%;
    height: 300px;
    background-image: url('img/6.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Deep pink overlay */
.pink-overlay-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(208, 30, 110, 0.65); /* deep pink */
    backdrop-filter: brightness(0.9);
}

/* Text styling */
.overlay-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.overlay-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .pink-overlay-section {
        height: 268px;
    }
    .overlay-content h2 {
        font-size: 1.7rem;
    }
    .overlay-content p {
        font-size: 1rem;
    }
}

/* who wwe are */
.pinkcancer {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: url('img/3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pinkcancer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 0, 48, 0.65); /* Deep pink overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pinkcancer-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.pinkcancer-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pinkcancer-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .pinkcancer {
        height: 500px;
    }
    .pinkcancer-content h2 {
        font-size: 1.8rem;
    }
    .pinkcancer-content p {
        font-size: 1rem;
    }
}


/* key message */
.features-section {
    padding: 80px 10%;
    background: #fff0f6;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #d12b6a;
    margin-bottom: 50px;
    font-weight: 700;
}

/* Grid layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Feature boxes */
.feature-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(209, 43, 106, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(209, 43, 106, 0.35);
}

.feature-box i {
    font-size: 3rem;
    color: #d12b6a;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #b0206a;
}

.feature-box p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media(max-width: 768px){
    .features-section {
        padding: 60px 5%;
    }
}


/* get involved */
.pinkcancer-section {
    position: relative;
    width: 100%;
    background-image: url('img/7.png');
    background-size: cover;
    background-position: center;
    padding: 80px 10%;
    color: #fff;
}

.pinkcancer-section .overlay {
    background: rgba(208, 30, 110, 0.7); /* Deep pink overlay */
    padding: 60px 20px;
    border-radius: 20px;
}

.overlay-content {
    text-align: center;
    max-width: 1200px;
    margin: auto;
}

.overlay-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.overlay-content p {
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* Text boxes grid */
.text-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Individual text box */
.text-box {
    background: #fff;
    color: #d12b6a;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(209, 43, 106, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.text-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(209, 43, 106, 0.35);
}

.text-box i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.text-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.text-box p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 768px){
    .pinkcancer-section {
        padding: 60px 5%;
    }
    .overlay-content h2 {
        font-size: 2rem;
    }
    .overlay-content p {
        font-size: 1rem;
    }
}


/* Hamburger menu (mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #d12b6a;
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 60px;
        right: 0;
        background: #fff0f6;
        width: 200px;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 10px;
        display: none;
        box-shadow: 0 10px 25px rgba(209, 43, 106, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}
