*, *::before, *::after {
    box-sizing: border-box;
}

body, p, h1, h2, h3, h4, h5, h6, span, div, a, button, input, textarea, label {
    font-family: 'Be Vietnam Pro', sans-serif;
}

.dancing-script {
    font-family: 'Dancing Script', cursive;
}

:root {
    --pastel-pink: #FFD1DC;
    --pastel-pink-dark: #FFC4D1;
    --creamy-white: #FFFBF7;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    background: linear-gradient(135deg, var(--creamy-white) 0%, rgba(255, 209, 220, 0.15) 50%, #fff 100%);
    min-height: 100vh;
    color: #444;
    position: relative;
}

main, section, .container {
    max-width: 100%;
}

/* ===== ORGANIC BLOB SHAPES ===== */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, transparent 70%);
    border-radius: 35% 65% 42% 58% / 58% 38% 62% 42%;
    animation: blob 8s ease-in-out infinite;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 209, 220, 0.25) 0%, transparent 70%);
    border-radius: 45% 55% 60% 40% / 30% 50% 50% 70%;
    animation: blob 10s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -50px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(50px, 50px) scale(1.02); }
}

/* ===== HEADER RESPONSIVE ===== */
@media (max-width: 640px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 251, 247, 0.95);
        backdrop-filter: blur(15px);
        padding: 0.75rem 0;
    }
    
    .dancing-script.text-3xl {
        font-size: 1.25rem;
    }
    
    #langToggle {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    nav.container {
        padding: 0.5rem 1rem !important;
        width: 100%;
    }
    
    nav .flex.gap-4 {
        gap: 0.5rem;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .header {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 251, 247, 0.9);
        backdrop-filter: blur(18px);
    }
    
    .dancing-script.text-3xl {
        font-size: 1.75rem;
    }
}

/* ===== HEADER GLASSMORPHISM ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 251, 247, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 209, 220, 0.2);
    box-shadow: 0 4px 30px rgba(255, 209, 220, 0.1);
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.header.header-hidden {
    transform: translateY(-100%);
}

.header.header-visible {
    transform: translateY(0);
}

/* Space for fixed header */
body {
    padding-top: 70px;
}

@media (max-width: 640px) {
    body {
        padding-top: 60px;
    }
}

.header nav {
    width: 100%;
}

/* ===== PARTICLE EFFECT ===== */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 209, 220, 0.3);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

/* ===== SOFT SHADOW ===== */
.soft-shadow {
    box-shadow: 0 10px 40px rgba(255, 209, 220, 0.2),
                0 0 60px rgba(255, 209, 220, 0.1);
    transition: all 0.3s ease;
}

.soft-shadow:hover {
    box-shadow: 0 20px 60px rgba(255, 209, 220, 0.3),
                0 0 80px rgba(255, 209, 220, 0.15);
}

/* ===== FLOATING EFFECT ===== */
.float {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* ===== PROFILE IMAGE ===== */
.profile-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--creamy-white);
    aspect-ratio: 1;
    box-sizing: border-box;
    display: block;
}

