/* Import a fun Google Font */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');

body {
    font-family: 'Fredoka One', sans-serif;
    background-color: #fce4ec; /* Light Pink Background */
    margin: 0;
    padding: 0;
}

/* ===== Header Styling ===== */
header {
    background: linear-gradient(90deg, #ff6f61, #ffcc5c);
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

header h1
{
    margin-right: 50px;
}
nav ul {
    list-style: none;
    padding: 0;
    margin-right: 10px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

nav a:hover {
    transform: scale(1.1);
    color: #ffeb3b;
}

/* ===== About Section ===== */
.about-container {
    width: 80%;
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Headings */
h1 {
    color: #ff6f61;
    font-size: 36px;
}

h2 {
    color: #ffcc5c;
    font-size: 28px;
}

/* Text */
p {
    font-size: 18px;
    color: #444;
}

/* ===== Team Section ===== */
.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.team-card {
    background: #ffcc5c;
    padding: 20px;
    width: 220px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
}

.team-card h3 {
    color: white;
    font-size: 20px;
    margin-top: 20px;
}

/* ===== Values Section ===== */
.values {
    background: #ff6f61;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    width: 80%;
    margin: 40px auto;
}

.values h2 {
    color: white;
}

/* ===== Footer ===== */
/* ===== Enhanced Footer ===== */
footer {
    background: linear-gradient(to right, #ff6b81, #ffcc00);
    padding: 40px 20px;
    color: white;
    text-align: center;
    font-size: 1.2em;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

/* Footer container layout */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Footer left side */
.footer-left h2 {
    font-size: 2em;
    margin-bottom: 5px;
    text-shadow: 2px 2px #ffeb3b;
}

.footer-left p {
    font-size: 1.1em;
    opacity: 0.8;
}

/* Social media icons */
.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    font-size: 30px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.social-icon:hover {
    background: white;
    color: #ff6b81;
    transform: scale(1.2) rotate(10deg);
}

/* Copyright text */
.footer-copyright {
    font-size: 1em;
    margin-top: 20px;
    opacity: 0.8;
}



/* ===== General Nav Styling ===== */
nav {
    position: relative;
}

/* Default Menu Icon (Hidden on Large Screens) */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Desktop Navigation (Default Visible) */
.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    gap: 20px;
}

.nav-menu li {
    display: inline;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}
@media screen and (max-width: 768px) {
    /* Hide menu by default */
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -250px; /* Hide off-screen */
        width: 250px;
        height: 100vh;
        background: rgba(255, 111, 97, 0.95); /* Semi-transparent background */
        box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.2);
        padding-top: 60px;
        text-align: left;
        transition: right 0.4s ease-in-out;
    }

    .nav-menu li {
        display: block;
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .nav-menu a {
        font-size: 20px;
        color: white;
        display: block;
    }

    /* Show menu when active */
    .show-menu {
        right: 0;
    }

    /* Style for the menu icon */
    .menu-icon {
        display: block;
        font-size: 30px;
        cursor: pointer;
        color: white;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 1000;
    }
}




