/* variables for colors & fonts */
:root {
    /*colors -- pink theme */
    --primary-color: #ffb6d9;
    /* soft pastel pink */
    --secondary-color: #fff0f6;
    /* very light pink (almost white) */
    --background-color: #ffe4ee;
    /* blush pink background */
    --surface-color: #ffffff;
    /* cards / sections */
    --accent-color: #ff6fa5;
    /* brighter pink for buttons */

    --text-color: #5a3a4a;
    /* muted dark mauve (easy to read) */
    --subtle-text: #a67c8f;
    /* lighter text */
    --border-color: #ffd1e3;
    /* soft pink borders */
    --hover-color: #ff8fbd;
    /* hover states */

    --highlight-color: #ffe066;
    /* soft yellow highlight (adds contrast) */
    --gradient-pink: linear-gradient(180deg,
            #fff0f6 0%,
            #ffe4ee 40%,
            #ffd6ec 70%,
            #ffb6d9 100%);

    /*fonts families*/
    --font-heading: "Quicksand", sans-serif;
    --font-body: "Nunito", sans-serif;
}


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

html,
body {
    min-height: 100%;
    background: var(--gradient-pink);
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    padding: 0;
    margin: 0;
}

/*typography*/
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
}

p {
    line-height: 1.6;
}

/*links & cursor*/
a {
    text-decoration: none;
    transition: color 0.3s ease;
}

body {
    cursor: url('fonts/cursor/aero_arrow__pink.cur'), auto;
}

a,
button {
    cursor: url('fonts/cursor/aero_link__pink.cur'), pointer;
}

input,
textarea {
    cursor: url('fonts/cursor/beam__pink.cur'), text;
}

/* header/navbar */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;

    display: flex;
    align-items: center;
    padding: 0 20px;

    z-index: 1000;
    transition: 0.3s;
}

.header.sticking {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
}

.header.sticking a {
    color: var(--text-color);
}

.logo {
    width: auto;
    font-size: 1.3rem;
}

.logo a {
    color: var(--subtle-text);
    font-weight: 800;
    font-size: 1.3rem;
}

.header>h1 {
    width: 60%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar ul li {
    color: var(--text-color);
    margin: 0 0.2rem;
    display: block;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar ul li:hover {
    background: var(--hover-color);
    color: white;
    font-weight: 600;
    height: 100%;
}

.navbar ul li a {
    color: inherit;
    text-decoration: none;
}

/* main-menu */
.main-menu {
    background: transparent;
}

.main-menu ul {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    padding-inline-start: 0;
    margin-block: 0;
    height: 100%;
    width: auto;
    list-style: none;
}

.main-menu ul li {
    padding: 20px;
}

.main-menu ul li:hover {
    background: var(--hover-color);
    color: var(--surface-color);
    font-weight: 600;
    height: 100%;
}

.hamburger-button {
    display: none;
    background: transparent;
    border: none;
    padding: 10px;
    z-index: 1000;
}

.hamburger-button .hamburger-line {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    margin: 6px 0;
}

/* mobile-menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);

    z-index: 2000; 

    transition: right 0.3s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    padding-right: 10px;
    margin: 80px auto 0 auto;
    display: flex;
    flex-direction: column; 
    align-items: center;  
    justify-content: flex-start;
    list-style: none;
    padding: 0;
}

.mobile-menu ul li {
    width: 100%;
    margin: 10px 0;
    text-align: center;
}

.mobile-menu ul li a {
    display: block;
    width: 100%;
    padding: 15px 0;

    font-size: 1.2rem;
    text-align: center;

    transition: 0.3s;
}

.mobile-menu ul li a:hover {
    background: var(--hover-color);
    color: white;
}
.main {
    margin-top: 0px;
    padding: 0px;
    width: 100%;
}

/*section*/
section,
main,
#projects-section,
#hero-section {
    background: transparent;
}

section {
    max-width: 1100px;
    margin: 0 auto 60px auto;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* hero section */
#hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 40px;
    flex-wrap: wrap;
}

#hero-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid var(--surface-color);
}

.hero-text {
    text-align: center;
    max-width: 500px;
}

.hero-text h1 {
    font-size: 3rem;
}

.hero-text p {
    color: var(--subtle-text);
    margin: 10px 0 20px;

}

.hero-text button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
}

.hero-text button:hover {
    background: var(--hover-color);
}

/*About Me Section*/
#about-me {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.about-card {
    max-width: 900px;
    width: 100%;

    background: var(--surface-color);
    border: 4px solid var(--border-color);
    border-radius: 20px;

    padding: 30px;
    text-align: left;

    box-shadow: 0 10px 25px rgba(255, 182, 217, 0.25);
    transition: 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 182, 217, 0.35);
}

.about-card h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.text-content {
    flex: 1;
    min-width: 280px;
}

.text-content h3 {
    margin-bottom: 10px;
}

.text-content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

hr {
    margin: 10px;
}

.about-img img {
    width: 220px;
    border-radius: 50%;
    border: 4px solid var(--hover-color);
    box-shadow: 0 8px 20px rgba(255, 182, 217, 0.3);
}

.about-desc {
    margin-bottom: 20px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.skill {
    background: var(--primary-color);
    border: 2px solid var(--border-color);
    border-radius: 20px;

    padding: 6px 12px;
    font-size: 0.85rem;

    display: flex;
    align-items: center;
    gap: 6px;

    transition: 0.3s;
}

.skill:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

/*Projects Container*/
#projects-section {
    padding: 60px 20px;
}

#projects-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: auto;
}

.project-card {
    background: var(--surface-color);
    border: 5px solid var(--border-color);
    border-radius: 16px;

    flex: 1 1 300px;
    max-width: 340px;

    overflow: hidden;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-6px);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-desc {
    padding: 20px;
}

.project-desc p {
    font-size: 1rem;
    line-height: 1.2;
    margin: 5px auto 7px auto;
}

.project-desc button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
}

.project-desc button:hover {
    background: var(--hover-color);
}

/*contact me section */
#contact-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.contact-card {
    max-width: 900px;
    width: 100%;

    background: var(--surface-color);
    border: 4px solid var(--border-color);
    border-radius: 20px;

    padding: 30px;
    text-align: center;

    box-shadow: 0 10px 25px rgba(255, 182, 217, 0.25);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 182, 217, 0.35);
}

.contact-desc {
    color: var(--subtle-text);
    margin-bottom: 30px;
}

.contact-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.contact-info a {
    color: var(--text-color);
}

.contact-info a:hover {
    color: var(--subtle-text);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#contact-form {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#contact-form input,
#contact-form textarea {
    padding: 10px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    font-family: var(--font-body);
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

#contact-form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

#contact-form button:hover {
    background: var(--hover-color);
}

/* footer */
footer {
    width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--border-color);
    padding: 10px 20px; 
    text-align: center;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 10px;

}

.footer-content p {
    font-size: 0.9rem;
    color: var(--subtle-text);
}


.social-media-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 10px 0;
}

.social-media-links a {
    font-size: 1.4rem;
    color: var(--text-color);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-media-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px) scale(1);
}


.by-me {
    font-size: 0.85rem;
    color: var(--subtle-text);
}

.by-me span {
    color: var(--accent-color);
}


/*Responsive Design*/
@media (max-width: 768px) {
    .main-menu {
        display: none;
    }

    .hamburger-button {
        display: block;
    }

    .projects-container {
        gap: 16px;
        padding: 10px;
    }

    .project-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}