.profile-img-wrapper {
    position: relative;
    overflow: hidden;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3), rgba(255, 182, 193, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 209, 220, 0.4), 0 0 60px rgba(255, 105, 180, 0.2);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .profile-img-wrapper {
        width: 130px;
        height: 130px;
        box-shadow: 0 0 18px rgba(255, 209, 220, 0.35), 0 0 35px rgba(255, 105, 180, 0.2);
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .profile-img-wrapper {
        width: 130px;
        height: 130px;
        box-shadow: 0 0 20px rgba(255, 209, 220, 0.35), 0 0 40px rgba(255, 105, 180, 0.18);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .profile-img-wrapper {
        width: 150px;
        height: 150px;
        box-shadow: 0 0 25px rgba(255, 209, 220, 0.38), 0 0 50px rgba(255, 105, 180, 0.2);
    }
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ===== COUNTER CONTAINER ===== */
.counter-container {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    flex-wrap: wrap;
    width: fit-content;
    max-width: 100%;
}

@media (min-width: 480px) {
    .counter-container {
        gap: 0.5rem;
        margin-top: 2.5rem;
    }
}

@media (min-width: 640px) {
    .counter-container {
        gap: 0.8rem;
        margin-top: 3rem;
    }
}

@media (min-width: 768px) {
    .counter-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 3.5rem;
        padding: 0 1rem;
        width: auto;
    }
}

@media (min-width: 1024px) {
    .counter-container {
        gap: 2rem;
        margin-top: 4rem;
    }
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    animation: slideUp 0.8s ease-out;
    flex: 0 0 auto;
}

@media (min-width: 480px) {
    .counter-item {
        gap: 0.4rem;
    }
}

@media (min-width: 640px) {
    .counter-item {
        gap: 0.5rem;
    }
}

@media (min-width: 768px) {
    .counter-item {
        gap: 0.75rem;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-bubble {
    position: relative;
    width: auto;
    min-width: 75px;
    height: 75px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 245, 250, 0.85) 100%);
    backdrop-filter: blur(12px) saturate(180%);
    border: 0.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    box-shadow: 
        0 4px 15px rgba(255, 105, 180, 0.08),
        0 0 1px rgba(255, 255, 255, 0.4) inset,
        0 0 15px rgba(255, 182, 193, 0.05) inset;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

@media (min-width: 480px) {
    .counter-bubble {
        min-width: 80px;
        height: 80px;
        gap: 0.3rem;
        border-radius: 20px;
        box-shadow: 
            0 5px 18px rgba(255, 105, 180, 0.1);
            0 0 1px rgba(255, 255, 255, 0.5) inset;
            0 0 18px rgba(255, 182, 193, 0.06) inset;
    }
}

@media (min-width: 640px) {
    .counter-bubble {
        min-width: 80px;
        height: 80px;
        gap: 0.4rem;
        border-radius: 22px;
        border: 0.75px solid rgba(255, 255, 255, 0.9);
        box-shadow: 
            0 6px 20px rgba(255, 105, 180, 0.11),
            0 0 1px rgba(255, 255, 255, 0.5) inset,
            0 0 20px rgba(255, 182, 193, 0.07) inset;
    }
}

@media (min-width: 768px) {
    .counter-bubble {
        min-width: 100px;
        height: 100px;
        gap: 0.5rem;
        padding: 0;
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.9);
        box-shadow: 
            0 12px 40px rgba(255, 105, 180, 0.15),
            0 0 1px rgba(255, 255, 255, 0.6) inset,
            0 0 30px rgba(255, 182, 193, 0.1) inset;
    }
}

@media (min-width: 1024px) {
    .counter-bubble {
        min-width: none;
        height: auto;
        width: 100%;
        padding: 1.75rem 1.25rem;
        aspect-ratio: auto;
        border-radius: 32px;
        box-shadow: 
            0 15px 45px rgba(255, 105, 180, 0.16),
            0 0 2px rgba(255, 255, 255, 0.7) inset,
            0 0 35px rgba(255, 182, 193, 0.12) inset;
    }
}

.counter-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.3), transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}

.counter-bubble:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 240, 245, 0.95) 100%);
    border-color: rgba(255, 182, 193, 0.8);
    box-shadow: 
        0 8px 25px rgba(255, 105, 180, 0.15),
        0 0 2px rgba(255, 255, 255, 0.6) inset,
        0 0 25px rgba(255, 182, 193, 0.12) inset;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .counter-bubble:hover {
        box-shadow: 
            0 18px 50px rgba(255, 105, 180, 0.22),
            0 0 2px rgba(255, 255, 255, 0.8) inset,
            0 0 40px rgba(255, 182, 193, 0.18) inset;
        transform: translateY(-4px);
    }
}

