
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><text y="18" font-size="20">🥚</text></svg>'), auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #FF6B6B;
}

.logo-egg {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF6B6B;
    transform: translateY(-2px);
}

.nav-link.active {
    color: #FF6B6B;
    font-weight: 800;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* About Hero Section */
.about-hero {
    height: 80vh;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.5), rgba(9, 9, 9, 0.5)), url('../img/about-bg.jpeg') no-repeat top center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.falling-eggs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.falling-egg {
    position: absolute;
    font-size: 2rem;
    animation: fall linear infinite;
    opacity: 0.7;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
    animation: bounceIn 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-egg {
    font-size: 6rem;
    margin: 2rem 0;
    animation: float 3s ease-in-out infinite;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #FF6B6B;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '\f7bf'; /* Font Awesome egg icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    display: block;
    font-size: 2rem;
    margin-top: 1rem;
}

/* Origin Section */
.origin {
    background: #f8f9fa;
}

.origin-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.origin-text {
    flex: 1;
}

.origin-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.origin-graphic {
    flex: 0 0 300px;
    text-align: center;
}

.origin-egg {
    font-size: 10rem;
    color: #FFD700;
    animation: spinEgg 10s linear infinite;
}

@keyframes spinEgg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Mission Section */
.mission {
    background: linear-gradient(135deg, #4ECDC4, #FFD700);
    color: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FF6B6B;
}

.mission-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.mission-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Section */
.team {
    background: #f8f9fa;
}

.team-carousel {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.team-card {
    background: white;
    color: #333;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    min-width: 300px;
    transform: scale(0.9);
    opacity: 0.7;
    transition: all 0.3s ease;
}
a {
    text-decoration: none;
    color:inherit;
}
.team-card.active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover   ;
}

.team-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #FF6B6B;
}

.team-role {
    font-size: 1.1rem;
    color: #4ECDC4;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.carousel-btn {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn.active {
    background: #FF6B6B;
    transform: scale(1.2);
}

/* Milestones Section */
.milestones {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    color: white;
}

.milestone-timeline {
    position: relative;
    padding: 2rem 0;
}

.milestone-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.milestone {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.milestone-icon {
    flex: 0 0 80px;
    text-align: center;
    font-size: 3rem;
    background: white;
    color: #FF6B6B;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
}

.milestone-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
}

.milestone-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.milestone-content p {
    font-size: 1.1rem;
}

/* Behind the Scenes Section */
.behind-scenes {
    background: #f8f9fa;
}

.behind-scenes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.behind-scenes-video video {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.behind-scenes-text h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #FF6B6B;
    margin-bottom: 1rem;
}

.behind-scenes-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Community Section */
.community {
    background: linear-gradient(135deg, #4ECDC4, #FFD700);
    color: white;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.community-card {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.community-card:hover {
    transform: translateY(-10px);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FF6B6B;
}

.community-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.community-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.community-link {
    color: #0f0f0f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.community-link:hover {
    color: white;
}

/* Vision Section */
.vision {
    background: #f8f9fa;
}

.vision-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.vision-text {
    flex: 1;
}

.vision-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.vision-graphic {
    flex: 0 0 300px;
    text-align: center;
}

.vision-graphic img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: launchRocket 2s infinite ease-in-out;
}

@keyframes launchRocket {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50px);
    }
}

/* Get Involved Section */
.get-involved {
    background: linear-gradient(135deg, #FF6B6B, #FFD700);
    color: white;
    text-align: center;
}

.get-involved-content h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.get-involved-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.get-involved-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.get-involved-buttons .btn i {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: #FF6B6B;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter button {
    padding: 10px 20px;
    background: #FF6B6B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #ff5252;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0,-30px,0);
    }
    70% {
        transform: translate3d(0,-15px,0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,100%,0);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        z-index: 999;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .about-hero {
        height: 60vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .origin-content, .vision-content, .behind-scenes-content {
        flex-direction: column;
        gap: 2rem;
    }

    .team-carousel {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        min-width: auto;
        width: 100%;
        max-width: 350px;
    }

    .milestone-timeline::before {
        left: 20px;
    }

    .milestone {
        flex-direction: column;
        align-items: flex-start;
    }

    .milestone-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .behind-scenes-content {
        grid-template-columns: 1fr;
    }

    .get-involved-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .newsletter {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }
}
