* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: url('web_assets/gea_wordings.png') center center / cover no-repeat fixed,
                linear-gradient(135deg, #e8e0f0 0%, #d5c8e0 50%, #c4b5d8 100%);
    min-height: 100vh;
    position: relative;
}

/* Left Side Full Height Menu */
.left-full-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 400px;
    height: 100vh;
    background: #000000;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-full-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.left-full-menu-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 350px;
    height: 60px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    gap: 1.5rem;
    padding: 0 2rem;
}

.menu-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: url('web_assets/gold_gradient.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    line-height: 1;
    color: #000000;
}

.menu-text {
    font-size: 1.5625rem;
    font-weight: 400;
    text-align: left;
    line-height: 1;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.left-full-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.left-full-menu-link:hover .menu-icon {
    transform: scale(1.2);
}

.left-full-menu-link:hover .menu-text {
    transform: scale(1.1);
}

/* Tooltip styles */
.left-full-menu-link::after {
    content: attr(title);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    margin-left: 1rem;
    z-index: 1000;
}

.left-full-menu-link:hover::after {
    opacity: 1;
}

/* Menu Trigger - Hamburger */
.menu-trigger {
    position: fixed;
    right: 2rem;
    top: 2rem;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
    padding: 10px;
    transition: all 0.3s ease;
}

.menu-trigger .bar {
    width: 30px;
    height: 3px;
    background: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-trigger:hover .bar {
    background: #333333;
}

.menu-trigger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.menu-trigger.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-trigger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    background: linear-gradient(135deg, 
                rgba(232, 224, 240, 0.95) 0%, 
                rgba(213, 200, 224, 0.97) 50%, 
                rgba(196, 181, 216, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 100;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3),
                inset 1px 0 1px rgba(255, 215, 0, 0.1);
    border-left: 1px solid rgba(255, 215, 0, 0.2);
    clip-path: circle(0% at top right);
    transition: clip-path 0.6s ease-in-out;
}

.nav-menu.active {
    clip-path: circle(150% at top right);
}

.nav-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, 
                rgba(255, 215, 0, 0.08) 0%, 
                transparent 50%);
    pointer-events: none;
}

.nav-list {
    list-style: none;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.nav-item {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    color: #000000;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #333333;
    padding-left: 2.5rem;
}

.arrow {
    font-size: 0.8rem;
    color: #000000;
    transition: transform 0.3s ease;
}

.has-dropdown.active .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    background: linear-gradient(to right,
                rgba(213, 200, 224, 0.5),
                rgba(196, 181, 216, 0.6));
    transition: max-height 0.4s ease;
    border-left: 2px solid rgba(255, 215, 0, 0.15);
}

.has-dropdown.active .dropdown-menu,
.language-selector.active .dropdown-menu {
    max-height: 600px;
}

.dropdown-link {
    display: block;
    padding: 1rem 2rem 1rem 3rem;
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #333333;
    border-left-color: #FFD700;
    padding-left: 3.5rem;
}

.flag {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .left-full-menu {
        display: none;
    }

    .nav-menu {
        width: 100vw;
    }

    .nav-menu.active {
        clip-path: circle(150% at top right);
    }

    .menu-trigger {
        right: 1rem;
        top: 1rem;
        width: 45px;
        height: 45px;
    }

    .menu-trigger .bar {
        width: 25px;
        height: 2.5px;
    }

    .main-container.menu-open {
        transform: translateX(-100vw);
    }

    .content-section.menu-open {
        transform: translateX(-100vw);
    }
}

/* Main container with circles */
.main-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s ease, opacity 0.8s ease;
    z-index: 10;
}

.main-container.menu-open {
    transform: translateX(-50vw);
}

.main-container.section-active {
    transform: translateX(-100vw);
}

.main-container.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.main-container.hidden.menu-open {
    transform: translateX(-50vw) scale(0.8);
}

