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

:root {
    /* Matcha/Nature Color Palette */
    --matcha-green: #9CAF88;
    --matcha-dark: #6B8E6E;
    --matcha-light: #C4D5B2;
    --matcha-cream: #F5F7F0;
    --sage-green: #87A96B;
    --forest-green: #556B2F;
    --earth-brown: #8B7355;
    --warm-beige: #E8E5DC;
    
    /* Feminine Accents */
    --blush-pink: #E8B4BC;
    --dusty-rose: #C9A9A6;
    --soft-lavender: #B8A9C9;
    --rose: #D4A5A5;
    --mauve: #C4B5D0;
    
    /* Text Colors */
    --text-dark: #2C3E2D;
    --text-medium: #4A5D47;
    --text-light: #6B7A68;
    
    /* Spacing */
    --section-padding: 100px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--matcha-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(107, 142, 110, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--matcha-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--matcha-dark);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--matcha-dark);
    transition: all 0.3s ease;
}

/* Intro Section */
.intro-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--matcha-cream) 0%, var(--warm-beige) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--matcha-light) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.highlight {
    color: var(--matcha-dark);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--matcha-light);
    z-index: -1;
    opacity: 0.5;
}

.intro-subtitle {
    font-size: 1.5rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.intro-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.intro-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--matcha-green);
    color: white;
    box-shadow: 0 4px 15px rgba(156, 175, 136, 0.3);
}

.btn-primary:hover {
    background: var(--matcha-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 175, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--matcha-dark);
    border: 2px solid var(--matcha-green);
}

.btn-secondary:hover {
    background: var(--matcha-green);
    color: white;
    transform: translateY(-2px);
}

/* Decorative Leaves */
.intro-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--matcha-light);
    border-radius: 0% 100% 0% 100% / 100% 0% 100% 0%;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

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

.leaf-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(45deg);
}

.leaf-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(-30deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--matcha-green);
    margin: 10px auto 0;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--matcha-green);
    border-bottom: 2px solid var(--matcha-green);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    color: var(--matcha-dark);
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--matcha-green);
    border-radius: 2px;
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(156, 175, 136, 0.2);
    border: 5px solid var(--matcha-light);
    transition: transform 0.3s ease;
    display: block;
}

.profile-photo:hover {
    transform: scale(1.05);
}

.image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--matcha-light) 0%, var(--matcha-green) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    box-shadow: 0 10px 40px rgba(156, 175, 136, 0.2);
}

.about-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.about-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--matcha-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--matcha-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Photo Gallery */
.photo-gallery {
    margin-top: 4rem;
    width: 100%;
}

.gallery-title {
    text-align: center;
    color: var(--matcha-dark);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.gallery-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.gallery-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--matcha-light);
    color: var(--matcha-dark);
    font-size: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
}

.gallery-nav-btn:hover {
    background: var(--matcha-green);
    color: white;
    border-color: var(--matcha-dark);
    transform: scale(1.1);
}

.gallery-nav-btn:active {
    transform: scale(0.95);
}

