/* Simple cursor override */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

html {
    cursor: none !important;
}

body {
    cursor: none !important;
}

* {
    cursor: none !important;
    box-sizing: border-box;
}

/* Base styles */
:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --neon-green: #d8ff85;
    --dark-green: #1B4332;
    --bg-gray: #f5f5f5;
    --text-dark: #333333;
}

/* Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
}

.cursor__ball {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--neon-green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 99999;
    transition: background 0.2s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    cursor: none;
    position: relative;
    overflow-y: auto;
    background-color: var(--bg-gray);
    color: var(--text-dark);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    cursor: none;
    position: relative;
    overflow-y: auto;
    background-color: var(--bg-gray);
    color: var(--text-dark);
}

/* Add CSS Variables for the new color scheme */
:root {
    --text-light: rgba(255, 255, 255, 0.9);
    --headline-teal: #2a4e45;
    --cursor-green: #d8ff85;
}

/* Global container */
#root, .app {
    width: 100%;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--dark-green);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

.progress-bar.past-hero {
    background-color: var(--dark-green);
}

/* Hero Section */
/* Animated gradient keyframes */
@keyframes subtleMove {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -10px) scale(1.02);
    }
    50% {
        transform: translate(10px, -20px) scale(1.05);
    }
    75% {
        transform: translate(-10px, -10px) scale(1.03);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-section {
    background: var(--dark-green);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    background: radial-gradient(circle at 30% 70%, rgba(216, 255, 133, 0.3) 0%, transparent 40%);
    animation: subtleMove 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

body.scrolled .hero-section {
    transform: translateY(-100%);
    pointer-events: none;
}

.hero-content {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -10vh;
}

.hero-content h1 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 5.5rem;
    font-weight: 300 !important;
    line-height: 1.1;
    margin: 0;
}

.typewriter-container {
    display: inline-block;
    white-space: normal;
}

/* Mobile-specific line breaks */
@media (max-width: 768px) {
    .typewriter-container {
        white-space: pre-line;
    }
}

#typewriter {
    transition: opacity 0.1s ease-out;
    display: inline;
    color: white;
}

#network-animation {
    width: 100%;
    height: 100%;
}

/* Network Animation Styles */
.network-path {
    filter: drop-shadow(0 0 3px currentColor);
}

#main-node {
    filter: drop-shadow(0 0 10px #00e676);
}

#company-name {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

#claim-text {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    opacity: 0.9;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .hero-section {
        align-items: center;
    }

    .hero-content {
        width: 95%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        white-space: normal;
        color: white;
    }
    
    #typewriter {
        white-space: normal;
        word-break: break-word;
        color: white;
    }
    
    .typewriter-cursor {
        white-space: nowrap;
        margin-left: 0.05em;
    }
    
    #company-name {
        letter-spacing: 0.05em;
    }
    
    #main-node {
        r: 12;
    }
}

/* Hero Text */
.hero-text {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    width: 50%;
    color: var(--bg-gray);
}

.hero-text h1 {
    font-size: 5.5vw;
    font-weight: 200;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
    padding: 0;
    text-decoration: underline;
    text-decoration-color: var(--neon-green);
    text-decoration-thickness: 3px;
    text-underline-offset: 0.2em;
    text-transform: lowercase;
    color: var(--bg-gray);
}

.hero-text h1:last-of-type {
    margin-top: 1.5rem;
}