/* Center circle */
.center-circle {
    position: relative;
    width: clamp(160px, 24vw, 320px);
    height: clamp(160px, 24vw, 320px);
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.8), 
                0 0 100px rgba(255, 215, 0, 0.5),
                0 15px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.8s ease;
    z-index: 2;
    animation: pulse 3s ease-in-out infinite;
}

.center-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.9), 
                0 0 120px rgba(255, 215, 0, 0.6),
                0 15px 50px rgba(0, 0, 0, 0.4);
}

.main-container.section-active .center-circle {
    animation: none;
    opacity: 0;
    pointer-events: none;
}

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

/* Orbit container */
.orbit-container {
    position: absolute;
    width: clamp(360px, 52vw, 640px);
    height: clamp(360px, 52vw, 640px);
    animation: rotate 180s linear infinite;
    transition: all 0.8s ease;
}

.main-container.section-active .orbit-container {
    animation: verticalCarousel 24s linear infinite;
    width: 200px;
    height: auto;
    left: 2rem;
    top: 0;
    transform: translateX(100vw);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

@keyframes verticalCarousel {
    0% {
        transform: translateY(0) translateX(100vw);
    }
    100% {
        transform: translateY(calc(-100% + 100vh)) translateX(100vw);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Orbiting circles */
.orbit-circle {
    position: absolute;
    width: clamp(80px, 12vw, 128px);
    height: clamp(80px, 12vw, 128px);
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.8s ease;
    top: 50%;
    left: 50%;
    margin-left: calc(clamp(80px, 12vw, 128px) / -2);
    margin-top: calc(clamp(80px, 12vw, 128px) / -2);
}

.orbit-circle:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.main-container.section-active .orbit-circle {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0;
    left: 0;
    margin: 0;
    transform: none !important;
}

.main-container.section-active .orbit-circle:hover {
    transform: scale(1.1) !important;
}

/* Counter-rotation for each circle content to keep images upright */
.orbit-circle:nth-child(1) .circle-content {
    animation: counter-rotate-1 180s linear infinite;
}

.orbit-circle:nth-child(2) .circle-content {
    animation: counter-rotate-2 180s linear infinite;
}

.orbit-circle:nth-child(3) .circle-content {
    animation: counter-rotate-3 180s linear infinite;
}

.orbit-circle:nth-child(4) .circle-content {
    animation: counter-rotate-4 180s linear infinite;
}

.orbit-circle:nth-child(5) .circle-content {
    animation: counter-rotate-5 180s linear infinite;
}

.orbit-circle:nth-child(6) .circle-content {
    animation: counter-rotate-6 180s linear infinite;
}

.orbit-circle:nth-child(7) .circle-content {
    animation: counter-rotate-7 180s linear infinite;
}

.orbit-circle:nth-child(8) .circle-content {
    animation: counter-rotate-8 180s linear infinite;
}

/* Stop animations when section is active */
.main-container.section-active .orbit-circle .circle-content {
    animation: none !important;
}

@keyframes counter-rotate-1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes counter-rotate-2 {
    from { transform: rotate(-45deg); }
    to { transform: rotate(-405deg); }
}

@keyframes counter-rotate-3 {
    from { transform: rotate(-90deg); }
    to { transform: rotate(-450deg); }
}

@keyframes counter-rotate-4 {
    from { transform: rotate(-135deg); }
    to { transform: rotate(-495deg); }
}

@keyframes counter-rotate-5 {
    from { transform: rotate(-180deg); }
    to { transform: rotate(-540deg); }
}

@keyframes counter-rotate-6 {
    from { transform: rotate(-225deg); }
    to { transform: rotate(-585deg); }
}

@keyframes counter-rotate-7 {
    from { transform: rotate(-270deg); }
    to { transform: rotate(-630deg); }
}

@keyframes counter-rotate-8 {
    from { transform: rotate(-315deg); }
    to { transform: rotate(-675deg); }
}

/* Position each orbiting circle (8 circles, 45 degrees apart) */
.orbit-circle:nth-child(1) {
    transform: rotate(0deg) translateX(clamp(144px, 20.8vw, 256px));
}

.orbit-circle:nth-child(2) {
    transform: rotate(45deg) translateX(clamp(144px, 20.8vw, 256px));
}

.orbit-circle:nth-child(3) {
    transform: rotate(90deg) translateX(clamp(144px, 20.8vw, 256px));
}

.orbit-circle:nth-child(4) {
    transform: rotate(135deg) translateX(clamp(144px, 20.8vw, 256px));
}

.orbit-circle:nth-child(5) {
    transform: rotate(180deg) translateX(clamp(144px, 20.8vw, 256px));
}

.orbit-circle:nth-child(6) {
    transform: rotate(225deg) translateX(clamp(144px, 20.8vw, 256px));
}

.orbit-circle:nth-child(7) {
    transform: rotate(270deg) translateX(clamp(144px, 20.8vw, 256px));
}

.orbit-circle:nth-child(8) {
    transform: rotate(315deg) translateX(clamp(144px, 20.8vw, 256px));
}

/* Circle content */
.circle-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}

.circle-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.center-circle .circle-content {
    padding: 0;
    width: 100%;
    height: 100%;
}

.center-circle .circle-content img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.15);
    transition: all 0.3s ease;
}

