* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    background-color: #000000;
    color: #000000;
}

/* Header */
.header {
    background-color: #FF69B4;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Tangerine', cursive;
    font-size: 60px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav-icon {
    color: #000000;
    transition: transform 0.3s ease;
}

.nav-icon:hover {
    transform: scale(1.15);
}

/* Main Stuff Home Page */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 40px 20px;
}

/* Polaroid for home page */
.polaroid {
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    max-width: 900px;
    width: 100%;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.02);
}

.polaroid-image {
    position: relative;
    background-color: #f0f0f0;
    aspect-ratio: 4/3;
    margin-bottom: 20px;
    overflow: hidden;
}

.polaroid-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-overlay-top {
    position: absolute;
    top: 25px;
    right: 35px;
    font-family: 'Birthstone', cursive;
    font-size: 65px;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.text-overlay-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Birthstone', cursive;
    font-size: 130px;
    color: #ffffff;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    z-index: 10;
}

.polaroid-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.role-text {
    font-size: 28px;
    font-style: italic;
    color: #000000;
}

.contact-icons {
    display: flex;
    gap: 20px;
}

.contact-icon {
    color: #000000;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.2) rotate(5deg);
    color: #FF69B4;
}

/* About Me Page */
.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
}

.polaroid-stack {
    position: relative;
    width: 450px;
    height: 550px;
}

.polaroid-photo-about {
    position: absolute;
    background-color: #ffffff;
    padding: 15px;
    padding-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, z-index 0.3s;
}

.polaroid-photo-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.polaroid-photo-about:nth-child(1) {
    width: 320px;
    height: 420px;
    transform: rotate(-8deg);
    top: 0;
    left: 0;
    z-index: 1;
}

.polaroid-photo-about:nth-child(2) {
    width: 300px;
    height: 400px;
    transform: rotate(5deg);
    top: 80px;
    right: 0;
    z-index: 2;
}

.polaroid-photo-about:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.about-social {
    display: flex;
    gap: 30px;
    justify-content: flex-start;
    padding-left: 20px;
}

.about-social-icon {
    transition: transform 0.3s ease;
}

.about-social-icon:hover {
    transform: scale(1.15);
}

/* ⭐ MAKE SOCIAL ICONS WHITE ⭐ */
.about-social-icon svg {
    stroke: white;
}

/* ⭐ HOVER PINK EFFECT ⭐ */
.about-social-icon:hover svg {
    stroke: #FF69B4;
}

.about-right {
    background-color: #000000;
    padding: 60px;
    color: #ffffff;
    flex: 1;
}

.about-title {
    font-family: 'Birthstone', cursive;
    font-size: 100px;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1;
}

.about-bio {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #ffffff;
}

.softwares {
    margin-top: 60px;
}

.softwares-title {
    font-family: 'Times New Roman', serif;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-weight: normal;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 400px;
}

.software-icon-box {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.software-icon-box:hover {
    transform: scale(1.05);
}

.software-text {
    font-family: 'Times New Roman', serif;
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
}

/* photos page */
.photos-page {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.copyright {
    text-align: center;
    font-family: 'Times New Roman', serif;
    font-size: 20px;
    color: #ffffff;
    padding: 40px 20px;
    letter-spacing: 2px;
}

/* project page */
.projects-page {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-item {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.project-item:nth-child(even) {
    flex-direction: row-reverse;
}

.project-image-container {
    flex: 1;
    max-width: 600px;
}

.project-image-container img {
    width: 100%;
    height: auto;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.4);
    transition: transform 0.3s ease;
}

.project-image-container img:hover {
    transform: scale(1.05);
}

.project-info {
    flex: 1;
    color: #ffffff;
}

.project-title-main {
    font-family: 'Times New Roman', serif;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 4px;
    font-weight: normal;
}

.project-subtitle {
    font-family: 'Times New Roman', serif;
    font-size: 28px;
    color: #FF69B4;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: normal;
}

.project-description {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .about-layout {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .polaroid-stack {
        width: 400px;
        height: 500px;
    }

    .about-right {
        width: 100%;
    }

    .project-item,
    .project-item:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }

    .project-image-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .logo {
        font-size: 45px;
    }

    .nav {
        gap: 15px;
    }

    .nav-icon svg {
        width: 30px;
        height: 30px;
    }

    .text-overlay-center {
        font-size: 70px;
    }

    .text-overlay-top {
        font-size: 40px;
        top: 15px;
        right: 20px;
    }

    .polaroid-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .role-text {
        font-size: 22px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .polaroid-stack {
        width: 320px;
        height: 420px;
    }

    .polaroid-photo-about:nth-child(1) {
        width: 260px;
        height: 340px;
    }

    .polaroid-photo-about:nth-child(2) {
        width: 240px;
        height: 320px;
        top: 60px;
    }

    .about-title {
        font-size: 70px;
    }

    .about-right {
        padding: 40px 30px;
    }

    .software-grid {
        max-width: 100%;
    }

    .software-icon-box {
        width: 120px;
        height: 120px;
    }

    .project-title-main {
        font-size: 36px;
    }

    .project-subtitle {
        font-size: 22px;
    }
}
