/* CSS Variables */
@font-face {
    font-family: 'Bobby Jones';
    src: url('fonts/Bobby Jones/Bobby Jones Soft.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Slopes';
    src: url('fonts/Slopes/Slopes.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --pink-primary: #FF69B4;
    --pink-hot: #FF1493;
    --pink-light: #FFB6C1;
    --pink-pale: #FFC0CB;
    --pink-dark: #8B4B6E;
    --black-primary: #0D0D0D;
    --black-soft: #1A1A1A;
    --cream: #F5F0E8;
    --cream-light: #FAF8F5;
    --white: #FFFFFF;
    --gray: #888888;
    --black-pure: #000000;
    --blue-primary: #1877F2;
    /* Vibrant Blue for Move Maroc */
    --blue-soft: #E8F0FE;
    --purple-primary: #7A42F4;
    --orange-accent: #FF7D3C;
    --purple-soft: #F1EDFF;


    --font-display: 'Bebas Neue', sans-serif;
    --font-bungee: 'Bobby Jones', cursive;
    --font-cursive: 'Dancing Script', cursive;
    --font-brush: 'Slopes', cursive;
    --font-body: 'Poppins', sans-serif;
    --font-signature: 'Mr De Haviland', cursive;
}

/* Utilities for Blue Theme */
.blue-text {
    color: var(--blue-primary) !important;
}

.blue-bg {
    background-color: var(--blue-primary) !important;
}

/* Rhode Theme */
:root {
    --rhode-pink: #E6B9C8;
    --rhode-beige: #F8F1ED;
    --starbucks-green: #006241;
    --starbucks-dark: #1E3932;
}

.rhode-theme {
    background-color: var(--rhode-beige);
}

.starbucks-theme {
    background-color: #f7f7f7;
}

.rhode-text {
    color: var(--rhode-pink) !important;
}

.starbucks-text {
    color: var(--starbucks-green) !important;
}

.blue-theme .page-number {
    color: var(--blue-primary);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black-primary);
    color: var(--white);
    overflow-x: hidden;
    position: relative;
}

/* Floating Decorative Text */
.floating-text {
    position: fixed;
    font-family: var(--font-cursive);
    font-size: 1rem;
    color: rgba(255, 105, 180, 0.3);
    z-index: 1;
    pointer-events: none;
}

.floating-text.top-right {
    top: 20px;
    right: 100px;
    animation: float 6s ease-in-out infinite;
}

.floating-text.bottom-left {
    bottom: 30px;
    left: 30px;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-text .hashtag {
    color: var(--pink-primary);
}

.floating-text .strike {
    text-decoration: line-through;
    opacity: 0.5;
}

/* Stars Decoration */
.stars-container {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    color: var(--pink-primary);
    animation: twinkle 2s ease-in-out infinite;
}

.star-1 {
    top: 10%;
    right: 5%;
    font-size: 1.5rem;
    animation-delay: 0s;
}

.star-2 {
    top: 25%;
    right: 15%;
    font-size: 1rem;
    animation-delay: 0.5s;
}

.star-3 {
    top: 60%;
    right: 3%;
    font-size: 1.2rem;
    animation-delay: 1s;
}

.star-4 {
    top: 40%;
    left: 5%;
    font-size: 0.8rem;
    animation-delay: 0.3s;
}

.star-5 {
    bottom: 20%;
    right: 10%;
    font-size: 1rem;
    animation-delay: 0.7s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
}

.header-hero {
    background: transparent;
    padding: 30px 50px;
}

.nav-logo {
    height: 80px;
    width: auto;
    filter: brightness(0.95);
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    justify-content: flex-end;
    gap: 70px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 105, 180, 0.2);
    /* Pinkish line under nav */
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section - Portfolio 2025 */
.hero-section {
    background: var(--cream-light);
    color: var(--black-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.signature-background {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 200%;
    height: 120%;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-3deg);
}

.handwriting-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.handwriting-decoration {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 300px;
    z-index: 10;
    pointer-events: none;
    transform: rotate(30deg);
}

.handwriting-svg {
    width: 100%;
    height: auto;
}

.portfolio-title-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 23rem;
    color: var(--pink-primary);
    letter-spacing: -10px;
    line-height: 0.8;
    display: flex;
    gap: 0;
    position: relative;
    z-index: 2;
}

.portfolio-letter {
    display: inline-block;
}

.overlap-letter {
    position: relative;
    z-index: 1;
}

.year-badge {
    position: absolute;
    top: -40px;
    right: 10px;
    font-family: var(--font-display);
    font-size: 5.5rem;
    color: var(--pink-hot);
    /* Use a more vibrant pink */
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    /* Bring to front */
    transform: rotate(5deg);
    /* Slight tilt for style */
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
    /* Subtle lift */
}
@media (max-width: 768px) {
    .year-badge {
        transform: rotate(20deg);
    }
}

.year-badge::after {
    content: '★';
    font-size: 1.5rem;
    margin-top: -10px;
}

.hero-portfolio-image {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 750px;
    z-index: 5;
    pointer-events: none;
}

.hero-portfolio-image img {
    width: 100%;
    filter: grayscale(100%);
    opacity: 0.85;
    /* Slight transparency */
    mix-blend-mode: luminosity;
    /* Blends better with the pink title underneath */
}

/* Fading effect into the title */
.hero-portfolio-image {
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-label {
    position: absolute;
    z-index: 4;
}

.branding-label {
    top: 15%;
    left: 48%;
    /* Adjusted to center above person */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.branding-label span {
    font-family: var(--font-cursive);
    font-size: 1.5rem;
}

.label-line {
    width: 30px;
    height: 50px;
}

.hero-bottom-labels {
    position: absolute;
    bottom: 40px;
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 6;
}

.bottom-label {
    font-family: var(--font-cursive);
    font-size: 1.2rem;
    position: relative;
}

.bottom-label::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 40px;
    bottom: -20px;
}

.social-label::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 60px;
    left: 140px;
    top: -10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M0 20 Q15 0, 30 20 T60 20 T90 20' stroke='%23333' fill='none' stroke-width='1'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
}

.designer-label::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 60px;
    right: 130px;
    top: -10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M100 20 Q85 40, 70 20 T40 20 T10 20' stroke='%23333' fill='none' stroke-width='1'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
}

.bottom-star {
    position: absolute;
    bottom: 20px;
    right: 30px;
    color: var(--pink-primary);
    font-size: 1.2rem;
}

.decorative-curls {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.curl {
    position: absolute;
    width: 200px;
}

.curl-left {
    bottom: 40px;
    left: 20%;
}

.curl-right {
    bottom: 60px;
    right: 20%;
}

.wm-hero-signature {
    position: absolute;
    bottom: 250px;
    right: 50px;
    width: 150px;
    z-index: 4;
    opacity: 1;
    /* More visible signature on right */
}

/* About Section */
.about-section {
    background: var(--cream-light);
    background-image: radial-gradient(var(--pink-light) 1px, transparent 1px);
    background-size: 30px 30px;
    color: var(--black-primary);
    padding: 80px 60px;
    overflow: hidden;
}

.about-header {
    position: relative;
    margin-bottom: 0;
}

.about-giant-name {
    font-family: var(--font-display);
    font-size: 12rem;
    line-height: 0.8;
    color: var(--pink-primary);
    letter-spacing: -5px;
    z-index: 1;
}

/* Signatures removed from generic flow as they are now positioned specifically */

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 40px;
    position: relative;
    margin-top: 34px;
    z-index: 10;
}

.bio-frame {
    grid-column: 1;
    position: relative;
    padding: 20px;
    border-left: 3px solid var(--pink-primary);
    border-bottom: 3px solid var(--pink-primary);
    border-radius: 0 0 0 50px;
    margin-bottom: 20px;
}

.bio-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 3px solid var(--pink-primary);
    border-left: 3px solid var(--pink-primary);
    border-radius: 50px 0 0 0;
}