.photo-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.photo-thumbnail {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(107, 142, 110, 0.2);
    background: var(--matcha-light);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-thumbnail:hover {
    transform: scale(1.02);
}

.photo-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-indicators {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.photo-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--matcha-light);
    border: 2px solid var(--matcha-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-indicator.active {
    background: var(--matcha-green);
    transform: scale(1.2);
}

.photo-caption {
    text-align: center;
    color: var(--text-medium);
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Photo Modal */
.photo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.photo-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    z-index: 2001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 3rem;
    color: var(--matcha-dark);
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
    z-index: 2002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: var(--matcha-light);
}

.modal-image-container {
    width: 100%;
    max-width: 800px;
    max-height: 70vh;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.modal-caption {
    text-align: center;
    color: var(--matcha-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* What I Do Section */
.what-i-do-section {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--matcha-cream) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(107, 142, 110, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(107, 142, 110, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--matcha-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Matcha Making Game Section */
.matcha-game-section {
    background: linear-gradient(135deg, var(--matcha-cream) 0%, var(--warm-beige) 100%);
    padding: var(--section-padding);
}

.game-intro {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
}

.game-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Temperature Selector */
.temp-selector {
    width: 100%;
    margin-bottom: 1rem;
}

.selector-title {
    text-align: center;
    color: var(--matcha-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.temp-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.temp-btn {
    padding: 1.2rem 2.5rem;
    background: white;
    border: 3px solid var(--matcha-light);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    min-width: 140px;
}

.temp-btn:hover {
    border-color: var(--matcha-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(107, 142, 110, 0.2);
}

.temp-btn.active {
    background: linear-gradient(135deg, var(--matcha-light) 0%, var(--matcha-green) 100%);
    border-color: var(--matcha-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 142, 110, 0.3);
}

.temp-icon {
    font-size: 2.5rem;
    display: block;
}

.temp-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--matcha-dark);
    display: block;
}

.temp-btn.active .temp-name {
    color: white;
}

/* Glass Animation Container */
.glass-animation-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

/* Milk Pouring Animation */
.milk-pour-animation {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 80px;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.milk-pour-animation.active {
    opacity: 1;
    animation: pourMilk 1.5s ease;
}

.milk-stream {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.9) 100%);
    border-radius: 15px 15px 0 0;
    position: relative;
    overflow: hidden;
}

.milk-stream::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    animation: milkFlow 1.5s ease infinite;
}

@keyframes pourMilk {
    0% {
        transform: translateX(-50%) translateY(-20px) scaleY(0.5);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(0) scaleY(1);
        opacity: 0;
    }
}

@keyframes milkFlow {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100px);
    }
}

/* Whisk Animation */
.whisk-animation {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    z-index: 9;
    transition: opacity 0.3s ease;
}

.whisk-animation.active {
    opacity: 1;
    animation: whisking 1s ease;
}

.whisk-icon {
    font-size: 2.5rem;
    animation: whiskSpin 0.5s ease infinite;
}

@keyframes whisking {
    0% {
        transform: translateX(-50%) translateY(-10px) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes whiskSpin {
    0%, 100% {
        transform: rotate(-15deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

/* Glass Container */
.glass-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glass {
    width: 180px;
    height: 250px;
    background: rgba(255, 255, 255, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.8);
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(107, 142, 110, 0.2);
    backdrop-filter: blur(5px);
}

.glass-base {
    width: 200px;
    height: 15px;
    background: var(--matcha-dark);
    border-radius: 10px;
    margin-top: -5px;
    box-shadow: 0 5px 15px rgba(107, 142, 110, 0.3);
}

/* Ice Cubes (for cold matcha) */
.ice-cubes {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: flex-start;
    padding: 10px;
    z-index: 4;
}

.ice-cube {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(200, 230, 255, 0.9) 0%, rgba(180, 220, 255, 0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.ice-cube:nth-child(1) { animation-delay: 0s; }
.ice-cube:nth-child(2) { animation-delay: 0.5s; }
.ice-cube:nth-child(3) { animation-delay: 1s; }
.ice-cube:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

@keyframes iceFall {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(-180deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

/* Matcha Layer */
.matcha-layer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, #1a331a 0%, #2d4a2d 25%, #3d6b3d 50%, #4a7c4a 75%, #5a8c5a 100%);
    transition: height 1s ease, opacity 0.5s ease, background 0.5s ease;
    border-radius: 0 0 16px 16px;
    z-index: 2;
}

/* Lighter matcha when milk is present (latte effect) */
.matcha-layer.with-milk {
    background: linear-gradient(to top, #3d6b3d 0%, #5a8c5a 25%, #7ba87b 50%, #9cc49c 75%, #b8d9b8 100%);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.15);
}

.matcha-layer.pouring {
    animation: pour 1s ease;
}

@keyframes pour {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 0.7; }
    100% { opacity: 1; transform: translateY(0); }
}

/* Milk Layer */
.milk-layer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
    transition: height 1s ease, opacity 0.5s ease;
    border-radius: 0 0 16px 16px;
    z-index: 3;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.milk-layer.pouring {
    animation: milkPour 1s ease;
}

@keyframes milkPour {
    0% { 
        opacity: 0;
        transform: translateY(-20px) scaleX(0.8);
    }
    50% { 
        opacity: 0.8;
        transform: translateY(-5px) scaleX(1);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) scaleX(1);
    }
}

/* Foam Layer */
.foam-layer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(240, 255, 240, 0.7) 50%, transparent 100%);
    border-radius: 0 0 16px 16px;
    transition: height 0.8s ease;
    z-index: 4;
    animation: bubble 4s ease-in-out infinite;
}

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

/* Steam Animation (for hot matcha) */
.steam {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    z-index: 1;
    pointer-events: none;
}

.steam-particle {
    width: 6px;
    height: 20px;
    background: linear-gradient(to top, rgba(200, 200, 200, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: steamRise 3s ease-in-out infinite;
    opacity: 0.7;
}

.steam-particle:nth-child(1) {
    animation-delay: 0s;
    margin-left: -20px;
}

.steam-particle:nth-child(2) {
    animation-delay: 0.5s;
}

.steam-particle:nth-child(3) {
    animation-delay: 1s;
    margin-right: -20px;
}

@keyframes steamRise {
    0% {
        transform: translateY(0) translateX(0) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) translateX(5px) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-40px) translateX(-5px) scale(0.6);
        opacity: 0;
    }
}

/* Ingredients Panel */
.ingredients-panel {
    width: 100%;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(107, 142, 110, 0.1);
}

.ingredients-title {
    text-align: center;
    color: var(--matcha-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.ingredients-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ingredient-btn {
    padding: 1.2rem 1.8rem;
    background: linear-gradient(135deg, var(--matcha-cream) 0%, white 100%);
    border: 2px solid var(--matcha-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    min-width: 120px;
}

.ingredient-btn:hover:not(:disabled) {
    border-color: var(--matcha-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(107, 142, 110, 0.2);
}

.ingredient-btn:active:not(:disabled) {
    transform: translateY(-1px) scale(0.98);
}

.ingredient-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--warm-beige);
}

.ingredient-btn.added {
    background: linear-gradient(135deg, var(--matcha-light) 0%, var(--matcha-green) 100%);
    border-color: var(--matcha-dark);
    color: white;
}

.ingredient-icon {
    font-size: 2rem;
    display: block;
}

.ingredient-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--matcha-dark);
    display: block;
}

.ingredient-status {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

.ingredient-btn.added .ingredient-name {
    color: white;
}

.ingredient-btn.added .ingredient-status {
    color: rgba(255, 255, 255, 0.8);
}

.ingredient-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--matcha-dark);
    background: white;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.3rem;
    box-shadow: 0 2px 5px rgba(107, 142, 110, 0.2);
}

.ingredient-btn.added .ingredient-count {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.ingredient-counts {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.count-item {
    padding: 0.5rem 1rem;
    background: var(--matcha-light);
    color: var(--matcha-dark);
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

/* Fill Indicator */
.fill-indicator {
    width: 100%;
    margin: 1.5rem 0;
}

.fill-bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fill-bar {
    flex: 1;
    height: 25px;
    background: var(--warm-beige);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.fill-progress {
    height: 100%;
    background: var(--matcha-light);
    border-radius: 15px;
    transition: width 0.5s ease, background 0.3s ease;
    box-shadow: 0 2px 5px rgba(107, 142, 110, 0.3);
}

.fill-percentage {
    font-weight: 700;
    color: var(--matcha-dark);
    font-size: 1.1rem;
    min-width: 50px;
    text-align: right;
}

/* Steps Display */
.steps-display {
    width: 100%;
    text-align: center;
}

.steps-text {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.steps-list {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    min-height: 40px;
}

.step-item {
    padding: 0.5rem 1rem;
    background: var(--matcha-light);
    color: var(--matcha-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Game Controls */
.game-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    width: 100%;
}

.game-controls .btn {
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Result Message */
.result-message {
    width: 100%;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(107, 142, 110, 0.15);
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.result-title {
    color: var(--matcha-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.result-text {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Results Panel */
.results-panel {
    width: 100%;
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(107, 142, 110, 0.15);
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease;
}

.results-title {
    text-align: center;
    color: var(--matcha-dark);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.result-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--matcha-cream) 0%, white 100%);
    border-radius: 10px;
    border: 2px solid var(--matcha-light);
}

.result-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.result-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--matcha-dark);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.result-unit {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

/* Projects Section */
.projects-section {
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(107, 142, 110, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(107, 142, 110, 0.2);
}

.project-image {
    height: 250px;
    background: linear-gradient(135deg, var(--matcha-light) 0%, var(--matcha-green) 100%);
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(107, 142, 110, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 25px;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: white;
    color: var(--matcha-dark);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    color: var(--matcha-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 5px 15px;
    background: var(--matcha-light);
    color: var(--matcha-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Skills Section */
.skills-section {
    background: linear-gradient(135deg, #FDF8F6 0%, var(--matcha-cream) 50%, #F5EBE8 100%);
    padding: var(--section-padding);
}

.skills-main-title {
    color: var(--dusty-rose);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.skills-subtitle {
    color: var(--text-medium);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

.skills-badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-badge {
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    box-shadow: 0 3px 15px rgba(200, 165, 170, 0.25);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.skill-badge:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(200, 165, 170, 0.35);
}

/* Skill badge colors - feminine matcha palette */
.skill-python { background: linear-gradient(135deg, var(--matcha-light) 0%, var(--blush-pink) 100%); color: var(--text-dark); }
.skill-java { background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--rose) 100%); }
.skill-javascript { background: linear-gradient(135deg, var(--matcha-light) 0%, var(--soft-lavender) 100%); color: var(--text-dark); }
.skill-typescript { background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--mauve) 100%); }
.skill-cpp { background: linear-gradient(135deg, var(--matcha-green) 0%, var(--sage-green) 100%); }
.skill-csharp { background: linear-gradient(135deg, var(--mauve) 0%, var(--dusty-rose) 100%); }
.skill-sql { background: linear-gradient(135deg, var(--blush-pink) 0%, var(--matcha-light) 100%); color: var(--text-dark); }
.skill-html { background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--warm-beige) 100%); color: var(--text-dark); }
.skill-css { background: linear-gradient(135deg, var(--matcha-light) 0%, var(--blush-pink) 100%); color: var(--text-dark); }
.skill-react { background: linear-gradient(135deg, #F8F0ED 0%, var(--blush-pink) 100%); color: var(--text-dark); }
.skill-nextjs { background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--matcha-dark) 100%); }
.skill-nodejs { background: linear-gradient(135deg, var(--matcha-light) 0%, var(--sage-green) 100%); color: var(--text-dark); }
.skill-fastapi { background: linear-gradient(135deg, var(--matcha-green) 0%, var(--matcha-light) 100%); color: var(--text-dark); }
.skill-flask { background: linear-gradient(135deg, var(--rose) 0%, var(--dusty-rose) 100%); }
.skill-pytorch { background: linear-gradient(135deg, var(--blush-pink) 0%, var(--matcha-light) 100%); color: var(--text-dark); }
.skill-tensorflow { background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--matcha-green) 100%); }
.skill-pandas { background: linear-gradient(135deg, var(--matcha-light) 0%, var(--blush-pink) 100%); color: var(--text-dark); }
.skill-tailwind { background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--matcha-light) 100%); color: var(--text-dark); }
.skill-postgresql { background: linear-gradient(135deg, var(--mauve) 0%, var(--matcha-dark) 100%); }
.skill-mysql { background: linear-gradient(135deg, var(--blush-pink) 0%, var(--matcha-green) 100%); }
.skill-aws { background: linear-gradient(135deg, var(--matcha-green) 0%, var(--sage-green) 100%); }
.skill-docker { background: linear-gradient(135deg, var(--matcha-light) 0%, var(--soft-lavender) 100%); color: var(--text-dark); }
.skill-git { background: linear-gradient(135deg, var(--sage-green) 0%, var(--matcha-light) 100%); color: var(--text-dark); }
.skill-powerbi { background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--blush-pink) 100%); }
.skill-tableau { background: linear-gradient(135deg, var(--mauve) 0%, var(--rose) 100%); }
.skill-jira { background: linear-gradient(135deg, var(--rose) 0%, var(--matcha-green) 100%); }
.skill-figma { background: linear-gradient(135deg, var(--blush-pink) 0%, var(--soft-lavender) 100%); }

/* Leadership Section */
.leadership-section {
    background: white;
}

/* Book of the Month Section */
.book-of-month-section {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--matcha-cream) 100%);
    padding: var(--section-padding);
}

.year-selector {
    max-width: 1000px;
    margin: 0 auto 2rem;
    text-align: center;
}

.year-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.year-btn {
    padding: 0.9rem 1.8rem;
    background: white;
    border: 2px solid var(--matcha-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.year-btn:hover {
    border-color: var(--matcha-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 142, 110, 0.2);
}

.year-btn.active {
    background: linear-gradient(135deg, var(--matcha-light) 0%, var(--matcha-green) 100%);
    border-color: var(--matcha-dark);
    color: white;
}

.month-selector {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
}

.selector-label {
    color: var(--matcha-dark);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.month-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.month-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid var(--matcha-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.month-btn:hover {
    border-color: var(--matcha-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 142, 110, 0.2);
}

.month-btn.active {
    background: linear-gradient(135deg, var(--matcha-light) 0%, var(--matcha-green) 100%);
    border-color: var(--matcha-dark);
    color: white;
    font-weight: 600;
}

.book-display {
    max-width: 1000px;
    margin: 0 auto;
}

.book-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(107, 142, 110, 0.15);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.book-cover-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-cover {
    width: 250px;
    height: 350px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.book-spine {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, var(--matcha-dark) 0%, var(--matcha-green) 100%);
    border-radius: 5px 0 0 5px;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
}

.book-front {
    position: absolute;
    left: 20px;
    top: 0;
    width: calc(100% - 20px);
    height: 100%;
    background: linear-gradient(135deg, var(--matcha-light) 0%, var(--matcha-green) 100%);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 10px 30px rgba(107, 142, 110, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.book-title-small {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--matcha-dark);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.book-author-small {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
}

.book-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.book-month-title {
    color: var(--matcha-green);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.book-title {
    color: var(--matcha-dark);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 0;
    line-height: 1.2;
}

.book-author {
    color: var(--text-medium);
    font-size: 1.3rem;
    font-style: italic;
    margin: 0;
}

.book-rating {
    margin: 0.5rem 0;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

.book-description {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1rem 0;
}

.book-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.book-tags .tag {
    padding: 0.5rem 1.2rem;
    background: var(--matcha-light);
    color: var(--matcha-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Resume Section */
.resume-section {
    background: linear-gradient(135deg, var(--matcha-cream) 0%, var(--warm-beige) 100%);
    padding: var(--section-padding);
}

.resume-intro {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.resume-container {
    max-width: 600px;
    margin: 0 auto;
}

.resume-card {
    background: white;
    border-radius: 15px;
    padding: 4rem 2rem;
    box-shadow: 0 10px 40px rgba(107, 142, 110, 0.15);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.resume-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(107, 142, 110, 0.25);
    border-color: var(--matcha-light);
}

.resume-card:active {
    transform: translateY(-5px);
}

.resume-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.resume-card-title {
    color: var(--matcha-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.resume-card-text {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.resume-email-message {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(107, 142, 110, 0.15);
    text-align: center;
    animation: fadeInUp 0.5s ease;
    margin-top: 2rem;
}

.email-message-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.email-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.email-title {
    color: var(--matcha-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.email-text {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin: 0;
}

.email-link {
    color: var(--matcha-dark);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    padding: 0.8rem 2rem;
    background: var(--matcha-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0.5rem 0;
}

.email-link:hover {
    background: var(--matcha-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(107, 142, 110, 0.3);
}

.email-subtext {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--matcha-light), var(--matcha-green));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-left: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(1).visible { transition-delay: 0s; }
.timeline-item:nth-child(2).visible { transition-delay: 0.1s; }
.timeline-item:nth-child(3).visible { transition-delay: 0.2s; }
.timeline-item:nth-child(4).visible { transition-delay: 0.3s; }
.timeline-item:nth-child(5).visible { transition-delay: 0.4s; }
.timeline-item:nth-child(6).visible { transition-delay: 0.5s; }
.timeline-item:nth-child(7).visible { transition-delay: 0.6s; }
.timeline-item:nth-child(8).visible { transition-delay: 0.7s; }
.timeline-item:nth-child(9).visible { transition-delay: 0.8s; }

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid var(--matcha-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(107, 142, 110, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-marker:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(107, 142, 110, 0.3);
}

.timeline-icon {
    font-size: 2rem;
}

.timeline-content {
    flex: 1;
    background: linear-gradient(135deg, var(--matcha-cream) 0%, white 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 142, 110, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--matcha-light);
    box-shadow: 0 8px 30px rgba(107, 142, 110, 0.15);
}

.timeline-content h3 {
    color: var(--matcha-dark);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.timeline-content .leadership-period {
    color: var(--matcha-green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Section Arrows */
.section-arrow {
    text-align: center;
    padding: 2rem 0;
    background: transparent;
}

.section-arrow-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--matcha-dark);
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    line-height: 1;
}

.section-arrow-link:hover {
    color: var(--matcha-green);
    transform: translateY(5px) scale(1.1);
    background: rgba(156, 175, 136, 0.15);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--matcha-light);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--matcha-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .intro-title {
        font-size: 2.5rem;
    }

    .intro-subtitle {
        font-size: 1.2rem;
    }

    .intro-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .projects-grid,
    .services-grid,
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        gap: 1.5rem;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
    }

    .timeline-icon {
        font-size: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .skills-main-title {
        font-size: 2.2rem;
    }

    .skills-subtitle {
        font-size: 1.2rem;
    }

    .skill-badge {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .timer-circle {
        width: 180px;
        height: 180px;
    }

    .timer-count {
        font-size: 2.5rem;
    }

    .click-count {
        font-size: 3rem;
    }

    .matcha-bowl {
        width: 180px;
        height: 180px;
    }

    .results-stats {
        grid-template-columns: 1fr;
    }

    .game-controls {
        flex-direction: column;
        align-items: center;
    }

    .game-controls .btn {
        width: 100%;
        max-width: 200px;
    }

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

    .resume-card {
        padding: 3rem 1.5rem;
    }

    .resume-icon {
        font-size: 4rem;
    }

    .resume-card-title {
        font-size: 1.5rem;
    }

    .email-title {
        font-size: 1.5rem;
    }

    .email-link {
        font-size: 1.2rem;
        padding: 0.7rem 1.5rem;
    }

    .level-btn {
        padding: 0.8rem;
    }

    .level-name {
        font-size: 1rem;
    }
}

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

    .section-title {
        font-size: 1.8rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-slider {
        gap: 1rem;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .photo-thumbnail {
        height: 300px;
    }

    .modal-content {
        max-width: 95%;
        padding: 1.5rem;
    }

    .modal-image-container {
        max-height: 60vh;
    }

    .modal-caption {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .gallery-slider {
        gap: 0.5rem;
    }

    .gallery-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.8rem;
    }

    .photo-thumbnail {
        height: 250px;
    }

    .book-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .book-cover-container {
        margin-bottom: 2rem;
    }

    .book-cover {
        margin: 0 auto;
    }

    .year-buttons {
        gap: 0.6rem;
    }

    .year-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }

    .month-buttons {
        gap: 0.5rem;
    }

    .month-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}
