/* ============================================
   CHRISTMAS THEME - WINTER WONDERLAND
   ============================================ */
/* ========== FROST EFFECT ========== */
.frost-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9988;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.15) 0%, transparent 30%),
        radial-gradient(ellipse at top right, rgba(255, 255, 255, 0.15) 0%, transparent 30%),
        radial-gradient(ellipse at bottom left, rgba(200, 230, 255, 0.1) 0%, transparent 25%),
        radial-gradient(ellipse at bottom right, rgba(200, 230, 255, 0.1) 0%, transparent 25%);
    z-index: 9990;
}

.snowflake {
    position: absolute;
    top: -12px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    animation: snowfall 12s linear infinite;
    will-change: transform, opacity;
}

.snowflake:nth-child(1) { left: 5%; animation-duration: 10s; animation-delay: 0s; font-size: 1rem; }
.snowflake:nth-child(2) { left: 15%; animation-duration: 12s; animation-delay: 1s; font-size: 1.4rem; }
.snowflake:nth-child(3) { left: 25%; animation-duration: 11s; animation-delay: 0.5s; font-size: 1.2rem; }
.snowflake:nth-child(4) { left: 35%; animation-duration: 13s; animation-delay: 2s; font-size: 1.6rem; }
.snowflake:nth-child(5) { left: 45%; animation-duration: 9s; animation-delay: 3s; font-size: 1rem; }
.snowflake:nth-child(6) { left: 55%; animation-duration: 11s; animation-delay: 1.5s; font-size: 1.3rem; }
.snowflake:nth-child(7) { left: 65%; animation-duration: 13s; animation-delay: 2.5s; font-size: 1.6rem; }
.snowflake:nth-child(8) { left: 75%; animation-duration: 12s; animation-delay: 0.8s; font-size: 1.2rem; }
.snowflake:nth-child(9) { left: 85%; animation-duration: 14s; animation-delay: 1.8s; font-size: 1.4rem; }
.snowflake:nth-child(10) { left: 92%; animation-duration: 15s; animation-delay: 2s; font-size: 1.7rem; }
.snowflake:nth-child(11) { left: 10%; animation-duration: 9s; animation-delay: 3.5s; font-size: 1.2rem; }
.snowflake:nth-child(12) { left: 50%; animation-duration: 11s; animation-delay: 1.2s; font-size: 1.5rem; }

@keyframes snowfall {
    0% {
        transform: translateY(-20px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(20px) rotate(360deg);
        opacity: 0;
    }
}

.snowflake:nth-child(odd) {
    animation: snowfallSway 13s linear infinite;
}

@keyframes snowfallSway {
    0% {
        transform: translateY(-20px) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) translateX(-15px) rotate(180deg);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) translateX(10px) rotate(360deg);
        opacity: 0;
    }
}

/* Christmas Lights (Sagging CSS) */
.christmas-lights-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9997;
    pointer-events: none;
}

.light-strand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    position: relative;
    flex-wrap: nowrap;
    gap: 2.25rem;
    overflow: hidden;
    width: 100%;
}

.light-strand::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 3px;
    background: #222;
    z-index: -1;
}

.light-bulb {
    width: 16px;
    height: 24px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: lightGlow 1s ease-in-out infinite alternate;
    flex: 0 0 auto;
}

.light-bulb::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 8px;
    background: #333;
    border-radius: 2px 2px 0 0;
}

.light-bulb.red {
    background: radial-gradient(circle at 30% 30%, #ff6666, #ff0000, #cc0000);
    box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff0000;
}

.light-bulb.gold {
    background: radial-gradient(circle at 30% 30%, #ffee88, #ffcc00, #cc9900);
    box-shadow: 0 0 10px #ffcc00, 0 0 20px #ffcc00, 0 0 30px #ffcc00, 0 0 40px #ffcc00;
    animation-delay: 0.25s;
}

.light-bulb.green {
    background: radial-gradient(circle at 30% 30%, #66ff66, #00ff00, #00cc00);
    box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00;
    animation-delay: 0.5s;
}

.light-bulb.blue {
    background: radial-gradient(circle at 30% 30%, #66ccff, #00aaff, #0088cc);
    box-shadow: 0 0 10px #00aaff, 0 0 20px #00aaff, 0 0 30px #00aaff, 0 0 40px #00aaff;
    animation-delay: 0.75s;
}

@keyframes lightGlow {
    0% {
        opacity: 0.7;
        filter: brightness(0.8);
    }
    100% {
        opacity: 1;
        filter: brightness(1.3);
    }
}

/* Tinsel Garland */
.tinsel-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9996;
}

.tinsel {
    position: absolute;
    width: 150px;
    height: 400px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(192, 192, 192, 0.3) 10%,
        rgba(255, 215, 0, 0.4) 20%,
        rgba(192, 192, 192, 0.3) 30%,
        rgba(255, 215, 0, 0.4) 40%,
        rgba(192, 192, 192, 0.3) 50%,
        rgba(255, 215, 0, 0.4) 60%,
        rgba(192, 192, 192, 0.3) 70%,
        rgba(255, 215, 0, 0.4) 80%,
        rgba(192, 192, 192, 0.3) 90%,
        transparent 100%
    );
    background-size: 100% 40px;
    animation: tinselShimmer 2s linear infinite;
    mask-image: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.tinsel-top-left {
    top: 50px;
    left: 0;
    transform: rotate(15deg);
    transform-origin: top left;
}

.tinsel-top-right {
    top: 50px;
    right: 0;
    left: auto;
    transform: rotate(-15deg);
    transform-origin: top right;
}

@keyframes tinselShimmer {
    0% { background-position: 0 0; }
    100% { background-position: 0 40px; }
}

.tinsel-corner {
    position: absolute;
    top: 55px;
    font-size: 1.5rem;
    animation: starSparkle 1.5s ease-in-out infinite;
}

.corner-left {
    left: 10px;
}

.corner-right {
    right: 10px;
}

@keyframes starSparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.2) rotate(10deg); }
}