.header-sparkles {
    position: absolute;
    top: 20%;
    left: 45%;
    display: flex;
    gap: 30px;
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.about-signatures {
    position: absolute;
    top: 40%;
    left: 15%;
    z-index: 10;
}

.wiame-sign {
    font-family: 'Dancing Script', cursive;
    font-size: 6rem;
    color: var(--black-primary);
    display: block;
    margin-bottom: -40px;
    opacity: 0.8;
}

.graphic-design-sign {
    font-family: 'Mr De Haviland', cursive;
    font-size: 4rem;
    color: var(--black-primary);
    margin-left: 120px;
}

.bio-text {
    font-family: var(--font-brush);
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--black-primary);
}

.pink-bold {
    color: var(--pink-primary);
    font-weight: 700;
}

.about-details-grid {
    grid-column: 2;
    display: flex;
    gap: 50px;
    padding-left: 20px;
    margin-top: -282px
}

.details-column h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--pink-primary);
    margin-bottom: 25px;
}

.details-column ul {
    list-style: none;
    padding: 0;
}

.details-column li {
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.pink-star {
    color: var(--pink-primary);
    font-size: 1.2rem;
}

.curly-loop {
    width: 150px;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M0 20 C20 0, 40 40, 60 20 S80 40, 100 20' stroke='%23FF69B4' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat;
    margin-top: 15px;
}

.curly-loop-multi {
    width: 180px;
    height: 70px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40'%3E%3Cpath d='M0 30 C10 10, 20 40, 30 20 C40 0, 50 40, 60 10 C70 -10, 80 40, 100 20' stroke='%23FF69B4' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat;
    margin-top: 15px;
}

.about-bubbles {
    grid-column: 1 / span 2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 100px;
    /* Large gap to fill the row */
    padding-top: 0px;
    margin-bottom: 20px;
}

.bubble {
    position: relative;
    padding: 35px;
    border: 2.5px solid var(--pink-primary);
    border-radius: 45px;
    max-width: 320px;
    background: white;
    box-shadow: 8px 8px 0 rgba(255, 105, 180, 0.1);
}

.bubble p {
    font-family: var(--font-cursive);
    font-size: 1.25rem;
    color: var(--black-primary);
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.quote-mark-about {
    position: absolute;
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--pink-primary);
    top: 5px;
    left: 15px;
    opacity: 0.6;
}

.quote-close {
    top: auto;
    bottom: -15px;
    left: auto;
    right: 20px;
}

.bubble-tail {
    position: absolute;
    bottom: -25px;
    left: 50px;
    width: 45px;
    height: 45px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M0 0 Q20 0, 10 30' stroke='%23FF69B4' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat;
}

.bubble-tail-alt {
    position: absolute;
    top: -25px;
    right: 55px;
    width: 45px;
    height: 45px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M40 40 Q20 40, 30 10' stroke='%23FF69B4' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat;
}

.about-image-wrapper {
    position: absolute;
    bottom: 344px;
    right: 142px;
    width: 400px;
    z-index: 5;
}

.about-portrait {
    width: 73%;
    filter: grayscale(100%) contrast(1.1);
    position: relative;
    z-index: 2;
    height: 520px;
}

.about-crown {
    position: absolute;
    top: -5px;
    right: 140px;
    font-size: 3.5rem;
    color: var(--pink-primary);
    transform: rotate(18deg);
    z-index: 3;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.3));
}

