@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Poppins:wght@300;400;500;600&display=swap");

* {   
    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: 'Poppins', sans-serif;

}

/* Body */

body {

    background: #f5f5f5;

    color: #333;

    line-height: 1.6;

}

/* Navigation */

nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 10%;

    background: #ffffff;

    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

    position: sticky;

    top: 0;

}

.logo {

    font-family: 'Dancing Script', cursive;

    font-size: 35px;

    color: #ff4d8d;

}

.nav-links {

    display: flex;

    list-style: none;

}

.nav-links li {

    margin-left: 25px;

}

.nav-links a {

    text-decoration: none;

    color: #333;

    font-weight: 500;

}

.nav-links a:hover {

    color: #ff4d8d;

}

#darkBtn {

    padding: 10px 18px;

    border: none;

    background: #ff4d8d;

    color: white;

    border-radius: 5px;

    cursor: pointer;

}

#darkBtn:hover {

    background: #e63975;

}

/* Hero */

.hero {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 80px 10%;

    flex-wrap: wrap;

}

.hero-text {

    max-width: 550px;

}

.hero-text h3 {

    font-size: 24px;

}

.hero-text h1 {

    font-size: 48px;

    color: #ff4d8d;

}

.hero-text h2 {

    font-size: 24px;

    margin: 10px 0;

}

.hero-text p {

    margin: 20px 0;

}

.btn {

    display: inline-block;

    padding: 12px 25px;

    background: #ff4d8d;

    color: white;

    text-decoration: none;

    border-radius: 5px;

}

.btn:hover {

    background: #e63975;

}

.hero-image img {

    width: 300px;

    height: 300px;

    border-radius: 50%;

    object-fit: cover;

    border: 5px solid #ff4d8d;

}

/* Sections */

section {

    padding: 70px 10%;

}

.section-title {

    text-align: center;

    margin-bottom: 40px;

    color: pink;

    font-size: 32px;

}

/* About */

.about-content {

    max-width: 800px;

    margin: auto;

    text-align: center;

}

/* Skills */

.skills-container,

.project-container {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

}

.skill-card,

.project-card {

    background: white;

    width: 250px;

    padding: 20px;

    border-radius: 10px;

    text-align: center;

    box-shadow: 0 5px 10px rgba(0,0,0,0.1);

    transition: 0.3s;

}

.skill-card:hover,

.project-card:hover {

    transform: translateY(-5px);

}

/* Contact */

.contact {

    text-align: center;

}

.contact-info p {

    margin: 10px 0;

}

#timeBtn {

    padding: 10px 20px;

    background: #ff4d8d;

    color: white;

    border: none;

    border-radius: 5px;

    cursor: pointer;

}

#timeBtn:hover {

    background: #e63975;

}

/* Footer */

footer {

    background: #222;

    color: white;

    text-align: center;

    padding: 20px;

}

/* Dark Mode */

.dark-mode {

    background: #121212;

    color: white;

}

.dark-mode nav {

    background: #1f1f1f;

}

.dark-mode .skill-card,

.dark-mode .project-card {

    background: #2b2b2b;

    color: white;

}

.dark-mode footer {

    background: black;

}

/* Responsive */

@media (max-width: 768px) {

    .hero {

        flex-direction: column;

        text-align: center;

    }

    .hero-image {

        margin-top: 30px;

    }

    .hero-image img {

        width: 220px;

        height: 220px;

    }

    .nav-links {

        display: none;
    }
}

#hobbies .section-title {
     color: pink !important;
    text-align: center !important;
    font-size: 32px !important;
}   
#hobbies p {
    text-align: center;
}

html {
    scroll-behavior: smooth;
}