.counter-bubble .counter-number {
    position: relative;
    z-index: 2;
    font-weight: 800;
    font-size: clamp(1.3rem, 4vw, 2.7rem);
    background: linear-gradient(135deg, #ff69b4 0%, #ff1493 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.counter-label {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ff69b4;
    font-weight: 700;
    font-size: clamp(0.55rem, 2vw, 0.80rem);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    margin: 0;
    line-height: 1;
}

.counter-item:hover .counter-label {
    color: #ff1493;
}

/* ===== CUMULATIVE TOTAL ===== */
.cumulative-total {
    margin-top: 1.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 209, 220, 0.3);
}

.cumulative-total span {
    color: #ff1493;
    font-weight: 700;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 209, 220, 0.3), rgba(255, 209, 220, 0.8), rgba(255, 209, 220, 0.3));
}

.timeline-item {
    margin-bottom: 4rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    padding-right: 5%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 5%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border: 4px solid var(--creamy-white);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(255, 209, 220, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    width: 28px;
    height: 28px;
    box-shadow: 0 0 0 8px rgba(255, 209, 220, 0.3),
                0 0 20px rgba(255, 105, 180, 0.5);
}

/* ===== MASONRY GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    grid-auto-rows: 250px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 105, 180, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 0.5rem;
}

.gallery-overlay-text {
    color: white;
    font-size: 0.875rem;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    max-width: 90%;
}

/* ===== ENVELOPE ANIMATION ===== */
@keyframes envelope {
    0% {
        transform: rotateX(0deg) scale(1);
    }
    40% {
        transform: rotateX(-30deg) scale(0.95);
    }
    80% {
        transform: rotateX(30deg) scale(0.95);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg) scale(1);
    }
}

.envelope-animation {
    animation: envelope 0.8s ease-in-out;
}

/* ===== HEARTBEAT ANIMATION ===== */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.15);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.15);
    }
    56% {
        transform: scale(1);
    }
}

.heart-hero {
    animation: heartbeat 1.2s ease-in-out infinite;
}

@media (max-width: 640px) {
    .heart-hero {
        font-size: 3rem !important;
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .heart-hero {
        font-size: 3rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .heart-hero {
        font-size: 4rem !important;
    }
}

/* ===== FORM STYLING ===== */
.form-input, .form-textarea {
    background: rgba(255, 251, 247, 0.8);
    border: 2px solid rgba(255, 209, 220, 0.3);
    border-radius: 15px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--pastel-pink);
    background: rgba(255, 251, 247, 1);
    box-shadow: 0 0 0 3px rgba(255, 209, 220, 0.2);
}

/* ===== BUTTON ===== */
.btn-primary {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.5);
}

.btn-primary:active {
    transform: translateY(-2px);
}

/* ===== HERO SECTION RESPONSIVE ===== */
@media (max-width: 640px) {
    section#home {
        min-height: calc(100vh - 50px);
        padding-top: 1rem !important;
        padding-bottom: 1rem;
        display: flex;
        align-items: center;
    }
    
    section#home > .container {
        width: 100%;
    }
    
    section#home .container > .grid {
        display: flex !important;
        flex-direction: column-reverse !important;
        gap: 1rem !important;
    }
    
    section#home .animate__fadeInLeft {
        text-align: center;
    }
    
    section#home .animate__fadeInRight {
        margin-top: 0 !important;
    }
    
    h1.dancing-script {
        font-size: 2.75rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    section#home p {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    section#home .counter-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 280px;
        margin: 0 auto;
    }
    
    section#home .counter-bubble {
        min-width: 100px;
        height: 80px;
        border-radius: 22px;
    }
    
    section#home .counter-number {
        font-size: 1.75rem !important;
    }
    
    section#home .counter-label {
        font-size: 0.7rem;
    }
    
    section#home .cumulative-total {
        margin-top: 1rem;
    }
    
    section#home .cumulative-total p:first-child {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    section#home .cumulative-total p:last-child {
        font-size: 0.7rem;
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 2rem;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #888;
    margin-bottom: 3rem;
}

