html head,
html body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.headline {
    font-family: "Cabin", sans-serif;
    font-weight: 700;
    font-stretch: 100%;
    font-variation-settings:
        "wght" 700,
        "wdth" 100;
    font-size: 2.2em;
    text-align: center;
}

.content .headline {
    color: #333;
}

.subheading {
    font-family: "Dosis", sans-serif;
    font-weight: 500;
    font-variation-settings: "wght" 500;
    font-size: 1.5em;
    margin-bottom: 0.8em;
}

.italic {
    font-family: "Cabin", sans-serif;
    font-style: italic;
    font-stretch: 85%; /* Slightly condensed */
    font-variation-settings:
        "wght" 300,
        "wdth" 85;
    font-size: 1em;
    color: #666;
}

.callout {
    font-family: "TitanOne", sans-serif;
    font-weight: 600;
    color: #4990e2;
}

body,
p {
    font-family: "Cabin", sans-serif;
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}

a {
    color: rgb(246, 166, 35);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5em;
    background-color: #f0f2ef;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header #menu {
    margin: auto;
    font-size: 1.2em;
    justify-content: space-between;
}

header nav a {
    margin: auto;
    padding: 1em;
    text-decoration: underline 0.1em rgba(0, 0, 0, 0);
    text-underline-offset: 0.1em;
    transition:
        text-decoration-color 0.5s ease-in,
        color 0.3s ease;
    color: #f6a623;
    font-weight: 500;
}

header nav a:hover {
    text-decoration-color: #4990e2;
    color: #4990e2;
}

h1,
h2,
h3,
h4 {
    margin: 0.5em auto;
    text-align: center;
}

h3 {
    font-size: 1.3em;
    font-family: "Dosis", sans-serif;
    font-weight: 600;
    font-size: 1.3em;
    color: #4990e2;
}

.hero-section {
    background-color: #4990e2;
    padding: 2em 1em;
}

.hero-section .headline {
    color: white;
}

.approach-section {
    background-color: #f6a623;
}

.approach-section .headline {
    color: white;
}

main section:nth-child(even) {
    background-color: #f0f2ef;
    color: #4990e2;
}

section {
    padding: 1.5em;
}

#prefooter {
    background-color: #5c5346;
    color: white;
}

#prefooter h4 {
    font-size: 1.3em;
    color: white;
}

footer {
    background-color: #afd5aa;
    color: white;
    padding: 1.5em;
    text-align: center;
}

div#contactInfo {
    margin: auto;
    color: white;
    max-width: 300px;
    font-size: 1.1em;
}

#contactInfo a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

#contactInfo a:hover {
    color: #4990e2;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    padding: 0.5em 0;
    position: relative;
    padding-left: 1.5em;
}

li:before {
    content: ":::";
    position: absolute;
    left: 0;
    color: #f6a623;
}

.activeLink {
    text-decoration: underline 0.1em #4990e2;
    text-underline-offset: 0.1em;
    color: #4990e2;
}

.content {
    margin: auto;
    width: 80%;
    max-width: 1000px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1em 0.5em;
    }
    header #menu {
        margin-top: 1em;
    }
    header nav a {
        padding: 0.5em;
        font-size: 0.9em;
    }
    .content {
        width: 95%;
    }
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
        max-width: 300px;
    }
}

.hero-section p {
    color: white;
}

.hero-section a {
    text-decoration-thickness: 0.05em;
    text-decoration-style: wavy;
    text-decoration-color: rgb(246, 166, 35);
    color: white;
    font-weight: 600;
}