@media (max-width: 768px) {
    .about-crown {
        right: 42px;
    }
}

.bubble-1 {
    transform: rotate(-3deg);
}

.bubble-2 {
    transform: rotate(2deg);
}

.portrait-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.portrait-sparkles i {
    position: absolute;
    font-size: 1.2rem;
    animation: pulse 2s infinite alternate;
}

.sp-1 {
    top: -10%;
    left: -20%;
}

.sp-2 {
    bottom: 20%;
    left: -30%;
}

.sp-3 {
    bottom: -10%;
    right: 20%;
}

.big-arrow {
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 250px;
    transform: rotate(-20deg);
    z-index: 10;
}

.big-arrow img {
    width: 100%;
    filter: hue-rotate(300deg) brightness(1.2);
    /* Adjust pinkish hue */
}

.fun-fact-box {
    grid-column: 1 / span 2;
    width: 60%;
    margin: -10px auto 40px;
    border: 3px solid var(--pink-primary);
    border-radius: 10px;
    padding: 25px 50px;
    transform: rotate(0.5deg);
    background: white;
    box-shadow: 15px 15px 0 var(--pink-light);
    position: relative;
    z-index: 2;
}

.fun-fact-box h4 {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--cream-light);
    padding: 0 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.cursive-subtitle {
    position: absolute;
    font-family: var(--font-cursive);
    font-size: 2.5rem;
    color: var(--pink-primary);
    bottom: -10px;
    right: -30px;
    font-weight: 400;
}

.star-decor {
    position: absolute;
    font-size: 1.5rem;
    pointer-events: none;
    z-index: 1;
    animation: float-star 5s ease-in-out infinite;
}

.sd-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.sd-2 {
    top: 50%;
    left: 5%;
    animation-delay: 1s;
    font-size: 1rem;
}

.sd-3 {
    top: 30%;
    right: 15%;
    animation-delay: 2s;
}

.sd-4 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
    font-size: 1.2rem;
}

@keyframes float-star {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) rotate(15deg);
        opacity: 1;
    }
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 120px 80px 80px;
    position: relative;
}

/* Giant Titles */
.giant-title {
    font-family: var(--font-display);
    font-size: 9rem;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 0.9;
    position: relative;
    display: inline-block;
}

.pink-text {
    color: var(--pink-primary);
}

/* Section Title with quote decorator */
.section-header {
    position: absolute;
    top: 100px;
    right: 200px;
}

.quote-decorator {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.quote-mark {
    font-family: var(--font-cursive);
    font-size: 3rem;
    color: var(--pink-primary);
    line-height: 1;
}

.quote-mark.small {
    font-size: 2rem;
}

.quote-text {
    font-family: var(--font-cursive);
    font-size: 1.1rem;
    color: var(--white);
    text-align: center;
}

.subtitle-info {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
}

.subtitle-info i {
    color: var(--pink-primary);
    margin-left: 5px;
}

/* Hero Image Container */
.hero-image-container {
    position: absolute;
    bottom: 0;
    right: 100px;
    width: 400px;
}

.hero-image {
    width: 100%;
    filter: grayscale(100%);
    position: relative;
    z-index: 2;
}

.hero-decorations {
    position: absolute;
    top: -30px;
    left: -50px;
    right: -50px;
    bottom: 0;
    pointer-events: none;
}

.crown {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--pink-primary);
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.brush-strokes {
    position: absolute;
    left: -30px;
    top: 50%;
}

.stroke {
    width: 60px;
    height: 8px;
    background: var(--pink-primary);
    margin: 5px 0;
    border-radius: 4px;
    opacity: 0.8;
}

.stroke-1 {
    width: 50px;
}

.stroke-2 {
    width: 70px;
}

.stroke-3 {
    width: 40px;
}

.paint-brushes {
    position: absolute;
    right: -20px;
    top: 30%;
}

.paint-brushes i {
    display: block;
    color: var(--pink-light);
    font-size: 1.5rem;
    margin: 10px 0;
    transform: rotate(45deg);
}

.selection-banner {
    position: absolute;
    bottom: 150px;
    left: -100px;
    background: linear-gradient(90deg, transparent 0%, var(--cream) 20%, var(--cream) 80%, transparent 100%);
    padding: 15px 60px;
    color: var(--black-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.selection-banner i {
    color: var(--pink-primary);
}

/* Page Number */
.page-number {
    position: absolute;
    bottom: 30px;
    right: 50px;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--pink-primary);
}

.page-number.dark {
    color: var(--black-primary);
}

/* Skills Section */
.skills-section {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
    color: var(--black-primary);
}

.skills-section .giant-title {
    color: var(--pink-primary);
    margin-bottom: 20px;
}

.tools-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    padding: 15px 30px;
    background: rgba(255, 182, 193, 0.3);
    border-radius: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tools-label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--pink-dark);
}

.tools-icons {
    display: flex;
    gap: 15px;
}

.tool-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    transition: transform 0.3s ease;
}

.tool-icon:hover {
    transform: scale(1.1);
}

.tool-icon.ps {
    background: #31A8FF;
}

.tool-icon.ai {
    background: #FF9A00;
}

