* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;

    background:
        linear-gradient(
            180deg,
            #fffdfc,
            #f8f4f3,
            #f4efee
        );

    color: #444;

    overflow-x: hidden;
}

/* BACKGROUND GLOW */

.bg-glow {

    position: fixed;

    width: 600px;
    height: 600px;

    background:
        radial-gradient(
            circle,
            rgba(255, 210, 220, 0.35),
            transparent 70%
        );

    top: -200px;
    right: -150px;

    z-index: -1;

    filter: blur(40px);
}

/* NAVBAR */

.navbar {

    position: fixed;

    width: 100%;

    top: 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 60px;

    background: rgba(255,255,255,0.5);

    backdrop-filter: blur(12px);

    z-index: 999;
}

.logo {

    font-size: 24px;
    font-weight: 700;

    color: #d48ca1;
}

.navbar ul {

    display: flex;
    gap: 30px;

    list-style: none;
}

.navbar a {

    text-decoration: none;

    color: #555;

    transition: 0.3s;
}

.navbar a:hover {

    color: #d48ca1;
}

/* HERO */

.hero {

    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 40px;
}

.hero-content {

    max-width: 800px;
}

.welcome {

    color: #c98a9f;

    margin-bottom: 20px;

    letter-spacing: 2px;
}

.hero h1 {

    font-size: 68px;
    font-weight: 700;

    line-height: 1.1;

    margin-bottom: 25px;

    color: #333;
}

.career {

    font-size: 22px;

    color: #d48ca1;

    margin-bottom: 10px;
}

.location {

    color: #777;

    margin-bottom: 35px;
}

/* BUTTON */

button {

    padding: 14px 34px;

    border: none;
    border-radius: 40px;

    background: #d48ca1;

    color: white;

    font-family: 'Poppins', sans-serif;

    cursor: pointer;

    transition: 0.3s;
}

button:hover {

    transform: translateY(-4px);

    box-shadow:
        0 10px 20px rgba(212,140,161,0.25);
}

/* ABOUT */

.about {

    padding: 120px 40px;

    max-width: 900px;

    margin: auto;

    text-align: center;
}

.about h2 {

    font-size: 42px;

    margin-bottom: 30px;

    color: #d48ca1;
}

.about p {

    line-height: 1.8;

    margin-bottom: 20px;

    color: #666;
}

/* STATS */

.stats {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 30px;

    padding: 60px 40px;
}

.card {

    width: 220px;

    padding: 35px;

    border-radius: 24px;

    background: rgba(255,255,255,0.7);

    backdrop-filter: blur(10px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);

    text-align: center;

    transition: 0.3s;
}

.card:hover {

    transform: translateY(-8px);
}

.card h3 {

    margin-bottom: 15px;

    color: #d48ca1;
}

/* INTERESTS */

.interests {

    padding: 120px 40px;

    text-align: center;
}

.interests h2 {

    font-size: 42px;

    margin-bottom: 50px;

    color: #d48ca1;
}

.interests-container {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 25px;
}

.interest-card {

    padding: 24px 38px;

    border-radius: 20px;

    background: white;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);

    transition: 0.3s;
}

.interest-card:hover {

    transform: scale(1.05);
}

/* QUOTE */

.quote {

    padding: 120px 40px;

    text-align: center;
}

.quote p {

    font-size: 32px;

    font-weight: 300;

    color: #c98a9f;

    max-width: 800px;

    margin: auto;
}

/* GOALS */

.goals {

    padding: 120px 40px;

    text-align: center;
}

.goals h2 {

    font-size: 42px;

    margin-bottom: 50px;

    color: #d48ca1;
}

.goals-container {

    display: flex;
    flex-direction: column;

    gap: 25px;

    max-width: 700px;

    margin: auto;
}

.goal-card {

    padding: 28px;

    border-radius: 20px;

    background: rgba(255,255,255,0.8);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.05);

    transition: 0.3s;
}

.goal-card:hover {

    transform: translateY(-5px);
}

/* FOOTER */

footer {

    padding: 60px 20px;

    text-align: center;

    color: #777;
}

footer h3 {

    margin-bottom: 15px;

    color: #c98a9f;
}

/* ANIMATIONS */

.hidden {

    opacity: 0;

    transform: translateY(40px);

    transition: 0.8s;
}

.show {

    opacity: 1;

    transform: translateY(0px);
}

/* RESPONSIVE */

@media (max-width: 900px) {

    .hero h1 {

        font-size: 42px;
    }

    .navbar {

        padding: 18px 20px;
    }

    .navbar ul {

        gap: 15px;
    }

}
/* COURSES */

.courses {

    padding: 120px 40px;

    text-align: center;
}

.courses h2 {

    font-size: 42px;

    margin-bottom: 50px;

    color: #d48ca1;
}

.courses-container {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 20px;

    max-width: 1200px;

    margin: auto;
}

.course-card {

    padding: 18px 26px;

    background: rgba(255,255,255,0.8);

    border-radius: 18px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.05);

    transition: 0.3s;
}

.course-card:hover {

    transform: translateY(-5px);

    background: #d48ca1;

    color: white;
}

/* FRIENDS */

.friends {

    padding: 120px 40px;

    text-align: center;
}

.friends h2 {

    font-size: 42px;

    margin-bottom: 50px;

    color: #d48ca1;
}

.friends-container {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 25px;
}

.friend-card {

    padding: 25px 40px;

    border-radius: 22px;

    background: white;

    text-decoration: none;

    color: #555;

    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.05);

    transition: 0.3s;
}

.friend-card:hover {

    transform: scale(1.05);

    background: #d48ca1;

    color: white;
}