/* ========================================
   Global Styles & Variables
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #d4a574;
    --cream-bg: #faf6f0;
    --cream-alt: #f5f1e8;
    --dark-text: #2d3436;
    --light-text: #5f5f5f;
    --border-color: #e8dfd5;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream-bg);
    color: var(--dark-text);
    line-height: 1.6;
}

/* ========================================
   Container & Layout
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f1e8 0%, #faf6f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px);
    z-index: 1;
    opacity: 0.4;
    transition: opacity 0.5s ease-in-out;
}

.hero-background-video.fade-out {
    opacity: 0;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    animation: fadeInUp 1s ease;
    position: relative;
}

.anim-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.anim-tree {
    position: absolute;
    right: -350px;
    bottom: -100px;
    width: 1200px;
    height: auto;
    z-index: 2;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.anim-bush {
    position: absolute;
    left: -100px;
    bottom: 0;
    width: 900px;
    height: auto;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.anim-bird {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 100px;
    z-index: 0;
    height: auto;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    animation: birdFly 8s ease-in-out infinite;
}

@keyframes birdFly {
    0% {
        right: -200px;
        transform: scaleX(1);
    }
    49% {
        transform: scaleX(1);
    }
    50% {
        right: calc(100vw + 200px);
        transform: scaleX(-1);
    }
    100% {
        right: -200px;
        transform: scaleX(-1);
    }
}

.anim-bird-orbit {
    position: absolute;
    width: 80px;
    height: auto;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    z-index: 2;
    animation: birdOrbit 12s ease-in-out infinite;
}

@keyframes birdOrbit {
    0% {
        left: -100px;
        top: 60%;
        transform: scaleX(-1);
    }
    49% {
        transform: scaleX(-1);
    }
    50% {
        left: calc(100% + 100px);
        top: 60%;
        transform: scaleX(1);
    }
    100% {
        left: -100px;
        top: 60%;
        transform: scaleX(1);
    }
}

/* Leaves Particles Animation */
.leaves-particles {
    position: absolute;
    width: 400px;
    height: 600px;
    top: 200px;
    right: 200px;
    pointer-events: none;
    z-index: 1;
}

.leaves-particles::before,
.leaves-particles::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(76, 175, 80, 0.6);
    border-radius: 50%;
    box-shadow: 
        30px 20px rgba(76, 175, 80, 0.5),
        60px 40px rgba(56, 142, 60, 0.4),
        90px 15px rgba(76, 175, 80, 0.6),
        120px 60px rgba(56, 142, 60, 0.5),
        150px 35px rgba(76, 175, 80, 0.4),
        180px 50px rgba(56, 142, 60, 0.6),
        210px 25px rgba(76, 175, 80, 0.5),
        240px 55px rgba(56, 142, 60, 0.4);
}

.leaves-particles::before {
    animation: fallLeaves1 8s infinite ease-in;
}

.leaves-particles::after {
    animation: fallLeaves2 10s infinite ease-in;
    animation-delay: 2s;
}

@keyframes fallLeaves1 {
    0% {
        transform: translateY(-100px) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(600px) translateX(30px);
        opacity: 0;
    }
}

@keyframes fallLeaves2 {
    0% {
        transform: translateY(-100px) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(600px) translateX(-50px);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes emphasisPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(204, 102, 51, 0.5);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(204, 102, 51, 0.8);
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    letter-spacing: -2px;
}

.artist-name {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.tagline {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 1px;
}

/* ========================================
   Portfolio Sections
   ======================================== */

.portfolio-section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--cream-bg);
}

.portfolio-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

.portfolio-section h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

/* ========================================
   Introduction Section
   ======================================== */