/* Hanging Ornaments */
.ornaments {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 9995;
}

.ornament {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    animation: ornamentSwing 3s ease-in-out infinite, ornamentPulse 1.5s ease-in-out infinite alternate;
}

.ornament::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    width: 2px;
    height: 25px;
    background: linear-gradient(to bottom, #666, #444);
    transform: translateX(-50%);
}

.ornament::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 10px;
    height: 8px;
    background: linear-gradient(to bottom, #888, #666);
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

.ornament.o1 { 
    left: 8%; top: 70px;
    background: radial-gradient(circle at 30% 30%, #ff6666, #ff0000, #990000);
    box-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000, inset 0 0 10px rgba(255,255,255,0.3);
}
.ornament.o2 { 
    left: 25%; top: 65px; animation-delay: 0.5s;
    background: radial-gradient(circle at 30% 30%, #ffee66, #ffcc00, #997700);
    box-shadow: 0 0 15px #ffcc00, 0 0 30px #ffcc00, inset 0 0 10px rgba(255,255,255,0.3);
}
.ornament.o3 { 
    left: 42%; top: 72px; animation-delay: 1s;
    background: radial-gradient(circle at 30% 30%, #66ff66, #00dd00, #008800);
    box-shadow: 0 0 15px #00dd00, 0 0 30px #00dd00, inset 0 0 10px rgba(255,255,255,0.3);
}
.ornament.o4 { 
    left: 58%; top: 68px; animation-delay: 0.3s;
    background: radial-gradient(circle at 30% 30%, #66aaff, #0088ff, #005599);
    box-shadow: 0 0 15px #0088ff, 0 0 30px #0088ff, inset 0 0 10px rgba(255,255,255,0.3);
}
.ornament.o5 { 
    left: 75%; top: 70px; animation-delay: 0.8s;
    background: radial-gradient(circle at 30% 30%, #ffffff, #dddddd, #aaaaaa);
    box-shadow: 0 0 15px #ffffff, 0 0 30px #ffffff, inset 0 0 10px rgba(255,255,255,0.5);
}
.ornament.o6 { 
    left: 92%; top: 66px; animation-delay: 0.2s;
    background: radial-gradient(circle at 30% 30%, #ff66ff, #dd00dd, #880088);
    box-shadow: 0 0 15px #dd00dd, 0 0 30px #dd00dd, inset 0 0 10px rgba(255,255,255,0.3);
}

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

@keyframes ornamentPulse {
    0% { filter: brightness(0.9); }
    100% { filter: brightness(1.2); }
}

/* Santa Flying */
.santa-container {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.santa-container.flying {
    opacity: 1;
}

.santa {
    font-size: 2.8rem;
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.4));
    white-space: nowrap;
    animation: santaBob 0.5s ease-in-out infinite alternate;
    display: flex;
    align-items: flex-end;
}

.sleigh-santa {
    position: relative;
    display: inline-block;
}

.sled {
    font-size: 1.4em;
}

.santa-body {
    position: absolute;
    top: 0.1em;
    left: 0.25em;
    font-size: 0.6em;
}

.santa-head {
    position: absolute;
    top: -0.5em;
    left: 0.15em;
    font-size: 0.75em;
}

/* When flying left (right-to-left), deer already face left - no flip needed */
/* When flying right (left-to-right), flip the whole thing */
.santa.facing-right {
    transform: scaleX(-1);
}

@keyframes santaBob {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.santa.facing-right {
    animation: santaBobFlipped 0.5s ease-in-out infinite alternate;
}

@keyframes santaBobFlipped {
    0% { transform: scaleX(-1) translateY(0); }
    100% { transform: scaleX(-1) translateY(-8px); }
}

/* Christmas Trees */
.christmas-tree {
    position: fixed;
    bottom: 0;
    font-size: 4rem;
    z-index: 100;
    filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.3));
    animation: treeGlow 2s ease-in-out infinite alternate;
}

/* Twinkling Tree Lights */
.tree-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tree-lights .light {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: twinkle 1s ease-in-out infinite;
}

/* Light positions - scattered across tree (lower section) */
.tree-lights .light:nth-child(1) { top: 40%; left: 45%; animation-delay: 0s; }
.tree-lights .light:nth-child(2) { top: 50%; left: 30%; animation-delay: 0.2s; }
.tree-lights .light:nth-child(3) { top: 50%; left: 60%; animation-delay: 0.4s; }
.tree-lights .light:nth-child(4) { top: 60%; left: 20%; animation-delay: 0.6s; }
.tree-lights .light:nth-child(5) { top: 60%; left: 70%; animation-delay: 0.8s; }
.tree-lights .light:nth-child(6) { top: 72%; left: 15%; animation-delay: 0.3s; }
.tree-lights .light:nth-child(7) { top: 72%; left: 75%; animation-delay: 0.5s; }
.tree-lights .light:nth-child(8) { top: 85%; left: 40%; animation-delay: 0.7s; }

/* Light colors with glow */
.light-red {
    background: #ff3333;
    box-shadow: 0 0 10px #ff3333, 0 0 20px #ff3333, 0 0 30px #ff3333;
}

.light-yellow {
    background: #ffdd33;
    box-shadow: 0 0 10px #ffdd33, 0 0 20px #ffdd33, 0 0 30px #ffdd33;
}

.light-blue {
    background: #33aaff;
    box-shadow: 0 0 10px #33aaff, 0 0 20px #33aaff, 0 0 30px #33aaff;
}

.light-green {
    background: #33ff55;
    box-shadow: 0 0 10px #33ff55, 0 0 20px #33ff55, 0 0 30px #33ff55;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.3; 
        transform: scale(0.7);
    }
}

/* Navbar String Lights with Sagging Effect */
.string-lights {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10001;
    pointer-events: none;
    overflow: visible;
}

.light-cable {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.light-cable path {
    stroke: #2a2a2a;
    stroke-width: 0.5;
}

.string-bulbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bulb {
    position: absolute;
    width: 12px;
    height: 16px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: bulbTwinkle 1.5s ease-in-out infinite;
}

/* Bulb vertical positions following the sag curve */
.bulb:nth-child(4n+1) { top: 5px; }
.bulb:nth-child(4n+2) { top: 18px; }
.bulb:nth-child(4n+3) { top: 25px; }
.bulb:nth-child(4n) { top: 18px; }

/* Stagger the twinkle animations */
.bulb:nth-child(1) { animation-delay: 0s; }
.bulb:nth-child(2) { animation-delay: 0.15s; }
.bulb:nth-child(3) { animation-delay: 0.3s; }
.bulb:nth-child(4) { animation-delay: 0.45s; }
.bulb:nth-child(5) { animation-delay: 0.6s; }
.bulb:nth-child(6) { animation-delay: 0.1s; }
.bulb:nth-child(7) { animation-delay: 0.25s; }
.bulb:nth-child(8) { animation-delay: 0.4s; }
.bulb:nth-child(9) { animation-delay: 0.55s; }
.bulb:nth-child(10) { animation-delay: 0.7s; }
.bulb:nth-child(11) { animation-delay: 0.05s; }
.bulb:nth-child(12) { animation-delay: 0.2s; }
.bulb:nth-child(13) { animation-delay: 0.35s; }
.bulb:nth-child(14) { animation-delay: 0.5s; }
.bulb:nth-child(15) { animation-delay: 0.65s; }
.bulb:nth-child(16) { animation-delay: 0.12s; }
.bulb:nth-child(17) { animation-delay: 0.27s; }
.bulb:nth-child(18) { animation-delay: 0.42s; }
.bulb:nth-child(19) { animation-delay: 0.57s; }
.bulb:nth-child(20) { animation-delay: 0.72s; }

/* Bulb colors with glow */
.bulb-red {
    background: linear-gradient(135deg, #ff6666 0%, #cc0000 100%);
    box-shadow: 0 0 8px #ff3333, 0 0 15px #ff3333, 0 0 25px rgba(255, 51, 51, 0.5);
}

.bulb-yellow {
    background: linear-gradient(135deg, #ffee88 0%, #ffcc00 100%);
    box-shadow: 0 0 8px #ffdd33, 0 0 15px #ffdd33, 0 0 25px rgba(255, 221, 51, 0.5);
}

.bulb-green {
    background: linear-gradient(135deg, #66ff88 0%, #00cc44 100%);
    box-shadow: 0 0 8px #33ff55, 0 0 15px #33ff55, 0 0 25px rgba(51, 255, 85, 0.5);
}

.bulb-blue {
    background: linear-gradient(135deg, #66ccff 0%, #0088cc 100%);
    box-shadow: 0 0 8px #33aaff, 0 0 15px #33aaff, 0 0 25px rgba(51, 170, 255, 0.5);
}

@keyframes bulbTwinkle {
    0%, 100% { 
        opacity: 1;
        filter: brightness(1.2);
    }
    30% {
        opacity: 0.6;
        filter: brightness(0.8);
    }
    60% {
        opacity: 1;
        filter: brightness(1.4);
    }
    80% {
        opacity: 0.4;
        filter: brightness(0.6);
    }
}

/* ============================================
   HERO SECTION BIG CHRISTMAS TREE
   ============================================ */
.hero-xmas-tree {
    position: absolute;
    right: 5%;
    bottom: 10%;
    z-index: 10;
    pointer-events: none;
}

.xmas-tree-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Glowing Star on Top */
.tree-star {
    font-size: 3rem;
    position: relative;
    z-index: 5;
    animation: starGlow 1.5s ease-in-out infinite alternate, starPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px #ffd700) drop-shadow(0 0 30px #ffa500);
}

@keyframes starGlow {
    0% { filter: drop-shadow(0 0 15px #ffd700) drop-shadow(0 0 30px #ffa500); }
    100% { filter: drop-shadow(0 0 25px #fff700) drop-shadow(0 0 50px #ffd700) drop-shadow(0 0 70px #ffa500); }
}

@keyframes starPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

/* Tree Body */
.tree-body {
    position: relative;
    margin-top: -15px;
}

.tree-layer {
    font-size: 18rem;
    line-height: 0.85;
    filter: drop-shadow(0 0 20px rgba(0, 200, 0, 0.4)) drop-shadow(0 0 40px rgba(0, 150, 0, 0.3));
    animation: treeBreathing 4s ease-in-out infinite;
}

@keyframes treeBreathing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Hero Tree Lights */
.hero-tree-lights {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.htl {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: htlTwinkle 1.2s ease-in-out infinite;
}

/* Scattered light positions across the tree */
.htl:nth-child(1) { top: 15%; left: 48%; animation-delay: 0s; }
.htl:nth-child(2) { top: 25%; left: 38%; animation-delay: 0.2s; }
.htl:nth-child(3) { top: 25%; left: 58%; animation-delay: 0.4s; }
.htl:nth-child(4) { top: 38%; left: 30%; animation-delay: 0.6s; }
.htl:nth-child(5) { top: 38%; left: 68%; animation-delay: 0.1s; }
.htl:nth-child(6) { top: 50%; left: 25%; animation-delay: 0.3s; }
.htl:nth-child(7) { top: 50%; left: 50%; animation-delay: 0.5s; }
.htl:nth-child(8) { top: 50%; left: 72%; animation-delay: 0.7s; }
.htl:nth-child(9) { top: 65%; left: 20%; animation-delay: 0.15s; }
.htl:nth-child(10) { top: 65%; left: 45%; animation-delay: 0.35s; }
.htl:nth-child(11) { top: 65%; left: 75%; animation-delay: 0.55s; }
.htl:nth-child(12) { top: 80%; left: 50%; animation-delay: 0.25s; }

/* Light colors with intense glow */
.htl-red {
    background: radial-gradient(circle, #ff6666 0%, #cc0000 100%);
    box-shadow: 0 0 10px #ff3333, 0 0 20px #ff3333, 0 0 35px #ff3333, 0 0 50px rgba(255, 51, 51, 0.4);
}

.htl-yellow {
    background: radial-gradient(circle, #ffee88 0%, #ffcc00 100%);
    box-shadow: 0 0 10px #ffdd33, 0 0 20px #ffdd33, 0 0 35px #ffdd33, 0 0 50px rgba(255, 221, 51, 0.4);
}

.htl-blue {
    background: radial-gradient(circle, #66ccff 0%, #0088cc 100%);
    box-shadow: 0 0 10px #33aaff, 0 0 20px #33aaff, 0 0 35px #33aaff, 0 0 50px rgba(51, 170, 255, 0.4);
}

.htl-green {
    background: radial-gradient(circle, #66ff88 0%, #00cc44 100%);
    box-shadow: 0 0 10px #33ff55, 0 0 20px #33ff55, 0 0 35px #33ff55, 0 0 50px rgba(51, 255, 85, 0.4);
}

@keyframes htlTwinkle {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    25% {
        opacity: 0.4;
        transform: scale(0.8);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.1);
    }
    75% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

/* Tree Trunk */
.tree-trunk {
    width: 40px;
    height: 50px;
    background: linear-gradient(90deg, #4a3728 0%, #6b4c3a 50%, #4a3728 100%);
    border-radius: 5px;
    margin-top: -20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Presents Pile */
.presents-pile {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
}

.present {
    position: absolute;
    animation: presentBounce 2s ease-in-out infinite;
}

.present-1 {
    font-size: 2.5rem;
    bottom: 0;
    left: 10%;
    animation-delay: 0s;
    filter: hue-rotate(0deg) drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

.present-2 {
    font-size: 3rem;
    bottom: 0;
    left: 35%;
    animation-delay: 0.3s;
    filter: hue-rotate(60deg) drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

.present-3 {
    font-size: 2rem;
    bottom: 0;
    right: 15%;
    animation-delay: 0.6s;
    filter: hue-rotate(180deg) drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

.present-4 {
    font-size: 2.2rem;
    bottom: 25px;
    left: 25%;
    animation-delay: 0.15s;
    filter: hue-rotate(280deg) drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

.present-5 {
    font-size: 1.8rem;
    bottom: 20px;
    right: 30%;
    animation-delay: 0.45s;
    filter: hue-rotate(120deg) drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

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

/* Ambient Glow Behind Tree */
.tree-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 200, 100, 0.15) 0%, rgba(255, 150, 50, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: ambientPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ambientPulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Responsive adjustments for hero tree */
@media (max-width: 1200px) {
    .hero-xmas-tree {
        right: 2%;
        bottom: 5%;
    }
    .tree-layer {
        font-size: 14rem;
    }
    .tree-star {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-xmas-tree {
        display: none;
    }
}

.tree-left {
    left: -20px;
}

.tree-right {
    right: -20px;
}

/* Snowmen next to trees */
.snowman {
    position: fixed;
    bottom: 5px;
    z-index: 101;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.snowman-small {
    font-size: 2rem;
    animation: snowmanWiggle 3s ease-in-out infinite;
}

.snowman-big {
    font-size: 3rem;
    animation: snowmanWiggle 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.snowman-biggest {
    font-size: 4rem;
    animation: snowmanWiggle 2s ease-in-out infinite;
    animation-delay: 0.3s;
}

/* Left side positioning */
.snowman-biggest-left {
    left: 15px;
    transform: scaleX(-1);
    animation: snowmanWiggleLeft 2s ease-in-out infinite;
}

.snowman-big-left {
    left: 55px;
    transform: scaleX(-1);
    animation: snowmanWiggleLeft 2.5s ease-in-out infinite;
}

.snowman-left {
    left: 90px;
    transform: scaleX(-1);
    animation: snowmanWiggleLeft 3s ease-in-out infinite;
}

/* Right side positioning */
.snowman-biggest-right {
    right: 15px;
}

.snowman-big-right {
    right: 55px;
}

.snowman-right {
    right: 90px;
}

@keyframes snowmanWiggle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(-2deg); }
    75% { transform: translateY(-3px) rotate(2deg); }
}

@keyframes snowmanWiggleLeft {
    0%, 100% { transform: scaleX(-1) translateY(0) rotate(0deg); }
    25% { transform: scaleX(-1) translateY(-3px) rotate(-2deg); }
    75% { transform: scaleX(-1) translateY(-3px) rotate(2deg); }
}

@keyframes treeGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.8)) drop-shadow(0 0 40px rgba(0, 255, 0, 0.5)); }
}

/* Candy Cane CSS */
.candy-cane {
    width: 12px;
    height: 35px;
    position: relative;
    transform: rotate(-20deg);
}

.cane-stick {
    width: 12px;
    height: 28px;
    background: repeating-linear-gradient(
        0deg,
        #ff0000 0px,
        #ff0000 4px,
        #ffffff 4px,
        #ffffff 8px
    );
    border-radius: 6px;
    position: absolute;
    bottom: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cane-hook {
    width: 18px;
    height: 18px;
    border: 6px solid transparent;
    border-top: 6px solid #ff0000;
    border-right: 6px solid #ff0000;
    border-radius: 0 12px 0 0;
    position: absolute;
    top: 0;
    right: -3px;
    background: repeating-linear-gradient(
        90deg,
        #ff0000 0px,
        #ff0000 3px,
        #ffffff 3px,
        #ffffff 6px
    );
    background-clip: padding-box;
    box-shadow: 2px -2px 4px rgba(0,0,0,0.15);
}

/* Toy Car CSS */
.toy-car {
    width: 35px;
    height: 20px;
    position: relative;
}

.car-body {
    width: 35px;
    height: 12px;
    background: linear-gradient(180deg, #ff4444 0%, #cc0000 100%);
    border-radius: 3px 8px 2px 2px;
    position: absolute;
    bottom: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.car-roof {
    width: 18px;
    height: 8px;
    background: linear-gradient(180deg, #ff6666 0%, #dd2222 100%);
    border-radius: 6px 6px 0 0;
    position: absolute;
    bottom: 14px;
    left: 8px;
}

.car-wheel {
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 40% 40%, #666, #222);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    border: 1px solid #111;
}

.car-wheel-front {
    left: 4px;
}

.car-wheel-back {
    right: 4px;
}

/* Christmas Ball Ornament CSS */
.christmas-ball {
    width: 22px;
    height: 30px;
    position: relative;
}

.ball-cap {
    width: 8px;
    height: 5px;
    background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%);
    border-radius: 2px 2px 0 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ball-string {
    width: 1px;
    height: 6px;
    background: #ffd700;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.ball-ornament {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.3), inset -2px -2px 4px rgba(0,0,0,0.2);
}

.ball-shine {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    position: absolute;
    bottom: 12px;
    left: 5px;
}

@media (max-width: 768px) {
    .christmas-tree {
        font-size: 2.5rem;
    }
    
    .snowman-small {
        font-size: 1.2rem;
    }
    
    .snowman-big {
        font-size: 1.8rem;
    }
    
    .snowman-biggest {
        font-size: 2.4rem;
    }
    
    .snowman-biggest-left {
        left: 8px;
    }
    
    .snowman-big-left {
        left: 32px;
    }
    
    .snowman-left {
        left: 55px;
    }
    
    .snowman-biggest-right {
        right: 8px;
    }
    
    .snowman-big-right {
        right: 32px;
    }
    
    .snowman-right {
        right: 55px;
    }
    
    .santa {
        font-size: 1.5rem;
    }
    
    .light {
        width: 8px;
        height: 14px;
    }
}

/* ============================================
   NAVY & CREAM LUXURY THEME
   ============================================ */

:root {
    /* Colors - Navy & Cream Palette */
    --bg-main: #101f36;          /* Refined Navy */
    --bg-secondary: #152742;     /* Lifted navy */
    --bg-card: #1c3155;          /* Card navy */
    
    --text-main: #f9f4ea;        /* Bright Cream */
    --text-secondary: #e3dacb;   /* Muted Cream */
    --text-muted: #a5b0c6;       /* Dusty Blue-Gray */
    
    --accent: #c9a962;           /* Muted Gold/Champagne */
    --accent-dim: rgba(201, 169, 98, 0.1);
    --accent-hover: #dfc07a;
    
    --border-light: rgba(249, 244, 234, 0.12);
    --border-accent: rgba(201, 169, 98, 0.45);
    
    /* Luxury Gradients */
    --gold-gradient: linear-gradient(135deg, #c9a962 0%, #dfc07a 50%, #c9a962 100%);
    --shimmer-gradient: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);

    /* Typography */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 1360px;
    --section-spacing: 120px;
    
    /* Transitions - optimized for performance */
    --transition: all 0.3s ease-out;
    --luxury-transition: all 0.4s ease-out;
}

/* ============================================
   GOLD PARTICLES CANVAS
   ============================================ */
#goldParticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* ============================================
   LUXURY SHIMMER EFFECT
   ============================================ */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(201, 169, 98, 0.2); }
    50% { box-shadow: 0 0 25px rgba(201, 169, 98, 0.35); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(201, 169, 98, 0.4); }
    50% { border-color: rgba(201, 169, 98, 0.6); }
}

/* ============================================
   PERSISTENT ANIMATIONS
   ============================================ */

/* Skill cards - glow only */
.skill-category-card {
    transition: var(--luxury-transition);
}

/* Stats - hover effect only */
.stat {
    transition: var(--luxury-transition);
}

/* FAQ items - transition only */
.faq-item {
    transition: var(--luxury-transition);
}

/* About grid - transition only */
.about-image {
    transition: var(--luxury-transition);
}

.about-content {
    transition: var(--luxury-transition);
    text-align: center;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 500px;
    margin: 0 auto 1rem auto;
}

/* Hero content - transition only */
.hero-content {
    transition: var(--luxury-transition);
}

.hero-visual {
    transition: var(--luxury-transition);
}

/* Skill pills - hover effect only (no continuous animation) */
.skill-pill {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.skill-pill:hover {
    box-shadow: 0 0 15px rgba(201, 169, 98, 0.3);
}

/* Section headers */
.section-header, .faq-header {
    transition: var(--luxury-transition);
}

/* Footer content */
.footer-main {
    transition: var(--luxury-transition);
}

.footer-bottom {
    transition: var(--luxury-transition);
}

/* Social links glow */
.social-links a {
    transition: var(--luxury-transition);
}

.social-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(201, 169, 98, 0.5);
}

/* Navbar elements */
.nav-links a {
    transition: var(--luxury-transition);
}

/* Accent elements - static styling (no continuous animation) */
.accent {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(201, 169, 98, 0.2);
}

/* Hero content - static styling (no continuous animation) */
.hero-content h1 {
    text-shadow: 0 0 20px rgba(201, 169, 98, 0.15);
}

/* Minimal circle continuous rotation */
.minimal-circle {
    animation: circleRotate 20s linear infinite, circlePulse 4s ease-in-out infinite;
}

@keyframes circleRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes circlePulse {
    0%, 100% { border-color: rgba(245, 240, 232, 0.1); }
    50% { border-color: rgba(201, 169, 98, 0.4); }
}

.minimal-circle::before {
    animation: innerGlow 4s ease-in-out infinite;
}

@keyframes innerGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Image frame breathing */
.image-frame {
    animation: frameBreath 5s ease-in-out infinite;
}

@keyframes frameBreath {
    0%, 100% { box-shadow: 0 0 0 rgba(201, 169, 98, 0); }
    50% { box-shadow: 0 0 30px rgba(201, 169, 98, 0.2); }
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* ============================================
   CUSTOM SCROLL ANIMATIONS
   ============================================ */
[data-aos] {
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
}

[data-aos="fade-in"] {
    opacity: 0;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0.01em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    font-weight: 500;
}

h4 {
    font-size: 1.125rem;
    font-weight: 500;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.75;
}

.overline {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.about {
    padding-top: 3rem;
    padding-bottom: calc(var(--section-spacing) / 2);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 1.5rem 0;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-light);
    transition: padding 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: var(--bg-main);
    border-radius: 50%;
    border: 2px solid rgba(201, 169, 98, 0.3);
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.4), 0 0 40px rgba(201, 169, 98, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: borderGlow 2s ease-in-out infinite;
}

.logo:hover {
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.6), 0 0 60px rgba(201, 169, 98, 0.3);
    transform: scale(1.05);
    border-color: rgba(201, 169, 98, 0.5);
}

.logo .logo-symbol {
    display: none;
}

/* ============================================
   SPONSORS & PAYMENT RIBBON
   ============================================ */
.ribbon-banner {
    background: var(--accent);
    padding: 0.4rem 0;
    overflow: hidden;
    position: relative;
}

.ribbon-banner::before,
.ribbon-banner::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ribbon-banner::before {
    left: 0;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
}

.ribbon-banner::after {
    right: 0;
    background: linear-gradient(-90deg, var(--accent) 0%, transparent 100%);
}

.ribbon-content {
    display: flex;
    width: max-content;
}

.ribbon-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: scrollRibbon 25s linear infinite;
}

@keyframes scrollRibbon {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ribbon-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--bg-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.ribbon-item i {
    font-size: 0.9rem;
}

.ribbon-item.sponsor {
    color: var(--bg-main);
    background: rgba(10, 22, 40, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.ribbon-divider {
    color: var(--bg-main);
    opacity: 0.5;
    font-size: 0.55rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    transition: var(--luxury-transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--luxury-transition);
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:first-child {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 40px; /* Navbar offset */
    position: relative;
    overflow: hidden;
    padding-bottom: 2rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    text-align: center;
    gap: 1.5rem;
}

.hero-title {
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    letter-spacing: 0.08rem;
    text-transform: none;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.hero-subline {
    font-size: 1.25rem;
    max-width: 450px;
    margin: 0 auto 0.5rem auto;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: none;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-visual {
    display: none;
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gold-gradient);
    background-size: 200% auto;
    border: 1px solid var(--accent);
    color: var(--bg-main);
    position: relative;
    overflow: hidden;
    animation: goldPulse 3s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--shimmer-gradient);
    animation: shimmer 3s infinite;
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-main);
    border-color: var(--text-main);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
}

.btn-link {
    color: var(--text-secondary);
    border-bottom: 1px solid transparent;
    padding: 0;
}

.btn-link:hover {
    color: var(--text-main);
    border-bottom-color: var(--accent);
}

.minimal-circle {
    width: 240px;
    height: 240px;
    border: 1px solid rgba(245, 240, 232, 0.2);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
}

.minimal-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(245, 240, 232, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    align-self: stretch;
    position: relative;
    z-index: 1;
}

.about-image::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 420px;
    border: 1px solid rgba(201, 169, 98, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-18px, -18px);
    z-index: 0;
    transition: var(--luxury-transition);
    pointer-events: none;
}

.about-image:hover::before {
    border-color: var(--accent);
    transform: translate(-50%, -50%) translate(-6px, -6px);
    box-shadow: 0 20px 35px rgba(201, 169, 98, 0.2);
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    border: 2px solid transparent;
    transition: var(--luxury-transition);
    max-width: 320px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 1;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent);
    opacity: 0;
    transition: var(--luxury-transition);
    z-index: 2;
}

.image-frame:hover::before {
    opacity: 1;
    box-shadow: inset 0 0 30px rgba(201, 169, 98, 0.3);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: var(--luxury-transition);
}

.image-frame:hover img {
    filter: grayscale(0%) contrast(1.1) brightness(1.05);
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    border: none;
    padding: 0.8rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
    animation: luxuryFloat 4s ease-in-out infinite, shimmer 4s infinite;
}

.experience-badge .number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--bg-main);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.experience-badge .label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-secondary);
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 0.5rem;
    justify-content: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-main);
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat:hover .stat-num {
    animation: goldPulse 1s ease-in-out;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise {
    background: transparent;
    padding-top: calc(var(--section-spacing) / 2);
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.skill-category-card {
    background: var(--bg-main);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: var(--luxury-transition);
    position: relative;
    overflow: hidden;
}

.skill-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.1), transparent);
    transition: left 0.8s ease;
}

.skill-category-card:hover::before {
    left: 100%;
}

.skill-category-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(201, 169, 98, 0.2), 0 0 0 1px rgba(201, 169, 98, 0.3);
}

.skill-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.skill-category-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.skill-category-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-main);
    margin: 0;
}

.skill-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(245, 240, 232, 0.08);
    border: 1px solid rgba(245, 240, 232, 0.15);
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skill-pill:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-main);
    transform: translateY(-3px) scale(1.02);
}

.skill-pill i {
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.skill-pill:hover i {
    color: var(--bg-main);
    transform: rotate(10deg) scale(1.1);
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 45px 0;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
}

.faq-header p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2.5rem;
}

.faq-item {
    margin-bottom: 0;
    padding-bottom: 0.75rem;
    text-align: center;
}

.faq-item h4 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--accent);
    text-align: center;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .faq-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 1.5rem 0 0.75rem;
    border-top: 1px solid var(--border-light);
}

.footer-main {
    text-align: center;
    margin-bottom: 1.25rem;
}

.footer-main h2 {
    font-size: clamp(0.9rem, 1.6vw, 1.2rem);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--accent) 50%, var(--text-main) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.email-link {
    font-size: 1rem;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 3px;
    position: relative;
    transition: var(--luxury-transition);
}

.email-link:hover {
    color: var(--accent);
    text-shadow: 0 0 20px rgba(201, 169, 98, 0.5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 500;
}

.social-links a:hover {
    color: var(--accent);
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-container, .about-grid, .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-container {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
            text-align: center;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        background: var(--bg-main);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 5rem 0 2rem;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0,0,0,0.25);
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links.active {
        right: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .portfolio-badge,
    .holiday-badge {
        display: none;
    }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    z-index: 2000;
    transition: width 0.1s ease-out;
}



/* ============================================
   PORTFOLIO BADGE
   ============================================ */
.portfolio-badge {
    position: fixed;
    top: 120px;
    right: 2rem;
    width: 90px;
    height: 90px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    border: none;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 100;
    animation: borderGlow 2s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.3);
}

.portfolio-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--shimmer-gradient);
    background-size: 200% auto;
    animation: shimmer 3s infinite;
}

.portfolio-badge .badge-text {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #1a1a1a;
    font-weight: 600;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}

.portfolio-badge .badge-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1;
    text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}

/* ============================================
   HOLIDAY BADGE
   ============================================ */
.holiday-badge {
    position: fixed;
    top: 120px;
    left: 2rem;
    width: 90px;
    height: 90px;
    perspective: 1000px;
    z-index: 100;
    display: none;
}

.holiday-badge.active {
    display: block;
}

.badge-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
    animation: coinFlip 6s ease-in-out infinite;
}

@keyframes coinFlip {
    0%, 40% {
        transform: rotateY(0deg);
    }
    50%, 90% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.holiday-badge:hover .badge-inner {
    animation-play-state: paused;
    transform: rotateY(180deg);
}

.badge-front, .badge-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
}

.badge-back {
    transform: rotateY(180deg);
}

.badge-front .badge-icon {
    font-size: 2rem;
}

.badge-back .badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    text-align: center;
    padding: 0.5rem;
}

/* ============================================
   TYPED ROLE ANIMATION
   ============================================ */
.typed-role {
    color: var(--accent);
    font-weight: 400;
}

.typed-cursor {
    color: var(--accent);
    font-weight: 300;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 500;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--bg-main);
    border-color: var(--accent);
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 2rem;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border: 1px solid var(--border-light);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* Ensure proper scaling on all devices */
* {
    box-sizing: border-box;
}

/* Tablet styles */
@media (max-width: 992px) {
    :root {
        --section-spacing: 80px;
    }
    
    html {
        font-size: 16px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }
    
    .stats-row {
        gap: 1.5rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Hero adjustments */
    .hero {
        padding-top: 110px;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
        letter-spacing: 0.02rem;
    }
    
    .hero-subline {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Typography scaling */
    h1 {
        font-size: clamp(1.3rem, 5vw, 2rem);
    }
    
    h2 {
        font-size: clamp(1.1rem, 4vw, 1.6rem);
    }
    
    h3 {
        font-size: 1rem;
    }
    
    p {
        font-size: 0.9rem;
    }
    
    /* About section */
    .about {
        padding-top: 2rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .stats-row {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .stat {
        flex: 0 0 45%;
        min-width: 120px;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    /* Skills section */
    .skill-category-card {
        padding: 1.5rem 1rem;
    }
    
    .skill-pills {
        gap: 0.5rem;
    }
    
    .skill-pill {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* FAQ section */
    .faq {
        padding: 30px 0;
    }
    
    .faq-item h4 {
        font-size: 0.95rem;
    }
    
    .faq-item p {
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 1rem 0 0.5rem;
    }
    
    .social-links {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links a {
        font-size: 0.7rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
    
    /* Christmas decorations on mobile */
    .christmas-tree {
        font-size: 2rem;
    }
    
    /* Smaller snowmen on mobile */
    .snowman-small {
        font-size: 0.9rem;
    }
    
    .snowman-big {
        font-size: 1.3rem;
    }
    
    /* Adjust snowmen positions on mobile */
    .snowman-big-left {
        left: 8px;
    }
    
    .snowman-left {
        left: 25px;
    }
    
    .snowman-big-right {
        right: 8px;
    }
    
    .snowman-right {
        right: 25px;
    }
    
    .santa {
        font-size: 1.2rem;
    }
    
    .stockings {
        display: none;
    }
    
    /* Ribbon banner */
    .ribbon-item {
        font-size: 0.6rem;
    }
    
    /* Back to top */
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1rem;
        right: 1rem;
        font-size: 1rem;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo {
        width: 50px;
        height: 50px;
        font-size: 0.65rem;
    }
    
    /* Hero */
    .hero {
        padding-top: 85px;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 7vw, 1.8rem);
    }
    
    .hero-subline {
        font-size: 0.85rem;
    }
    
    .typed-role {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
    
    /* Stats */
    .stat {
        flex: 0 0 100%;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.2rem;
    }
    
    .overline {
        font-size: 0.65rem;
    }
    
    /* Skills */
    .skill-category-card h3 {
        font-size: 0.9rem;
    }
    
    .skill-pill {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }
    
    /* Christmas trees smaller on tiny screens */
    .christmas-tree {
        font-size: 1.5rem;
    }
    
    .tree-left {
        left: 5px;
    }
    
    .tree-right {
        right: 5px;
    }
    
    /* Even smaller snowmen on small mobile */
    .snowman-small {
        font-size: 0.7rem;
    }
    
    .snowman-big {
        font-size: 1rem;
    }
    
    .snowman-big-left {
        left: 3px;
    }
    
    .snowman-left {
        left: 18px;
    }
    
    .snowman-big-right {
        right: 3px;
    }
    
    .snowman-right {
        right: 18px;
    }
    
    /* Lightbox adjustments */
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-prev {
        left: 0.5rem;
    }
    
    .lightbox-next {
        right: 0.5rem;
    }
}

/* Extra small screens (very small phones) */
@media (max-width: 360px) {
    html {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 1.1rem;
    }
    
    .hero-subline {
        font-size: 0.8rem;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
    }
    
    .nav-links.active {
        right: 0;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 1.5rem;
    }
    
    :root {
        --section-spacing: 40px;
    }
}

/* Fix overflow issues globally */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: var(--container-width);
}

/* Prevent text from overflowing */
h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* GPU acceleration for animated elements - prevents repaints */
.snowflake,
.santa,
.santa-container,
.christmas-tree,
.falling-present,
.candy-cane,
.toy-car,
.christmas-ball,
.ornament,
.stocking,
.aurora,
.frost-overlay {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .snowflake,
    .santa,
    .aurora,
    .frost-overlay,
    .ornament,
    .stocking {
        display: none !important;
    }
}

/* Mobile optimizations - keep features but optimize them */
@media (max-width: 768px) {
    /* Gold particles enabled on mobile - handled by optimized JS */
    #goldParticles {
        opacity: 0.5; /* Slightly more subtle on mobile */
    }
    
    /* Simplify aurora for mobile */
    .aurora {
        opacity: 0.3;
        animation: none;
    }
    
    /* Lighter frost effect on mobile */
    .frost-overlay {
        opacity: 0.5;
    }
    
    /* Reduce snowflakes to 6 on mobile for performance */
    .snowflake:nth-child(n+7) {
        display: none;
    }
    
    /* Slower snowfall = less CPU */
    .snowflake {
        animation-duration: 15s !important;
    }
    
    /* Smaller ornaments on mobile */
    .ornament {
        transform: scale(0.7) translateZ(0);
    }
    
    /* Smaller stockings */
    .stocking {
        font-size: 1.2rem;
    }
}

/* Small mobile - keep decorations but scale down */
@media (max-width: 480px) {
    /* Keep 4 snowflakes on small screens */
    .snowflake:nth-child(n+5) {
        display: none;
    }
    
    /* Smaller trees on small screens */
    .christmas-tree {
        font-size: 1.8rem;
    }
    
    /* Smaller Santa on small screens */
    .santa {
        font-size: 1rem;
    }
    
    /* Simpler frost */
    .frost-overlay {
        display: none;
    }
    
    /* Keep stockings but smaller */
    .stocking {
        font-size: 1rem;
    }
    
    .stockings {
        display: flex;
        gap: 0.5rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    /* Minimal decorations */
    .snowflake:nth-child(n+4) {
        display: none;
    }
    
    .ornaments {
        display: none;
    }
}

/* Ensure smooth scrolling doesn't cause jank */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Optimize paint and layout */
.navbar {
    will-change: transform;
    transform: translateZ(0);
}

section {
    contain: layout style;
}

/* Prevent layout shifts */
img {
    aspect-ratio: attr(width) / attr(height);
}