.hero-text p {
    font-size: 1.2vw;
    font-weight: 200;
    margin-top: 2rem;
    opacity: 0.9;
    letter-spacing: 0.2em;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

/* Image Sequence */
.image-sequence {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translateX(100%);
    transition: transform 0s;
}

.image.active {
    transform: translateX(0);
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.image.prev {
    transform: translateX(-100%);
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

a, button, .clickable {
    cursor: none !important;
}

a:hover ~ .cursor .cursor__ball,
button:hover ~ .cursor .cursor__ball,
.burger:hover ~ .cursor .cursor__ball,
.shot-item:hover ~ .cursor .cursor__ball,
.playground-box:hover ~ .cursor .cursor__ball,
a:hover + .cursor .cursor__ball,
button:hover + .cursor .cursor__ball,
.burger:hover + .cursor .cursor__ball,
.shot-item:hover + .cursor .cursor__ball,
.playground-box:hover + .cursor .cursor__ball {
    background: #ff6b6b !important;
}

/* Typewriter cursor */
.typewriter-cursor {
    display: inline-block;
    width: 0.05em;
    height: 1em;
    background-color: white;
    margin-left: 0.1em;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    transition: opacity 0.1s ease-out;
}

@keyframes blink {
    from, to { visibility: visible; }
    50% { visibility: hidden; }
}

.highlight {
    color: #1B4332;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.cursor__ball.yellow {
    background: #ffd700;
    mix-blend-mode: normal;
}

.cursor__ball svg {
    display: block;
    overflow: visible;
    background: transparent;
}

.cursor__ball--big svg {
    width: 80px;
    height: 80px;
    background: transparent;
}

.cursor__ball--small svg {
    width: 25px;
    height: 25px;
    background: transparent;
}

.cursor__ball circle {
    fill: #fff;
}

.cursor__ball--big circle {
    fill: rgba(255, 255, 255, 1);
}

.cursor__ball--small circle {
    fill: rgba(255, 255, 255, 1);
}

/* Navigation */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    color: white;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.fixed-header.visible {
    background: var(--neon-green);
    color: var(--dark-green);
    opacity: 1;
}

.fixed-header.hidden {
    opacity: 0;
    pointer-events: none;
}

.fixed-header .brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.fixed-header .burger {
    width: 60px;
    height: 60px;
    position: relative;
    cursor: none;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -10px;
    padding: 10px;
}

.fixed-header .burger span {
    display: block;
    width: 30px;
    height: 2px;
    background: white;
    position: absolute;
    transition: 0.4s cubic-bezier(0.86, 0, 0.07, 1), background 0.3s ease;
}

.fixed-header.visible .burger span {
    background: var(--dark-green);
}

.fixed-header .burger span:nth-child(1) {
    top: 19px;
}

.fixed-header .burger span:nth-child(2) {
    top: 29px;
}

.fixed-header .burger span:nth-child(3) {
    top: 39px;
}

.fixed-header .burger.active span {
    background: var(--neon-green);
}

.fixed-header .burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.fixed-header .burger.active span:nth-child(2) {
    opacity: 0;
}

.fixed-header .burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .fixed-header {
        background: transparent;
        color: white;
        transform: translateY(0);
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .fixed-header.visible {
        background: var(--neon-green);
        color: var(--dark-green);
    }
    
    .fixed-header.hidden {
        opacity: 0;
        pointer-events: none;
    }
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-green);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    z-index: 999;
    top: 100%;
}

.overlay.active {
    top: 0;
}

.menu-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    align-items: center;
}

.menu-text a {
    color: var(--neon-green);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.overlay.active .menu-text a {
    opacity: 1;
    transform: translateY(0);
}

.overlay.active .menu-text a:nth-child(1) {
    transition-delay: 0.5s;
}

.overlay.active .menu-text a:nth-child(2) {
    transition-delay: 0.6s;
}

.overlay.active .menu-text a:nth-child(3) {
    transition-delay: 0.7s;
}

.overlay.active .menu-text a:nth-child(4) {
    transition-delay: 0.8s;
}

.menu-text a:hover {
    color: var(--bg-gray);
}

.text-line {
    font-size: 3rem;
    font-weight: 600;
    color: var(--neon-green);
    margin: 0.5rem 0;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: none;
}

.overlay.active .text-line {
    opacity: 1;
    transform: translateY(0);
}

.overlay.active .text-line:nth-child(1) {
    transition-delay: 0.5s;
}

.overlay.active .text-line:nth-child(2) {
    transition-delay: 0.6s;
}

.overlay.active .text-line:nth-child(3) {
    transition-delay: 0.7s;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 2rem;
}

.hero-content h1 {
    color: var(--text-dark);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 400;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Intro Section */
.intro-section {
    position: relative;
    padding: 6rem 6rem;
    background-color: white;
}

.intro-content {
    display: flex;
    gap: 4rem;
    padding: 4rem 0;
    min-height: 80vh;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-column {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.intro-column:first-child {
    justify-content: flex-start;
}

.intro-column:last-child {
    justify-content: flex-start;
}

.intro-column:last-child > div {
    margin-top: 4rem;
}

.intro-column:last-child > div:first-child {
    margin-top: 0;
}

.intro-column:first-child h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.intro-column:last-child h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.intro-column p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.intro-column p:last-child {
    margin-bottom: 0;
}

.intro-column strong {
    color: var(--dark-green);
    font-weight: 600;
}

.intro-section .permanent-highlight {
    color: var(--dark-green);
    mix-blend-mode: normal; /* Ensures highlight is visible on gray bg */
}

@media (max-width: 768px) {
    .intro-section {
        padding: 6rem 2rem;
    }

    .intro-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }

    .intro-column {
        width: 100%;
    }

    .intro-column:last-child > div {
        margin-top: 2rem;
    }
}

/* Workshops Section */
.workshops-section {
    position: relative;
    padding: 6rem 2rem;
    background-color: var(--bg-gray);
}

.workshops-content {
    width: 90%;
    margin: 0 auto;
}

.workshop-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.workshop-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Playground Section */
.playground-section {
    position: relative;
    padding: 6rem 2rem;
    background-color: white;
}

.playground-content {
    width: 90%;
    margin: 0 auto;
}

.playground-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.playground-intro p:first-child {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.playground-intro p:nth-child(2) {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.playground-intro p:nth-child(3),
.playground-intro p:nth-child(4) {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Playground Boxes Styles */
.playground-boxes {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.playground-box {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.playground-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--neon-green);
}

.playground-box-visual {
    width: 100%;
    height: 200px;
    background-color: var(--bg-gray);
    position: relative;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

.playground-box:nth-child(1) .playground-box-visual {
    background-image: url('./public/img/padraig.jpg');
    background-color: var(--neon-green);
}

.playground-box:nth-child(2) .playground-box-visual {
    background-image: url('./public/img/sokrates.jpg');
    background-color: var(--dark-green);
}

.playground-box:nth-child(3) .playground-box-visual {
    background-image: url('./public/img/agent.jpg');
    background-color: var(--text-dark);
}

.playground-box-content {
    padding: 2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.playground-box-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.playground-box-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.playground-box:hover .playground-box-content {
    background-color: var(--neon-green);
    color: var(--dark-green);
}

.playground-box:hover .playground-box-visual {
    background-color: var(--neon-green);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .playground-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .playground-box-content {
        padding: 1.5rem;
    }

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

    .playground-box-content p {
        font-size: 0.9rem;
    }
}

/* About Section */
.about-section {
    position: relative;
    padding: 6rem 6rem;
    background-color: var(--bg-gray);
}

.about-content {
    display: flex;
    gap: 4rem;
    padding: 4rem 0;
    min-height: 80vh;
    max-width: 1200px;
    margin: 0 auto;
}

.about-column {
    flex: 1;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.about-column:first-child {
    justify-content: flex-start;
}

.about-column:last-child {
    justify-content: flex-start;
}

.about-column:last-child > div {
    margin-top: 4rem;
}

.about-column:last-child > div:first-child {
    margin-top: 0;
}

.about-column:first-child h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.about-column:last-child h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-column p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 90%;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .about-section {
        padding: 6rem 2rem;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
    }

    .about-column {
        width: 100%;
    }

    .about-column:last-child > div {
        margin-top: 2rem;
    }
}

/* About Section Collapsible Items */
.about-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    padding-bottom: 0;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    transition: all 0.3s ease;
    padding: 0;
}

.about-header:hover {
    opacity: 0.8;
}

.about-arrow {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
    transition: transform 0.3s ease;
    user-select: none;
}

.about-item.active .about-arrow {
    transform: rotate(90deg);
}

.about-content-item {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.about-item.active .about-content-item {
    max-height: 200px;
    padding: 1rem 0 0 0;
}

.about-content-item p {
    margin: 0;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
}

.about-item.active .about-content-item p {
    opacity: 1;
}

@media (max-width: 768px) {
    .about-header {
        padding: 1rem 0;
    }
    
    .about-arrow {
        font-size: 1.3rem;
    }
    
    .about-item.active .about-content-item {
        max-height: 300px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor {
        display: none;
    }
    
    .cursor__ball {
        display: none;
    }
    
    .brand {
        font-size: 0.9rem;
    }
    
    .hero-text h1 {
        font-size: 12vw;
    }
    
    .hero-text p {
        font-size: 3vw;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        width: 85%;
    }
    
    .intro-column:first-child h2 {
        font-size: 3rem;
    }
    
    .intro-column p {
        max-width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        width: 85%;
    }
    
    .about-column:first-child h2 {
        font-size: 3rem;
    }
    
    .about-column p {
        max-width: 100%;
    }
}

/* Shots Section */
.shots-section {
    position: relative;
    padding: 2rem 0;
    background-color: var(--bg-gray);
    color: var(--text-dark);
    z-index: 2;
}

.shots-section + .shots-section {
    padding-top: 12rem;
}

.shots-content {
    width: 90%;
    margin: 0 auto;
}

.section-headline {
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 3rem;
    text-align: center;
}

/* Workshop Boxes Styles - Using Playground Design */
.shot-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.shot-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.shot-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background-color: var(--neon-green);
}

.shot-image {
    width: 100%;
    height: 200px;
    background-color: var(--bg-gray);
    position: relative;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    margin-bottom: 0;
    border-radius: 0;
}

.shot-item:nth-child(1) .shot-image {
    background-image: url('./img/set1/bg1.jpg');
    background-color: var(--neon-green);
}

.shot-item:nth-child(2) .shot-image {
    background-image: url('./img/set2/pexels-anniroenkae-2693208.jpg');
    background-color: var(--dark-green);
}

.shot-item:nth-child(3) .shot-image {
    background-image: url('./img/set3/pexels-mahmoudramadan-31216390.jpg');
    background-color: var(--text-dark);
}

.shot-text {
    padding: 2rem;
    background-color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 0;
}

.shot-item:hover .shot-text {
    background-color: var(--neon-green);
    color: var(--dark-green);
}

.shot-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.shot-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    opacity: 1;
    transition: color 0.3s ease;
}

.shot-item:hover .shot-text h3,
.shot-item:hover .shot-text p {
    color: var(--dark-green);
}

.shot-item:hover .shot-image {
    background-color: var(--neon-green);
    filter: brightness(1.1);
}

/* Responsive Design for Workshop Boxes */
@media (max-width: 1200px) {
    .shots-content {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .shots-content {
        width: 85%;
    }
    
    .shot-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .shot-text {
        padding: 1.5rem;
    }

    .shot-text h3 {
        font-size: 1.2rem;
    }

    .shot-text p {
        font-size: 0.9rem;
    }
}

/* Chat Interface Styles */
.chat-section {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    width: auto;
    padding: 0;
}

.chat-container {
    width: 400px;
    height: 60px;
    margin: 0;
    background-color: var(--dark-green);
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: none;
}

.chat-container:focus-within {
    height: 400px;
    border-radius: 20px;
}

.chat-messages {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.chat-container:focus-within .chat-messages {
    display: block;
    opacity: 1;
}

.message {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
}

.message.user {
    align-items: flex-end;
}

.message.bot {
    align-items: flex-start;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    max-width: 85%;
    color: var(--dark-green);
}

.message.user .message-content {
    background-color: var(--neon-green);
}

.message.bot .message-content {
    background-color: var(--bg-gray);
}

.chat-input-container {
    min-height: 60px;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
}

.chat-input {
    flex-grow: 1;
    border: none;
    padding: 0.75rem;
    background-color: transparent;
    color: var(--neon-green);
    resize: none;
    font-family: inherit;
    font-size: 1rem;
    width: 320px;
    margin-left: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-input::placeholder {
    color: var(--neon-green);
    opacity: 0.5;
}

.chat-input:focus {
    outline: none;
}

.send-button {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border: none;
    border-radius: 30px;
    background-color: transparent;
    color: var(--neon-green);
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.send-button:hover {
    color: var(--neon-green);
    transform: scale(1.1);
}

/* Selection effect */
.highlight-select::selection {
    background-color: #d8ff85;
    color: var(--dark-green);
}

.highlight-select::-moz-selection {
    background-color: #d8ff85;
    color: var(--dark-green);
}

/* Global selection style */
::selection {
    background-color: rgba(216, 255, 133, 0.3);
    color: inherit;
}

::-moz-selection {
    background-color: rgba(216, 255, 133, 0.3);
    color: inherit;
}

/* Permanent highlight effect */
.permanent-highlight {
    position: relative;
    display: inline-block;
    transform: rotate(-2deg);
    padding: 0 0.2em;
    color: var(--dark-green);
    font-weight: inherit;
    mix-blend-mode: darken;
}

.permanent-highlight::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #d8ff85;
    z-index: -1;
    transform: rotate(0deg);
}

/* Override selection styles for permanent highlight */
.permanent-highlight::selection {
    background-color: transparent;
    color: var(--dark-green);
}

.permanent-highlight::-moz-selection {
    background-color: transparent;
    color: var(--dark-green);
}

@media (max-width: 768px) {
    .chat-section {
        bottom: 1.5rem;
        right: 1.5rem;
        z-index: 10001;
    }
    
    .chat-container {
        width: calc(100vw - 3rem);
    }
    
    .chat-container:focus-within {
        height: 50vh;
    }
}

.message.loading .message-content {
    display: flex;
    align-items: center;
    gap: 4px;
}

.message.loading .message-content::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: currentColor;
    border-radius: 50%;
    animation: loadingDots 1.4s infinite ease-in-out both;
}

.message.loading .message-content::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: currentColor;
    border-radius: 50%;
    animation: loadingDots 1.4s infinite ease-in-out both;
    animation-delay: 0.2s;
}

.message.loading .message-content span {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: currentColor;
    border-radius: 50%;
    animation: loadingDots 1.4s infinite ease-in-out both;
    animation-delay: 0.4s;
}

@keyframes loadingDots {
    0%, 80%, 100% { 
        transform: translateY(0);
    }
    40% { 
        transform: translateY(-8px);
    }
}

/* About & Services Section */
.about-services-section {
    position: relative;
    padding: 12rem 0;
    background-color: var(--bg-gray);
    color: var(--text-dark);
    z-index: 2;
}

.about-services-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.service-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.service-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    opacity: 0.8;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background-color: var(--dark-green);
    color: var(--neon-green);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    cursor: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10000;
    outline: none;
}

/* Desktop transform animation */
@media (min-width: 769px) {
    .scroll-top-btn {
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .scroll-top-btn.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile - no animations at all */
@media (max-width: 768px) {
    .scroll-top-btn {
        top: 1.5rem;
        right: 1.5rem;
        left: auto;
        bottom: auto;
        width: auto;
        height: auto;
        min-width: 120px;
        min-height: 48px;
        max-width: 90vw;
        max-height: 56px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        z-index: 10002;
        transform: none;
        transition: none;
        box-sizing: border-box;
        border-radius: 50px;
        display: inline-block;
        white-space: nowrap;
    }
    .scroll-top-btn.visible {
        opacity: 1;
        transform: none;
    }
}

.scroll-top-btn:hover {
    background-color: var(--neon-green);
    color: var(--dark-green);
}

.scroll-top-btn:focus {
    outline: none;
}

.vertical-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.vertical-line {
    position: absolute;
    width: 4px;
    background-color: var(--neon-green);
    opacity: 0.15;
    transition: transform 0.3s ease-out;
    pointer-events: auto;
    cursor: none;
    top: 50%;
    transform: translateY(-50%);
}

.vertical-line.game-active {
    opacity: 0.8;
    animation: none;
}

.vertical-line.caught {
    opacity: 0.3;
    transform: scaleY(0.1) !important;
    transition: all 0.3s ease-out;
}

.vertical-line.player-line {
    background-color: var(--neon-green);
    opacity: 1 !important;
    box-shadow: 0 0 20px var(--neon-green);
    z-index: 3;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: left 0.1s ease-out, top 0.1s ease-out;
}

.vertical-line.obstacle {
    background-color: var(--neon-green);
    opacity: 0.9;
    box-shadow: 0 0 10px var(--neon-green);
    z-index: 2;
    transition: all 0.05s linear;
    transform-origin: center center;
}

.game-score {
    position: fixed;
    top: 2rem;
    right: 2rem;
    color: var(--neon-green);
    font-size: 2rem;
    font-weight: 600;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 10px rgba(195, 255, 102, 0.5);
}

.game-score.visible {
    opacity: 1;
}

.game-over {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--neon-green);
    font-size: 3rem;
    font-weight: 600;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    text-shadow: 0 0 10px rgba(195, 255, 102, 0.5);
    background-color: rgba(30, 51, 41, 0.9);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--neon-green);
}

.game-over.visible {
    opacity: 1;
}

.game-over button {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background-color: var(--dark-green);
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
    border-radius: 30px;
    font-family: inherit;
    font-size: 1.2rem;
    cursor: none;
    transition: all 0.3s ease;
}

.game-over button:hover {
    background-color: var(--neon-green);
    color: var(--dark-green);
}

.game-instructions {
    position: fixed;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    color: var(--neon-green);
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 10px rgba(195, 255, 102, 0.5);
    background-color: rgba(30, 51, 41, 0.9);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--neon-green);
    max-width: 300px;
}

.game-instructions.visible {
    opacity: 1;
}

.game-instructions h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--neon-green);
    text-align: center;
}

.game-instructions p {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.game-instructions p:last-child {
    margin-top: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.game-score {
    display: none;
} 

.linkedin-box:hover .cursor__ball--big,
.linkedin-box:hover .cursor__ball--small,
.linkedin-content:hover .cursor__ball--big,
.linkedin-content:hover .cursor__ball--small {
    background-color: #ff0000 !important;
} 

@keyframes pulsate {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.pulsate {
    animation: pulsate 0.8s ease-in-out 3;
    display: inline-block;
    transform-origin: center;
    will-change: transform, opacity;
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-green);
    color: white;
    padding: 4rem 6rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-green);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 3rem 2rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-column h3 {
        font-size: 1.3rem;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }
}

.hero-section.fixed-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
}

.fixed-header.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Workshop Subsections */
.workshop-subsection {
    margin-bottom: 4rem;
}

.workshop-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 2rem;
    text-align: center;
}

/* Google Fonts Consent Alert - Commented out for later use
.fonts-consent-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    font-family: Arial, sans-serif;
}

.fonts-consent-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.fonts-consent-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.fonts-consent-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.fonts-consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--neon-green);
}

.fonts-consent-checkbox label {
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
}

.fonts-consent-button {
    background-color: var(--neon-green);
    color: var(--dark-green);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.fonts-consent-button:hover {
    background-color: var(--dark-green);
    color: white;
    transform: translateY(-2px);
}

.fonts-consent-button:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none;
}

.fonts-consent-button.decline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid #ccc;
}

.fonts-consent-button.decline:hover {
    background-color: #f5f5f5;
    color: var(--text-dark);
}

.fonts-consent-alert.hidden {
    display: none;
}
*/ 

.calendly-link {
  color: var(--dark-green);
  font-weight: bold;
  text-decoration: underline;
} 