/* Alternating section colors */
.section-pink {
    background: linear-gradient(135deg, rgba(255, 209, 220, 0.4) 0%, rgba(255, 182, 193, 0.2) 100%);
}

.section-white {
    background: rgba(255, 255, 255, 0.95);
}

/* ===== FOOTER STYLES ===== */
.footer-link {
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-link:hover {
    color: #ec4899;
    background: rgba(236, 72, 153, 0.1);
    transform: translateY(-2px);
}

.footer-heart {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: floatHeart 6s ease-in-out infinite;
}

@keyframes floatHeart {
    0%, 100% {
        transform: translateY(100%);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    section {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        white-space: normal;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    h1.dancing-script {
        font-size: 2rem !important;
    }
    
    h3.dancing-script {
        font-size: 1.5rem !important;
    }
    
    .timeline {
        position: relative;
        padding: 1rem 0 1rem 40px;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        left: 12px;
        top: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, rgba(255, 209, 220, 0.3), rgba(255, 209, 220, 0.8), rgba(255, 209, 220, 0.3));
    }
    
    .timeline-item {
        width: 100% !important;
        margin-bottom: 2rem;
        padding-left: 30px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-left: 0 !important;
    }
    
    .timeline-item:nth-child(odd) {
        padding-left: 30px !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 30px !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        position: absolute;
        width: 16px;
        height: 16px;
        left: 0;
        top: 8px;
        transform: translateX(0);
        box-shadow: 0 0 0 3px rgba(255, 209, 220, 0.2);
    }
    
    .timeline-item:hover .timeline-dot {
        width: 20px;
        height: 20px;
        left: -2px;
        top: 6px;
        box-shadow: 0 0 0 5px rgba(255, 209, 220, 0.3),
                    0 0 15px rgba(255, 105, 180, 0.5);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
        gap: 8px;
    }
    
    .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    section {
        padding: 3rem 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    h1.dancing-script {
        font-size: 4rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
        gap: 18px;
    }
    
    .grid.grid-cols-2 {
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1.5rem;
    }
    
    .timeline {
        position: relative;
        padding: 1.5rem 0 1.5rem 45px;
    }
    
    .timeline::before {
        left: 18px;
        width: 2px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 45px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-bottom: 2.5rem;
        margin-left: 0 !important;
    }
    
    .timeline-item:nth-child(odd) {
        padding-left: 45px !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(even) {
        padding-left: 45px !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 0;
        top: 8px;
        width: 18px;
        height: 18px;
        transform: translateX(0);
        box-shadow: 0 0 0 3px rgba(255, 209, 220, 0.2);
    }
    
    .timeline-item:hover .timeline-dot {
        width: 24px;
        height: 24px;
        left: -3px;
        top: 5px;
        box-shadow: 0 0 0 5px rgba(255, 209, 220, 0.3),
                    0 0 15px rgba(255, 105, 180, 0.5);
    }
    
    .gallery-grid {
        grid-auto-rows: 200px;
        gap: 15px;
    }
    
    .profile-img {
        border-radius: 20px;
        border: 6px solid var(--creamy-white);
    }
}

html {
    scroll-behavior: smooth;
}

/* ===== MOBILE MENU HOVER ===== */
.mobile-menu-item {
    color: #444;
    position: relative;
    border: 1px solid transparent;
}

.mobile-menu-item:hover {
    color: #ff1493;
    background: linear-gradient(135deg, rgba(255, 209, 220, 0.3) 0%, rgba(255, 182, 193, 0.2) 100%);
    border-color: rgba(255, 105, 180, 0.3);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.15);
}

.mobile-menu-item:active {
    transform: translateX(10px) scale(0.98);
}