/* Content sections */
.content-section {
    position: fixed;
    top: 0;
    left: 100vw;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: left 0.8s ease, opacity 0.8s ease;
    z-index: 5;
    background: url('web_assets/wellbeing.jpg') center center / cover no-repeat fixed,
                linear-gradient(135deg, #e8e0f0 0%, #d5c8e0 50%, #c4b5d8 100%);
}

.content-section.active {
    left: 0;
    opacity: 1;
    pointer-events: all;
}

.section-content {
    background: white;
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    width: 600px;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.6s ease;
    animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
    from {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.content-section.active .section-content {
    transform: scale(1);
}

.section-content h1 {
    color: #667eea;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-content p {
    color: #555;
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.6;
}

.back-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.back-button:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .orbit-container {
        width: clamp(350px, 85vw, 500px);
        height: clamp(350px, 85vw, 500px);
    }

    .center-circle {
        width: clamp(140px, 35vw, 200px);
        height: clamp(140px, 35vw, 200px);
    }

    .orbit-circle {
        width: clamp(70px, 18vw, 100px);
        height: clamp(70px, 18vw, 100px);
        margin-left: calc(clamp(70px, 18vw, 100px) / -2);
        margin-top: calc(clamp(70px, 18vw, 100px) / -2);
    }

    .orbit-circle:nth-child(1),
    .orbit-circle:nth-child(2),
    .orbit-circle:nth-child(3),
    .orbit-circle:nth-child(4),
    .orbit-circle:nth-child(5),
    .orbit-circle:nth-child(6),
    .orbit-circle:nth-child(7),
    .orbit-circle:nth-child(8) {
        transform-origin: center;
    }

    .orbit-circle:nth-child(1) { transform: rotate(0deg) translateX(clamp(140px, 36vw, 200px)); }
    .orbit-circle:nth-child(2) { transform: rotate(45deg) translateX(clamp(140px, 36vw, 200px)); }
    .orbit-circle:nth-child(3) { transform: rotate(90deg) translateX(clamp(140px, 36vw, 200px)); }
    .orbit-circle:nth-child(4) { transform: rotate(135deg) translateX(clamp(140px, 36vw, 200px)); }
    .orbit-circle:nth-child(5) { transform: rotate(180deg) translateX(clamp(140px, 36vw, 200px)); }
    .orbit-circle:nth-child(6) { transform: rotate(225deg) translateX(clamp(140px, 36vw, 200px)); }
    .orbit-circle:nth-child(7) { transform: rotate(270deg) translateX(clamp(140px, 36vw, 200px)); }
    .orbit-circle:nth-child(8) { transform: rotate(315deg) translateX(clamp(140px, 36vw, 200px)); }
}

@media (max-width: 480px) {
    .section-content {
        padding: 1.5rem;
    }

    .back-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