.intro-section {
    background: linear-gradient(135deg, #f5f1e8 0%, #faf6f0 100%);
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    text-align: left;
}

.intro-content {
    max-width: 11100px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.intro-text-content {
    flex: 1;
    text-align: left;
}

.intro-image-wrapper {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 15cm;
}

.intro-portrait {
    max-width: 250px;
    width: 100%;
    top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.intro-text {
    font-size: 1.35rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.intro-text .highlight {
    color: #cc6633;
    font-weight: 600;
}

.intro-call-to-action {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
    width: 100%;
}

.intro-call-to-action .emphasis {
    font-size: 2.8rem;
    color: #cc6633;
    font-weight: 700;
    display: block;
    margin: 0 auto;
    animation: emphasisPulse 2s ease-in-out infinite;
    letter-spacing: 1px;
}

/* ========================================
   Tools Grid
   ======================================== */

/* ========================================
   Tools Grid
   ======================================== */

.tools-section {
    background-color: var(--cream-bg);
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.tools-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    position: relative;
    text-align: center;
}

.tools-section h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.tool-item {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cream-alt);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.tool-item:hover {
    border-color: var(--primary-color);
    background-color: rgba(212, 165, 116, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.15);
}

.tool-item img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: var(--transition);
}

.tool-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   Portfolio Grid
   ======================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.game-art-grid {
    grid-template-columns: repeat(2, 1fr);
}

.drawing-grid {
    grid-template-columns: repeat(2, 1fr);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    background-color: var(--cream-alt);
    transition: var(--transition);
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.portfolio-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.15);
    transform: translateY(-8px);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pixel-art-item img {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    width: 110%;
    height: 110%;
    object-fit: contain;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   Lightbox / Image Viewer
   ======================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 95vw;
    max-height: 95vh;
}



.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: slideInImage 0.5s ease;
}

.lightbox-video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
}

@keyframes slideInImage {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideImageLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100px);
    }
}

@keyframes slideImageRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInClose {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox.closing {
    animation: fadeInClose 0.5s ease reverse forwards;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
    z-index: 1001;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    to {
        opacity: 0;
        transform: translateY(-30px) rotate(90deg);
    }
}

.lightbox-close:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.lightbox-prev,
.lightbox-next {
    position: relative;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    transition: var(--transition);
    z-index: 1001;
    flex-shrink: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #cc6633;
}

.portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Animation Section - Pixel Art Corner Display
   ======================================== */

.anim-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

.anim-section .container {
    width: 100%;
}

.anim-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.anim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: flex-start;
}

.anim-item {
    position: relative;
}

.anim-item:nth-child(1) {
    position: absolute;
    right: 0;
    bottom: 50%;
    width: 250px;
}

.anim-item:nth-child(2) {
    position: absolute;
    left: 0;
    bottom: 50%;
    width: 250px;
}

.anim-item:nth-child(3) {
    position: absolute;
    right: 0;
    top: 50%;
    width: 250px;
}

.anim-item img {
    width: 100%;
    height: auto;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.anim-item img:hover {
    border-color: var(--primary-color);
    transition: var(--transition);
}





/* ========================================
   Sound Design & FX Players
   ======================================== */

.sfx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.sfx-player {
    background-color: var(--cream-alt);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
    overflow: hidden;
}

.sfx-player:hover {
    border-color: #cc6633;
    box-shadow: 0 8px 24px rgba(204, 102, 51, 0.15);
    transform: translateY(-8px);
}

.sfx-header {
    margin-bottom: 1.5rem;
}

.sfx-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.sfx-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sfx-play-btn {
    background-color: #cc6633;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.sfx-play-btn:hover {
    background-color: #b3531f;
    transform: scale(1.1);
}

.sfx-play-btn.playing {
    background-color: #b3531f;
}

.sfx-play-btn.playing::before {
    content: '⏸';
    position: absolute;
}

.sfx-progress-container {
    flex: 1;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sfx-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #cc6633 0%, #e08556 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 3px;
}

.sfx-time {
    font-size: 0.85rem;
    color: var(--light-text);
    min-width: 40px;
    text-align: right;
    font-weight: 500;
}

.sfx-volume-control {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.sfx-volume-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sfx-volume-slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #cc6633 0%, #cc6633 70%, var(--border-color) 70%, var(--border-color) 100%);
    cursor: pointer;
}

.sfx-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #cc6633;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.sfx-volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(204, 102, 51, 0.4);
}