.hero-section a:hover {
    text-decoration-thickness: 0.05em;
    text-decoration-style: wavy;
    text-decoration-color: rgb(246, 166, 35);
    color: white;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5em;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-text {
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Tetris animations and styles */

.tetris-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.tetris-piece {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.block {
    width: 20px;
    height: 20px;
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* L-piece (orange) */
.l-piece {
    top: 20px;
    left: 20px;
}

.l-piece .block {
    background: linear-gradient(45deg, #ff6b35, #ff8e53);
}

.l-piece .block:nth-child(1) {
    top: 0;
    left: 0;
}
.l-piece .block:nth-child(2) {
    top: 20px;
    left: 0;
}
.l-piece .block:nth-child(3) {
    top: 40px;
    left: 0;
}
.l-piece .block:nth-child(4) {
    top: 40px;
    left: 20px;
}
/* T-piece (purple) */
.t-piece {
    top: 60px;
    left: 60px;
}

.t-piece .block {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
}

.t-piece .block:nth-child(1) {
    top: 0;
    left: 20px;
}
.t-piece .block:nth-child(2) {
    top: 20px;
    left: 0;
}
.t-piece .block:nth-child(3) {
    top: 20px;
    left: 20px;
}
.t-piece .block:nth-child(4) {
    top: 20px;
    left: 40px;
}
/* S-piece (green) */
.s-piece {
    top: 40px;
    left: 100px;
}

.s-piece .block {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.s-piece .block:nth-child(1) {
    top: 20px;
    left: 0px;
}
.s-piece .block:nth-child(2) {
    top: 20px;
    left: 20px;
}
.s-piece .block:nth-child(3) {
    top: 0px;
    left: 20px;
}
.s-piece .block:nth-child(4) {
    top: 0;
    left: 40px;
}

/* I-piece (cyan) */
.i-piece {
    top: 100px;
    left: 20px;
}

.i-piece .block {
    background: linear-gradient(45deg, #3498db, #5dade2);
}

.i-piece .block:nth-child(1) {
    top: 0;
    left: 0;
}
.i-piece .block:nth-child(2) {
    top: 0;
    left: 20px;
}
.i-piece .block:nth-child(3) {
    top: 0px;
    left: 40px;
}
.i-piece .block:nth-child(4) {
    top: 0px;
    left: 60px;
}

/* O-piece (yellow) */
.o-piece {
    top: 0;
    left: 60px;
}

.o-piece .block {
    background: linear-gradient(45deg, #f1c40f, #f39c12);
}

.o-piece .block:nth-child(1) {
    top: 0;
    left: 0;
}
.o-piece .block:nth-child(2) {
    top: 0;
    left: 20px;
}
.o-piece .block:nth-child(3) {
    top: 20px;
    left: 0;
}
.o-piece .block:nth-child(4) {
    top: 20px;
    left: 20px;
}

.tetris-container:hover .l-piece {
    transform: translate(-30px, -30px) rotate(60deg);
}

.tetris-container:hover .t-piece {
    transform: translate(25px, 25px) rotate(20deg);
}

.tetris-container:hover .s-piece {
    transform: translate(40px, -20px) rotate(10deg);
}

.tetris-container:hover .i-piece {
    transform: translate(0px, 45px) rotate(180deg);
}

.tetris-container:hover .o-piece {
    transform: translate(30px, -35px) rotate(-10deg);
}

/* Circuit animation and styles */

.circuit-container {
    position: relative;
    height: 120px;
    width: 100%;
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.circuit-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(0, 255, 136, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(82, 115, 158, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.circuit-board {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.circuit-line {
    position: absolute;
    background: #52739e;
    box-shadow: 0 0 6px #52739e;
}

.line-horizontal {
    height: 2px;
    width: 60px;
}

.line-vertical {
    width: 2px;
    height: 40px;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #52739e;
    border-radius: 50%;
    box-shadow: 0 0 12px #52739e;
}

.circuit-chip {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #333;
    border: 2px solid #52739e;
    border-radius: 2px;
    box-shadow: 0 0 8px #52739e;
}

.line-1 {
    top: 20px;
    left: 20px;
    animation: pulse-flow 2s ease-in-out infinite;
}

.line-2 {
    top: 20px;
    left: 85px;
    animation: pulse-flow 2s ease-in-out infinite 0.3s;
}

.line-3 {
    top: 22px;
    left: 80px;
    animation: pulse-flow 2s ease-in-out infinite 0.6s;
}

.line-4 {
    top: 60px;
    left: 50px;
    animation: pulse-flow 2s ease-in-out infinite 0.9s;
}

.line-5 {
    top: 60px;
    left: 115px;
    animation: pulse-flow 2s ease-in-out infinite 1.2s;
}

.node-1 {
    top: 16px;
    left: 77px;
    animation: node-glow 2s ease-in-out infinite 0.2s;
}

.node-2 {
    top: 16px;
    left: 141px;
    animation: node-glow 2s ease-in-out infinite 0.5s;
}

.node-3 {
    top: 56px;
    left: 46px;
    animation: node-glow 2s ease-in-out infinite 0.8s;
}

.node-4 {
    top: 56px;
    left: 171px;
    animation: node-glow 2s ease-in-out infinite 1.1s;
}

.node-5 {
    top: 56px;
    left: 110px;
    animation: node-glow 2s ease-in-out infinite 0.2s;
}

.chip-1 {
    top: 10px;
    left: 160px;
    animation: chip-glow 3s ease-in-out infinite;
}

.chip-2 {
    top: 50px;
    left: 190px;
    animation: chip-glow 3s ease-in-out infinite 1s;
}

.chip-3 {
    top: 80px;
    left: 68px;
    animation: chip-glow 3s ease-in-out infinite 2s;
}
.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #85a3cc;
    border-radius: 50%;
    box-shadow: 0 0 8px #85a3cc;
}

.particle-1 {
    top: 19px;
    left: 20px;
    animation: flow-horizontal 3s linear infinite;
}

.particle-2 {
    top: 59px;
    left: 50px;
    animation: flow-horizontal 3s linear infinite 1s;
}

.particle-3 {
    top: 22px;
    left: 80px;
    animation: flow-vertical 2.5s linear infinite 0.5s;
}

/* Animations */
@keyframes pulse-flow {
    0%,
    100% {
        box-shadow: 0 0 6px #52739e;
        opacity: 0.6;
    }
    50% {
        box-shadow:
            0 0 20px #52739e,
            0 0 30px #52739e;
        opacity: 1;
    }
}

@keyframes node-glow {
    0%,
    100% {
        box-shadow: 0 0 12px #52739e;
        transform: scale(1);
    }
    50% {
        box-shadow:
            0 0 25px #52739e,
            0 0 35px #52739e;
        transform: scale(1.2);
    }
}

@keyframes chip-glow {
    0%,
    100% {
        box-shadow: 0 0 8px #52739e;
        border-color: #52739e;
    }
    33% {
        box-shadow:
            0 0 20px #cc8f42,
            0 0 30px #cc8f42;
        border-color: #cc8f42;
    }
    66% {
        box-shadow:
            0 0 15px #ff6b00,
            0 0 25px #ff6b00;
        border-color: #ff6b00;
    }
}

@keyframes flow-horizontal {
    0% {
        left: 20px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 200px;
        opacity: 0;
    }
}

@keyframes flow-vertical {
    0% {
        top: 22px;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100px;
        opacity: 0;
    }
}

/* Calendar animation */

.calendar-animation {
    width: 100%;
    height: 120px;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em 0 2em 0;
}

.calendar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    width: 210px;
    margin-bottom: 6px;
}

.day-label {
    width: 24px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-align: center;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    width: 210px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 2px solid #e9ecef;
}

.calendar-day {
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 3px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
}

.calendar-day.active {
    background: #4285f4;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
}

/* Create 28 calendar days (4 weeks) with randomized animation timing */
.calendar-day:nth-child(2) {
    animation: dayPulse 6s ease-in-out 5.3s infinite;
}

.calendar-day:nth-child(3) {
    animation: dayPulse 6s ease-in-out 0.5s infinite;
}

.calendar-day:nth-child(5) {
    animation: dayPulse 6s ease-in-out 3.2s infinite;
}
.calendar-day:nth-child(8) {
    animation: dayPulse 6s ease-in-out 2.1s infinite;
}
.calendar-day:nth-child(14) {
    animation: dayPulse 6s ease-in-out 4.3s infinite;
}
.calendar-day:nth-child(19) {
    animation: dayPulse 6s ease-in-out 1.7s infinite;
}
.calendar-day:nth-child(23) {
    animation: dayPulse 6s ease-in-out 3.4s infinite;
}
.calendar-day:nth-child(27) {
    animation: dayPulse 6s ease-in-out 0.2s infinite;
}

.calendar-day:nth-child(2) .helper-icon {
    animation: iconPop 6s ease-in-out 4.8s infinite;
}

.calendar-day:nth-child(3) .helper-icon {
    animation: iconPop 6s ease-in-out 0.5s infinite;
}

.calendar-day:nth-child(5) .helper-icon {
    animation: iconPop 6s ease-in-out 1.9s infinite;
}
.calendar-day:nth-child(8) .helper-icon {
    animation: iconPop 6s ease-in-out 2.1s infinite;
}
.calendar-day:nth-child(14) .helper-icon {
    animation: iconPop 6s ease-in-out 4.3s infinite;
}
.calendar-day:nth-child(19) .helper-icon {
    animation: iconPop 6s ease-in-out 1.7s infinite;
}
.calendar-day:nth-child(23) .helper-icon {
    animation: iconPop 6s ease-in-out 3.4s infinite;
}
.calendar-day:nth-child(27) .helper-icon {
    animation: iconPop 6s ease-in-out 0.2s infinite;
}

.helper-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 10px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: white;
    z-index: 2;
}

.helper-icon.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

@keyframes dayPulse {
    0%,
    75%,
    100% {
        background: #ffffff;
        transform: scale(1);
        box-shadow: none;
    }
    25%,
    50% {
        background: #4285f4;
        transform: scale(1.1);
        box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
    }
}

@keyframes iconPop {
    0%,
    20%,
    80%,
    100% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    30%,
    70% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* Lighthouse Animation */

body {
    margin: 0;
    padding: 20px;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

/* Lighthouse Scene Container */
.lighthouse-scene {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(
        to bottom,
        #1a237e 0%,
        /* Dark blue night sky */ #3949ab 40%,
        /* Lighter blue */ #5c6bc0 60%,
        /* Even lighter blue */ #7986cb 80% /* Light blue horizon */
    );
}

/* Back waves */
.waves-back {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: #4a5568;
    opacity: 0.7;
    clip-path: polygon(
        0% 100%,
        0% 60%,
        5% 40%,
        10% 45%,
        15% 35%,
        20% 50%,
        25% 45%,
        30% 55%,
        35% 50%,
        40% 60%,
        45% 55%,
        50% 65%,
        55% 60%,
        60% 70%,
        65% 65%,
        70% 75%,
        75% 70%,
        80% 80%,
        85% 75%,
        90% 85%,
        95% 80%,
        100% 90%,
        100% 100%
    );
    transition: transform 0.3s ease;
}
.lighthouse-scene:hover .waves-back {
    animation: waveMotion 2s ease-in-out infinite;
}

/* Lighthouse tower */
.lighthouse-tower {
    position: absolute;
    bottom: 53px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 60px;
    background: #f7fafc;
    clip-path: polygon(10% 100%, 25% 0%, 75% 0%, 90% 100%);
}

/* Lighthouse top */
.lighthouse-top {
    position: absolute;
    bottom: 107px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 25px;
    background: #f7fafc;
    border-radius: 25% 25% 0 0;
}

.lighthouse-lantern {
    position: absolute;
    bottom: 112px;
    left: 58%;
    transform: translateX(-50%);
    width: 10px;
    height: 8px;
    background: black;
    border-radius: 25% 25% 0 0;
}

/* Lighthouse roof */
.lighthouse-roof {
    position: absolute;
    bottom: 123px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 30px solid #e53e3e;
    border-radius: 5px;
    z-index: 10;
}

/* Lighthouse base */
.lighthouse-base {
    position: absolute;
    bottom: 33px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #718096;
    border-radius: 50%;
}

/* Rocks */
.rocks {
    position: absolute;
    bottom: 27px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 80px;
    background: #2d3748;
    clip-path: polygon(
        20% 100%,
        10% 70%,
        25% 40%,
        40% 60%,
        50% 20%,
        65% 50%,
        75% 30%,
        85% 60%,
        95% 80%,
        90% 100%
    );
}

/* Front waves */
.waves-front {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #2c5282;
    clip-path: polygon(
        0% 100%,
        0% 25%,
        3% 20%,
        7% 15%,
        12% 20%,
        17% 15%,
        22% 25%,
        27% 20%,
        32% 30%,
        37% 25%,
        42% 35%,
        47% 30%,
        52% 35%,
        57% 30%,
        62% 35%,
        67% 30%,
        72% 25%,
        77% 20%,
        82% 25%,
        87% 20%,
        92% 15%,
        97% 20%,
        100% 25%,
        100% 100%
    );
    transition: transform 0.3s ease;
}

.lighthouse-scene:hover .waves-front {
    animation: waveMotion 1.5s ease-in-out infinite;
}

/* Wave animation */

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

/* Lighthouse beam */

.lighthouse-beam {
    position: absolute;
    bottom: 18px;
    transform: rotate(-90deg);
    left: 60%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 200px solid rgba(255, 255, 140, 0.4);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
    filter: blur(3px);
}

.lighthouse-scene:hover .lighthouse-beam {
    position: absolute;
    bottom: 18px;
    transform: rotate(-90deg);
    left: 60%;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 200px solid rgba(255, 255, 140, 0.4);
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 1;
    filter: blur(2px);
}

.approach-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
    margin: 2em auto;
    max-width: 800px;
}

.approach-item {
    background-color: white;
    border-radius: 8px;
    padding: 1em 1.5em;
    font-size: 1.2em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vision-list {
    margin: auto;
    width: 80%;
    max-width: 1000px;
}

.vision-list li {
    margin-bottom: 1em;
    line-height: 1.5;
}

.feature-list li {
    margin-bottom: 0.8em;
    line-height: 1.4;
}

.cta-text {
    text-align: center;
    font-size: 1.2em;
    margin: auto;
}

.button-link {
    display: inline-block;
    background-color: #f6a623;
    color: white;
    padding: 0.5em 1em;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 1em;
    transition: background-color 0.3s ease;
}

.button-link:hover {
    background-color: #e09415;
}

/* Coffee Cup Animation Styles */
.placeholder-container {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
}

.brewing-text {
    margin-top: 1em;
    font-family: "Cabin", sans-serif;
    font-style: italic;
    color: #5c5346;
}

.coffee-animation {
    position: relative;
    width: 100px;
    height: 100px;
}

.coffee-mug {
    position: absolute;
    width: 60px;
    height: 70px;
    border-radius: 0 0 10px 10px;
    background-color: #f0f2ef;
    border: 3px solid #5c5346;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.coffee-mug:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 30px;
    border: 3px solid #5c5346;
    border-left: none;
    border-radius: 0 20px 20px 0;
    right: -23px;
    top: 15px;
}

.coffee {
    position: absolute;
    width: 54px;
    height: 25px;
    background-color: #a67c52;
    border-radius: 0 0 8px 8px;
    bottom: 0;
    left: 3px;
    animation: brew 4s infinite;
}

@keyframes brew {
    0%,
    100% {
        height: 25px;
    }
    50% {
        height: 40px;
    }
}

/* Technologies */
@media (max-width: 768px) {
    .tech-grid {
        gap: 10px;
    }

    .tech-item {
        min-width: 100px;
        padding: 10px;
        font-size: 14px;
    }
}
/* CSS-only randomization using order property with prime numbers */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
}

.tech-item:nth-child(1) {
    order: 19;
}
.tech-item:nth-child(2) {
    order: 7;
}
.tech-item:nth-child(3) {
    order: 31;
}
.tech-item:nth-child(4) {
    order: 13;
}
.tech-item:nth-child(5) {
    order: 5;
}
.tech-item:nth-child(6) {
    order: 23;
}
.tech-item:nth-child(7) {
    order: 11;
}
.tech-item:nth-child(8) {
    order: 29;
}
.tech-item:nth-child(9) {
    order: 17;
}
.tech-item:nth-child(10) {
    order: 3;
}
.tech-item:nth-child(11) {
    order: 37;
}
.tech-item:nth-child(12) {
    order: 43;
}
.tech-item:nth-child(13) {
    order: 2;
}
.tech-item:nth-child(14) {
    order: 41;
}
.tech-item:nth-child(15) {
    order: 47;
}
.tech-item:nth-child(16) {
    order: 53;
}
.tech-item:nth-child(17) {
    order: 59;
}
.tech-item:nth-child(18) {
    order: 61;
}
.tech-item:nth-child(19) {
    order: 67;
}
.tech-item:nth-child(20) {
    order: 71;
}
.tech-item:nth-child(21) {
    order: 73;
}
.tech-item:nth-child(22) {
    order: 79;
}
.tech-item:nth-child(23) {
    order: 83;
}
.tech-item:nth-child(24) {
    order: 89;
}
.tech-item:nth-child(25) {
    order: 97;
}
.tech-item:nth-child(26) {
    order: 101;
}
.tech-item:nth-child(27) {
    order: 103;
}
.tech-item:nth-child(28) {
    order: 107;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.tech-item {
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    min-width: 120px;
}

.tech-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Category styling */
.language {
    background-color: #dbeafe;
    color: #1e40af;
}
.database {
    background-color: #dcfce7;
    color: #166534;
}
.cloud {
    background-color: #f3e8ff;
    color: #6b21a8;
}
.framework {
    background-color: #fef3c7;
    color: #92400e;
}
.tool {
    background-color: #f3f4f6;
    color: #374151;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 1.5em;
    border-radius: 1em;
}