.tool-icon.figma {
    background: linear-gradient(135deg, #F24E1E, #A259FF, #1ABCFE);
}

.tool-icon.canva {
    background: #00C4CC;
    font-size: 0.6rem;
}

.tool-icon.xd {
    background: #FF61F6;
}

.skills-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.skills-column {
    padding: 30px;
    border: 2px dashed var(--pink-light);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.5);
}

.skills-heading {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black-primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.skills-list {
    list-style: none;
}

.skills-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.skills-list li:hover {
    transform: translateX(10px);
}

.plus {
    color: var(--pink-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.arrow {
    color: var(--pink-primary);
    font-size: 1.2rem;
}

.skills-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skills-image {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.skills-decor-img {
    position: absolute;
    top: 27%;
    left: -142px;
    transform: translateY(-50%) rotate(-62deg);
    width: 350px;
    z-index: 1;
    /* Behind the portrait */
    pointer-events: none;
    opacity: 0.95;
}

.skills-ww-decor {
    position: absolute;
    bottom: 40px;
    right: -32px;
    width: 225px;
    z-index: 3;
    pointer-events: none;
}

.skill-badges {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.badge {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.badge.html5 {
    background: #E44D26;
}

.badge.css3 {
    background: #1572B6;
}

.badge-text {
    font-size: 0.7rem;
    text-align: center;
    color: var(--black-primary);
}

.brush-decoration {
    position: absolute;
    left: 30%;
    bottom: 20%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.brush-stroke {
    width: 60px;
    height: 6px;
    background: var(--pink-primary);
    border-radius: 3px;
}

.learning-quote {
    position: absolute;
    bottom: 80px;
    left: 80px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.learning-quote p {
    font-family: var(--font-cursive);
    font-size: 1rem;
    color: var(--black-primary);
}

/* Dark Background Section */
.dark-bg {
    background-color: var(--black-pure);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Projects Section (High-Fidelity) */
.projects-section {
    padding: 120px 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.projects-bg-signature {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-cursive);
    font-size: 40rem;
    color: rgba(255, 105, 180, 0.04);
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.projects-top-quote {
    position: absolute;
    top: 60px;
    right: 80px;
    z-index: 5;
    text-align: right;
}

.projects-main-content {
    position: relative;
    z-index: 5;
    margin-top: 0;
}

.projects-giant-title {
    font-size: 15vw;
    line-height: 0.85;
    font-family: var(--font-display);
    position: relative;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.1);
}

.projects-giant-title .cursive-subtitle {
    position: absolute;
    bottom: -10px;
    right: 20%;
    font-size: 6rem;
    font-family: var(--font-cursive);
    transform: rotate(-10deg);
}

.projects-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-top: 30px;
    letter-spacing: 5px;
    opacity: 0.9;
}

.projects-interactive-area {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    margin-top: -80px;
    position: relative;
    z-index: 5;
    width: 100%;
}

.projects-portrait-box {
    position: relative;
    width: 35vw;
    max-width: 500px;
    top: 162px;
}

.projects-portrait {
    width: 100%;
    filter: grayscale(100%);
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.projects-portrait-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pink-crown {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    z-index: 10;
}

.project-decor-img-1 {
    position: absolute;
    bottom: 302px;
    left: -87px;
    width: 300px;
    z-index: 1;
    opacity: 0.95;
    transform: rotate(-40deg);
}

.project-decor-img-2 {
    position: absolute;
    bottom: 78px;
    right: -65px;
    width: 257px;
    z-index: 10;
}

.selection-arrow-container {
    flex: 1;
    margin-left: 225px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0px;
}

.selection-banner-new {
    background: var(--white);
    color: var(--black-pure);
    padding: 20px 40px;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    box-shadow: 15px 15px 0 var(--pink-primary);
    transform: rotate(-2deg);
}

.arrow-svg-wrapper {
    width: 100%;
    max-width: 600px;
}

.selection-arrow-svg {
    width: 100%;
    height: auto;
}

/* Utility Colors & Text */
.pink-text {
    color: var(--pink-primary) !important;
}

.white-text {
    color: #C55959 !important;
}

.pink-bg {
    background-color: var(--pink-primary) !important;
}

.pink-star-icon {
    font-size: 1.5rem;
    color: var(--pink-primary);
}

/* Project Showcase */
/* Light Background Utility */
.light-bg {
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
    color: var(--black-primary);
}

.project-showcase {
    padding-top: 80px;
}

.project-title {
    text-align: center;
    margin-bottom: 50px;
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.project-description {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.phone-mockup {
    flex-shrink: 0;
}

.phone-mockup img {
    width: 80px;
    border-radius: 30px;
}

.description-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--black-primary);
}

.description-text p {
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-family: var(--font-brush);
    line-height: 1.3;
}

.project-visuals {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.color-palette {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: -50px;
}

.color-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.color-dot:hover {
    transform: scale(1.1);
}

.pink-dot {
    background: var(--pink-primary);
}

.yellow-dot {
    background: #F5D76B;
}

.gray-dot {
    background: #A8A8A8;
}

.pink-light-dot {
    background: var(--pink-light);
}

.phone-grid {
    display: flex;
    justify-content: center;
}

.phone-screen {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.app-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--pink-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.icon-circle:hover {
    background: var(--pink-primary);
    color: white;
}

.decorative-flowers {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    font-size: 1.5rem;
    color: var(--pink-primary);
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Move Maroc Layout */
.phone-mockup-stack {
    position: relative;
    width: 250px;
    height: 400px;
}

.stacked-phone {
    width: 113px;
    border-radius: 30px;
    position: absolute;
    transition: transform 0.5s ease;
}

.phone-1 {
    transform: rotate(-15deg);
    left: -62px;
    top: 355px;
    z-index: 2;
}

.phone-2 {
    transform: rotate(5deg);
    left: 80px;
    top: 365px;
    z-index: 1;
}

.center-phone-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.phone-screen-large {
    width: 150px;
    border-radius: 40px;
    z-index: 2;
    backface-visibility: hidden;
    will-change: transform, scale;
}

.sticker-logo {
    position: absolute;
    top: -310px;
    right: -30px;
    width: 120px;
    z-index: 10;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

.sticker-img {
    width: 50%;
}

.pattern-decor-box {
    position: absolute;
    bottom: 173px;
    right: 126px;
    width: 250px;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.zellige-pattern {
    width: 100%;
}

.larger-phones .phone-item img {
    width: 200px;
}

.larger-phones .phone-item.featured img {
    width: 230px;
}

.blue-scribbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.scribble {
    position: absolute;
    width: 150px;
    opacity: 0.6;
}

.scribble-1 {
    top: 10%;
    right: 10%;
    transform: rotate(15deg);
}

.scribble-2 {
    bottom: 10%;
    left: 5%;
    transform: rotate(-10deg);
}

/* Social Media Section */
.social-media-section {
    padding: 120px 80px;
    background-color: #F0EEE9;
    position: relative;
    overflow: hidden;
}

.social-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    width: 100%;
}

.social-left {
    flex: 0 0 350px;
    z-index: 5;
}

.social-phone-wrapper {
    width: 100%;
    transform: rotate(-3deg);
}

.social-phone-main {
    opacity: 1 !important;
    visibility: visible !important;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 45px;
}

.social-right-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1000px;
}

.social-grid-item {
    opacity: 1 !important;
    visibility: visible !important;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;

}

.social-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-grid-item:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}


/* Meownder Specific Styles */
.meownder-theme {
    background-color: #FAF8F5;
}

.peeping-cat {
    position: absolute;
    width: 100px;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.peeping-cat.left {
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
}

.cat-sticker-img {
    width: 100%;
}

.cat-pattern {
    width: 100%;
    border-radius: 20px;
    opacity: 0.9;
}

.paw-prints {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.paw {
    position: absolute;
    color: rgba(255, 105, 180, 0.2);
    font-size: 2rem;
    transform: rotate(20deg);
}

.paw-1 {
    top: 20%;
    left: 15%;
}

.paw-2 {
    bottom: 30%;
    right: 10%;
    transform: rotate(-15deg);
}

.paw-3 {
    top: 40%;
    right: 25%;
    font-size: 1.5rem;
}

/* Meownder UI Design Specifics */
.orange-text {
    color: #F49D1A !important;
}

.meownder-ui .ui-design-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.floating-phone-small img {
    width: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 5s ease-in-out infinite;
}

.floating-phone-small.top-left {
    transform: rotate(-15deg);
}

.floating-phone-small.top-right {
    transform: rotate(15deg);
}

.staggered-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* Staggered phone items are handled by GSAP animations */
.staggered-phones .p1 {
    transform: translateY(40px);
}

.staggered-phones .p2 {
    transform: translateY(-20px);
}

.staggered-phones .p3 {
    transform: translateY(0);
    z-index: 5;
}

.staggered-phones .p4 {
    transform: translateY(30px);
}

.staggered-phones .p5 {
    transform: translateY(-30px);
}

.staggered-phones .phone-item img {
    width: 200px;
}

.staggered-phones .phone-item.featured img {
    width: 240px;
}

/* Move Maroc Layout Fix (Ensuring consistency with Meownder) */

/* Podcasta Theme */
.purple-text {
    color: var(--purple-primary) !important;
}

.orange-text {
    color: var(--orange-accent) !important;
}

.purple-bg {
    background-color: var(--purple-primary) !important;
}

.podcasta-theme {
    background-color: #FAF8F5;
}

.podcasta-ui .ui-design-header h2 {
    color: var(--orange-accent) !important;
}

/* Specific to Podcasta visuals */
.mic-decor {
    position: absolute;
    bottom: 75px;
    right: 183px;
    width: 250px;
    z-index: 10;
    animation: float 5s ease-in-out infinite;
}

.podcasta-scribble {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

/* Web Showcase Layouts */
.logitech-theme {
    background-color: #E6E2D3;
}

.gamevolt-theme {
    background-color: #E6E2D3;
}

.ionride-theme {
    background-color: #E6E2D3;
}

.gray-text {
    color: #333 !important;
}

.red-text {
    color: #D11A2A !important;
}

.teal-text {
    color: #66CCCC !important;
}

.web-showcase-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-web-frame {
    width: 80%;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s ease;
}

.main-web-frame .full-mockup {
    width: 100%;
    display: block;
}

.side-web-mockup {
    position: absolute;
    z-index: 3;
    width: 450px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.side-web-mockup.right {
    right: -50px;
    bottom: 50px;
}

.side-web-mockup.left {
    left: -100px;
    bottom: 50px;
}

.side-web-mockup.monitor-mac {
    width: 550px;
    left: -150px;
}

.laptop-mockup,
.monitor-mockup {
    width: 100%;
    height: auto;
}

.floating-web-asset {
    position: absolute;
    z-index: 10;
}

.floating-web-asset.small-laptop {
    width: 150px;
    animation: float 6s ease-in-out infinite;
}

.floating-web-asset.top-left {
    top: -20px;
    left: 100px;
}

.floating-web-asset.top-right {
    top: -20px;
    right: 200px;
}

.floating-web-asset img {
    width: 100%;
}

/* Multi-View Showcase Layout (Rhode/Starbucks) */
.multi-view-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.view-column {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.view-column img {
    width: 100%;
    display: block;
}

.view-column.mobile {
    flex: 0 0 250px;
}

.view-column.tablet {
    flex: 0 0 450px;
}

.view-column.detail {
    flex: 0 0 400px;
}

/* Rhode Decorations */
.balloon-logo {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 200px;
    transform: rotate(5deg);
}

.sticker-asset {
    position: absolute;
    width: 120px;
    z-index: 10;
}

/* Starbucks Decorations */
.coffee-bean {
    position: absolute;
    width: 60px;
    opacity: 0.8;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.bean-1 {
    top: 15%;
    left: 10%;
    transform: rotate(45deg);
}

.bean-2 {
    bottom: 20%;
    right: 5%;
    transform: rotate(-30deg);
}

.bean-3 {
    top: 40%;
    right: 25%;
    transform: rotate(15deg);
}

.sb-logo-asset {
    position: absolute;
    bottom: 50px;
    left: 80px;
    width: 150px;
}

@media (max-width: 1024px) {
    .multi-view-container {
        flex-direction: column;
        align-items: center;
    }

    .view-column.mobile,
    .view-column.tablet,
    .view-column.detail {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
}

/* UI Design Section */
.ui-design-section {
    background: var(--black-soft);
    text-align: center;
}

.phone-showcase {
    margin-top: 60px;
    position: relative;
}

.floating-phone {
    position: absolute;
    top: -50px;
    left: 50px;
    animation: float 4s ease-in-out infinite;
}

.floating-phone img {
    width: 120px;
    filter: drop-shadow(0 10px 20px rgba(255, 105, 180, 0.3));
}

.phones-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    flex-wrap: wrap;
}

.phone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.phone-item img {
    width: 200px;
    border-radius: 35px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.phone-item:hover img {
    transform: translateY(-10px);
}

.phone-item.featured img {
    width: 280px;
}

.phone-label {
    display: block;
    margin-top: 15px;
    font-family: var(--font-cursive);
    font-size: 1.4rem;
    color: var(--white);
    text-align: center;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    background: var(--black-primary);
}

.contact-section .giant-title {
    text-align: center;
    color: var(--pink-primary);
    margin-bottom: 10px;
}

.contact-sub {
    display: block;
    font-family: var(--font-cursive);
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 10px;
    font-weight: 300;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pink-circle {
    position: absolute;
    width: 260px;
    height: 260px;
    background: var(--pink-primary);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-pink 4s infinite;
}

@keyframes pulse-pink {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.contact-image {
    position: relative;
    width: 220px;
    height: 220px;
    object-fit: cover;
    object-position: top;
    z-index: 2;
    filter: grayscale(100%);
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.contact-image:hover {
    transform: scale(1.1) rotate(5deg);
    filter: grayscale(0%);
}

.wm-signature {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-cursive);
    font-size: 4rem;
    color: var(--pink-primary);
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.role-text {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.8;
}

.design-quote {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-top: 10px;
}

.design-quote p {
    font-family: var(--font-cursive);
    font-size: 2rem;
    color: var(--white);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
}

.email-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.phone-icon {
    background: var(--pink-primary);
}

.linkedin-icon {
    background: #0077B5;
}

.instagram-icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.whatsapp-icon {
    background: #25D366;
}

.contact-text {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 300;
}

.contact-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    color: inherit;
}

.copy-number {
    cursor: pointer;
    position: relative;
}

.copy-tooltip {
    position: absolute;
    top: -30px;
    left: 70px;
    background: var(--pink-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-number:hover .copy-tooltip {
    opacity: 1;
    visibility: visible;
    top: -40px;
}

.contact-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.wm-brush-signature {
    width: 150px;
    height: 80px;
}

.brush-signature {
    width: 100%;
    height: 100%;
}

.contact-message {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.contact-message p {
    font-family: var(--font-cursive);
    font-size: 2rem;
    color: var(--white);
    text-align: center;
}

/* Methodology Section */
/* Methodology Section Refactored */
.methodology-section {
    background: var(--white);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
}

.methodology-header {
    margin-bottom: 80px;
    position: relative;
}

.methodology-quote {
    position: absolute;
    top: -50px;
    left: 20%;
    font-family: var(--font-cursive);
    font-size: 1.4rem;
    color: var(--black-primary);
    white-space: nowrap;
}

.methodology-portrait-wrapper {
    position: absolute;
    top: -28px;
    right: 68px;
    width: 269px;
    z-index: 5;
}

.method-portrait-img {
    width: 100%;
    filter: grayscale(100%);
}

.portrait-crown {
    position: absolute;
    top: -45px;
    right: 85px;
    font-size: 3rem;
    color: var(--pink-primary);
    transform: rotate(15deg);
}

@media (max-width: 768px) {
    .portrait-crown {
        right: 54px;
    }
}

.portrait-crown-2 {
    position: absolute;
    top: -36px;
    right: 191px;
    font-size: 3rem;
    color: var(--pink-primary);
    transform: rotate(15deg);
}

/* Mobile */
@media (max-width: 768px) {
    .portrait-crown-2 {
        right: 108px;
    }
}

.methodology-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 5;
}

.method-card {
    position: relative;
    padding: 10px;
    transition: transform 0.4s ease;
}

.method-card-inner {
    background: #F9E2EF;
    /* Soft pink background */
    border-radius: 40px;
    padding: 40px 30px;
    min-height: 450px;
    position: relative;
    z-index: 2;
}

.card-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--pink-primary);
    border-radius: 45px;
    pointer-events: none;
    z-index: 1;
    transform: rotate(-1deg);
}

.method-card:nth-child(even) .card-frame {
    transform: rotate(1deg);
}

.card-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    position: relative;
}

.card-icon {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

/* Card Icons positioned absolutely below */

.card-header h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--pink-primary);
    margin: 0;
}

.card-decor-heart {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2rem;
    color: var(--pink-primary);
}

.method-list {
    list-style: none;
    padding: 0;
}

.method-list li {
    font-family: var(--font-bungee);
    font-weight: normal;
    font-size: 1.4rem;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    color: var(--black-primary);
    letter-spacing: 0.8px;
    line-height: 1.2;
}

.underline-hand {
    position: absolute;
    bottom: -4px;
    left: 40px;
    width: 60%;
    height: 2px;
    background: var(--pink-primary);
    opacity: 0.3;
}

.method-card:hover {
    transform: translateY(-15px);
}

.laptop-icon {
    width: 60px;
    position: absolute;
    top: -30px;
    left: -20px;
    transform: rotate(-10deg);
}

.branding-icon {
    width: 90px;
    position: absolute;
    top: -30px;
    right: -10px;
}

.social-icon {
    width: 54px;
    position: absolute;
    top: -40px;
    right: -10px;
    transform: rotate(5deg);
}

.card-decor-heart-tiny {
    position: absolute;
    top: 50px;
    left: -30px;
    font-size: 1.5rem;
    color: var(--pink-primary);
    opacity: 0.8;
}

.method-list li:hover .underline-hand {
    opacity: 0.6;
    width: 80%;
}

.underline-hand {
    transition: all 0.3s ease;
}

.card-frame {
    transition: transform 0.3s ease;
}

.method-card:hover .card-frame {
    transform: rotate(0deg) scale(1.02);
}

.star-decor {
    position: absolute;
    font-size: 1.5rem;
    pointer-events: none;
    z-index: 1;
    animation: float 5s ease-in-out infinite;
}

.sd-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.sd-2 {
    top: 40%;
    left: 15%;
    animation-delay: 1s;
    font-size: 1rem;
}

.sd-3 {
    top: 15%;
    right: 10%;
    animation-delay: 2s;
}

.sd-4 {
    bottom: 20%;
    left: 8%;
    animation-delay: 3s;
    font-size: 1.2rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Quote Marks refinement */
.methodology-quote .pink-text {
    font-weight: bold;
    font-style: italic;
}

.method-list li .pink-star {
    font-size: 1rem;
    flex-shrink: 0;
}

.check-mark {
    color: var(--pink-primary);
    margin-left: 5px;
    font-size: 1.4rem;
    font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease forwards;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.gsap-draw-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* Responsive Design */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--pink-primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1400px) {
    .portfolio-title {
        font-size: 18rem;
    }

    .hero-portfolio-image {
        width: 600px;
    }
}

@media (max-width: 1200px) {
    .portfolio-title {
        font-size: 14rem;
        letter-spacing: -5px;
    }

    .hero-portfolio-image {
        width: 500px;
    }

    .about-giant-name {
        font-size: 9rem;
    }

    .about-image-wrapper {
        right: 50px;
        width: 350px;
    }

    .giant-title {
        font-size: 8rem;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 20px 30px;
    }

    .nav {
        gap: 30px;
    }

    .portfolio-title {
        font-size: 10rem;
    }

    .hero-portfolio-image {
        width: 400px;
    }

    .year-badge {
        font-size: 4rem;
        top: -20px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 40px auto 0;
        width: 100%;
        max-width: 350px;
        text-align: center;
    }

    .about-portrait {
        width: 100%;
        height: auto;
    }

    .about-details-grid {
        margin-top: 0;
        padding-left: 0;
        justify-content: center;
    }

    .skills-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .skills-center {
        order: -1;
    }

    .methodology-header {
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .methodology-quote {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
        white-space: normal;
        font-size: 1.2rem;
    }

    .methodology-portrait-wrapper {
        position: relative;
        top: 0;
        right: 0;
        width: 200px;
        margin-bottom: 30px;
    }

    .methodology-cards {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .method-card {
        width: 100%;
        max-width: 100%;
    }

    .method-card-inner {
        min-height: auto;
        padding: 30px 20px;
    }

    .projects-top-quote {
        position: relative;
        top: 0;
        right: 0;
        text-align: center;
        margin-bottom: 20px;
    }

    .projects-giant-title {
        font-size: 10vw;
        text-align: center;
    }

    .projects-giant-title .cursive-subtitle {
        position: relative;
        display: block;
        bottom: 0;
        right: 0;
        font-size: 3rem;
        margin-top: 10px;
    }

    .projects-subtitle {
        font-size: 1.2rem;
        text-align: center;
        margin-top: 20px;
        letter-spacing: 2px;
    }

    .projects-interactive-area {
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
    }

    .projects-portrait-box {
        width: 280px;
        margin-bottom: 30px;
    }

    .selection-arrow-container {
        margin-left: 0;
        align-items: center;
    }

    .selection-banner-new {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .arrow-svg-wrapper {
        display: none;
    }

    .phones-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .phone-item {
        flex: 0 0 40%;
    }

    .social-content {
        flex-direction: column;
        align-items: center;
    }

    .social-right-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 500px;
        margin-top: 40px;
    }

    .projects-interactive-area {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .selection-arrow-container {
        margin-left: 0;
        margin-top: 40px;
        align-items: center;
    }

    .projects-portrait-box {
        top: 30px;
        width: 80%;
    }

    .project-decor-img-1,
    .project-decor-img-2 {
        display: none;
    }

    .web-showcase-container {
        height: auto;
        flex-direction: column;
        padding: 40px 0;
    }

    .main-web-frame {
        width: 95%;
    }

    .side-web-mockup {
        position: relative;
        width: 80%;
        max-width: 400px;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        margin: -40px auto 0;
    }

    .floating-web-asset {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--cream-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        border-bottom: none;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    body.menu-open {
        overflow: hidden;
    }

    .giant-title {
        font-size: 3.5rem;
        display: block;
        text-align: center;
    }

    .cursive-subtitle {
        position: relative;
        display: block;
        bottom: 0;
        right: 0;
        text-align: center;
        margin-top: 5px;
        font-size: 1.5rem;
    }

    .methodology-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
        text-align: center;
    }

    .methodology-quote {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        white-space: normal;
        margin: 10px 0;
        order: -1;
    }

    .methodology-portrait-wrapper {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        width: 180px;
        margin: 20px 0;
    }

    .projects-top-quote {
        position: relative !important;
        top: 0 !important;
        right: 0 !important;
        text-align: center;
        margin-bottom: 30px;
    }

    .projects-giant-title {
        font-size: 4rem;
        text-align: center;
        display: block;
    }

    .projects-giant-title .cursive-subtitle {
        font-size: 2rem;
        margin-top: 10px;
        transform: none;
    }

    .projects-subtitle {
        font-size: 1.1rem;
        text-align: center;
        margin-top: 15px;
        letter-spacing: 2px;
    }

    .portfolio-title {
        font-size: 5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-portfolio-image {
        width: 340px;
        top: 50%;
        transform: translate(-50%, -35%);
        mask-image: none;
        -webkit-mask-image: none;
    }

    .year-badge {
        font-size: 3rem;
    top: -44px;
    right: -38%;
    }

    .about-giant-name {
        font-size: 4.5rem;
        text-align: center;
        letter-spacing: -2px;
    }

    .about-signatures {
        position: relative;
        top: 0;
        left: 0;
        text-align: center;
        margin: 10px 0 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .wiame-sign {
        font-size: 3.5rem;
        margin-bottom: -20px;
    }

    .graphic-design-sign {
        font-size: 2rem;
        margin-left: 0;
        display: block;
    }

    .about-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
    }

    .bio-frame {
        border-radius: 20px;
        padding: 15px;
        border: 2px solid var(--pink-primary);
        margin-bottom: 0;
    }

    .bio-frame::before {
        display: none;
    }

    .bio-text {
        font-size: 1.1rem;
        text-align: center;
    }

    .about-details-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        margin-top: 20px;
    }

    .details-column {
        text-align: center;
    }

    .details-column li {
        justify-content: center;
    }

    .section {
        padding: 50px 20px;
        overflow-x: hidden;
    }

    .about-bubbles {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .bubble {
        max-width: 100%;
    }

    .tools-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .project-content {
        display: flex;
        flex-direction: column;
    }

    .project-description {
        padding-right: 0;
        margin-bottom: 40px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .phone-mockup-stack {
        width: 100%;
        max-width: 250px;
        height: 480px;
        margin: 0 auto 30px;
    }

    .phone-1 {
        left: 0;
    }

    .phone-2 {
        left: 80px;
    }

    .peeping-cat,
    .sticker-logo,
    .pattern-decor-box,
    .paw-prints,
    .mic-decor,
    .sticker-asset,
    .coffee-bean {
        display: none !important;
    }

    .ui-design-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .floating-phone-small {
        display: none;
    }

    .staggered-phones {
        gap: 30px;
    }

    .staggered-phones .phone-item {
        transform: none;
    }

    .staggered-phones .phone-item img {
        width: 180px;
    }

    .staggered-phones .phone-item.featured img {
        width: 200px;
    }

    .description-text p {
        font-size: 1.5rem;
    }

    .multi-view-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .floating-text,
    .stars-container,
    .handwriting-decoration,
    .decorative-curls,
    .wm-hero-signature {
        opacity: 0.3;
        pointer-events: none;
    }

    .wm-hero-signature {
        display: none;
    }
}

@media (max-width: 480px) {
    .portfolio-title {
        font-size: 3.8rem;
    }

    .hero-portfolio-image {
        width: 280px;
    }

    .about-giant-name {
        font-size: 3.2rem;
    }

    .wiame-sign {
        font-size: 2.8rem;
    }

    .graphic-design-sign {
        font-size: 1.8rem;
    }

    .giant-title {
        font-size: 3rem;
    }

    .cursive-subtitle {
        font-size: 1.2rem;
        top: -15px;
    }

    .phone-item {
        flex: 0 0 100%;
    }

    .social-right-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer */
.site-footer {
    padding: 40px 20px;
    text-align: center;
    background: var(--black-primary);
    border-top: 1px solid rgba(255, 105, 180, 0.1);
    position: relative;
    z-index: 10;
}

.footer-content p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray);
    letter-spacing: 1px;
    margin: 0;
}

.footer-content a {
    color: var(--pink-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--pink-hot);
    transition: width 0.3s ease;
}

.footer-content a:hover {
    color: var(--pink-hot);
}

.footer-content a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .footer-content p {
        font-size: 0.8rem;
        line-height: 1.6;
    }
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--pink-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink-hot);
}

::selection {
    background: var(--pink-primary);
    color: var(--white);
}