.sfx-volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #cc6633;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.sfx-volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(204, 102, 51, 0.4);
}

.sfx-volume-slider::-moz-range-track {
    background: none;
    border: none;
}

.sfx-volume-slider::-moz-range-progress {
    background: #cc6633;
    height: 6px;
    border-radius: 3px;
}

/* ========================================
   Bottom Media Player
   ======================================== */

.bottom-media-player {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d3436 0%, #3a4147 100%);
    border-top: 1px solid #cc6633;
    z-index: 999;
    padding: 1rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.bottom-media-player.active {
    display: block;
    animation: slideUp 0.3s ease-out;
}

.bottom-media-player.closing {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(100%);
    }
}

.player-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.player-info {
    min-width: 120px;
    max-width: 200px;
    flex-shrink: 0;
}

.player-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-play-btn {
    background: #cc6633;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.player-play-btn:hover {
    background: #e08556;
}

.player-nav-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.player-nav-btn:hover {
    color: #cc6633;
}

.player-progress-container {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.player-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #cc6633 0%, #e08556 100%);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
}

.player-time {
    color: #fff;
    font-size: 0.85rem;
    min-width: 40px;
    text-align: right;
    font-weight: 500;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 100px;
    flex-shrink: 1;
}

.player-volume span {
    color: #fff;
    font-size: 1rem;
}

.player-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 1rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.player-close-btn:hover {
    color: #cc6633;
}

.player-volume-slider {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.player-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cc6633;
    cursor: pointer;
}

.player-volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cc6633;
    cursor: pointer;
    border: none;
}

/* ========================================
   Contact Section
   ======================================== */

.contact-section {
    background: linear-gradient(135deg, #f5f1e8 0%, #faf6f0 100%);
    padding: 4rem 0;
}

.contact-section h2 {
    margin-bottom: 2rem;
    color: var(--dark-text);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-message {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-value {
    font-size: 1.3rem;
    color: #cc6633;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.contact-value:hover {
    border-bottom-color: #cc6633;
    transform: translateY(-2px);
}

footer {
    background-color: var(--cream-alt);
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--light-text);
}

footer p {
    font-size: 0.9rem;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .artist-name {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .portfolio-section h2 {
        font-size: 1.8rem;
    }

    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }

    .tool-item {
        width: 120px;
        height: 120px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Hide bottom media player on mobile */
    .bottom-media-player {
        display: none !important;
    }

    .sfx-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Adjust animations for tablets */
    .anim-tree {
        width: 600px;
        right: -200px;
        bottom: -50px;
    }

    .anim-bush {
        width: 500px;
        left: -150px;
    }

    .anim-bird {
        width: 80px;
        top: 80px;
    }

    .anim-bird-orbit {
        width: 60px;
    }

    /* Intro section responsive */
    .intro-content {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-image-wrapper {
        flex: 1 1 100%;
        order: -1;
    }

    .intro-section h2 {
        text-align: center;
        font-size: 2rem;
    }

    .intro-text-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .artist-name {
        font-size: 0.9rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .container {
        padding: 0 1rem;
    }

    .portfolio-section {
        padding: 3rem 0;
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tool-item {
        width: 100px;
        height: 100px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sfx-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Hide background video on mobile */
    .hero-background-video {
        display: none;
    }

    /* Hide volume sliders on mobile */
    .sfx-volume-control {
        display: none;
    }

    /* Disable particles on mobile */
    .leaves-particles {
        display: none;
    }

    /* Remove play button on images for mobile */
    .portfolio-item {
        position: relative;
        overflow: visible;
    }

    .portfolio-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
    }

    .portfolio-item::after {
        display: none;
    }

    /* Hide lightbox arrows on mobile */
    .lightbox-prev,
    .lightbox-next {
        display: none;
    }

    /* Hide/reduce animations on mobile */
    .anim-tree {
        width: 250px;
        right: -250px;
        bottom: -50px;
    }

    .anim-bush {
        width: 200px;
        left: -200px;
    }

    .anim-bird {
        width: 60px;
    }

    .anim-bird-orbit {
        width: 50px;
    }
}
