/* Topbar */
.ragunda-topbar {
    width: 100%;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    background: var(--ragunda-topbar-bg, #1a1a1a);
    opacity: 0;
    transform: translateY(-20px);
    animation: ragundaTopbarFadeIn 0.6s ease-out forwards;
}

@keyframes ragundaTopbarFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-topbar__container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
}

.ragunda-topbar__left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(-15px);
    animation: ragundaTopbarLeftFadeIn 0.5s ease-out 0.2s forwards;
}

@keyframes ragundaTopbarLeftFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-15px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.ragunda-topbar__text {
    color: #fff;
    font-size: 12px;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
}

.ragunda-topbar__stars {
    color: #ffc107;
    font-size: 1.1em;
    margin-left: 0.5em;
    letter-spacing: 1px;
}

.ragunda-topbar__right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    opacity: 0;
    transform: translateX(15px);
    animation: ragundaTopbarRightFadeIn 0.5s ease-out 0.3s forwards;
}

@keyframes ragundaTopbarRightFadeIn {
    0% {
        opacity: 0;
        transform: translateX(15px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.ragunda-topbar__social {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ragunda-topbar__icon {
    color: #fffbe6;
    font-size: 1.1em;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    text-decoration: none;
}

.ragunda-topbar__icon:hover {
    color: #ffbd00;
    transform: scale(1.1);
}

.ragunda-topbar__icon svg {
    width: 16px;
    height: 16px;
    transition: all 0.2s ease;
}

.ragunda-topbar__icon:hover svg {
    transform: scale(1.1);
}

.ragunda-topbar__email {
    font-size: 12px;
    color: #fff;
    margin-left: 0.5em;
}

.ragunda-topbar__email a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.ragunda-topbar__email a:hover {
    color: var(--ragunda-accent, #ffc107);
}

.ragunda-topbar__icon,
.ragunda-topbar__email a {
    position: relative;
    text-decoration: none;
}

.ragunda-topbar__icon::after,
.ragunda-topbar__email a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.ragunda-topbar__icon:hover::after,
.ragunda-topbar__email a:hover::after {
    transform: scaleX(1);
}

/* Hero overlay */
.ragunda-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
}

.ragunda-header,
.ragunda-topbar {
    position: relative;
    z-index: 20;
}

/* Header */
.ragunda-header {
    background: transparent !important;
    box-shadow: none !important;
    padding: 1.5rem 0 0.5rem 0;
    position: relative;
    z-index: 100;
    opacity: 0;
    transform: translateY(-15px);
    animation: ragundaHeaderFadeIn 0.7s ease-out 0.4s forwards;
}

@keyframes ragundaHeaderFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ragunda-header__logo-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: ragundaHeaderLogoFadeIn 0.6s ease-out 0.5s forwards;
}

@keyframes ragundaHeaderLogoFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.ragunda-header__logo-link:hover {
    opacity: 0.8;
}

.ragunda-header__logo img {
    max-height: 70px;
    width: auto;
    display: block;
}

.ragunda-header__nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    opacity: 0;
    transform: translateX(20px);
    animation: ragundaHeaderNavFadeIn 0.6s ease-out 0.6s forwards;
}

@keyframes ragundaHeaderNavFadeIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.ragunda-header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.2rem;
}

.ragunda-header__menu-item {
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
    animation: ragundaHeaderMenuItemFadeIn 0.5s ease-out forwards;
}

.ragunda-header__menu-item:nth-child(1) {
    animation-delay: 0.7s;
}

.ragunda-header__menu-item:nth-child(2) {
    animation-delay: 0.8s;
}

.ragunda-header__menu-item:nth-child(3) {
    animation-delay: 0.9s;
}

.ragunda-header__menu-item:nth-child(4) {
    animation-delay: 1.0s;
}

.ragunda-header__menu-item:nth-child(5) {
    animation-delay: 1.1s;
}

.ragunda-header__menu-item:nth-child(6) {
    animation-delay: 1.2s;
}

.ragunda-header__menu-item:nth-child(7) {
    animation-delay: 1.3s;
}

@keyframes ragundaHeaderMenuItemFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ragunda-header__menu-link {
    color: var(--ragunda-menu-color, #FFFBE7);
    position: relative;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.8);
}
.ragunda-header__menu-link::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: var(--ragunda-menu-color, #FFFBE7);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.ragunda-header__menu-link:hover,
.ragunda-header__menu-link:focus,
.ragunda-header__menu-link:active,
.ragunda-header__menu-item.current-menu-item .ragunda-header__menu-link {
    color: var(--ragunda-menu-color, #FFFBE7);
}

/* CTA knop (laatste menu item) */
.ragunda-header__menu-item--cta .ragunda-header__menu-link {
    border: 2px solid #fff;
    border-radius: 12px;
    padding: 0.5rem 1.3rem;
    color: #fff;
    font-weight: 600;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.ragunda-header__menu-item--cta .ragunda-header__menu-link:hover {
    border-color: var(--ragunda-accent, #ffc107);
    color: var(--ragunda-accent, #ffc107);
    background: rgba(255,255,255,0.05);
}

.ragunda-header__menu > li:last-child > .ragunda-header__menu-link {
    border: 2px solid var(--ragunda-menu-color, #FFFBE7) !important;
    border-radius: 10px !important;
    padding: 0.6em 1.4em !important;
    background: none !important;
    color: var(--ragunda-menu-color, #FFFBE7) !important;
    font-weight: 600 !important;
    transition: border-color 0.3s, color 0.3s, background 0.3s !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.8) !important;
}
.ragunda-header__menu > li:last-child > .ragunda-header__menu-link:hover,
.ragunda-header__menu > li:last-child > .ragunda-header__menu-link:focus {
    border-color: var(--ragunda-menu-color, #FFFBE7) !important;
    color: #222 !important;
    background: #fffbe6 !important;
}

.ragunda-header__menu > li:last-child > .ragunda-header__menu-link::after {
    display: none !important;
}

.ragunda-header__menu-link::after {
    /* standaard underline kleur */
    background: var(--ragunda-menu-color, #FFFBE7);
}
.ragunda-header__menu-link:hover::after,
.ragunda-header__menu-link:focus::after {
    transform: scaleX(1);
}
.ragunda-header__menu-item.current-menu-item:not(:last-child) .ragunda-header__menu-link::after {
    background: #ffbd00 !important;
    transform: scaleX(1);
}

.ragunda-topbar__icon:hover,
.ragunda-topbar__email a:hover {
    color: #fff;
}

.ragunda-topbar,
.ragunda-topbar__text,
.ragunda-topbar__email,
.ragunda-topbar__email a,
.ragunda-topbar__icon {
    color: #fffbe6 !important;
}
.ragunda-topbar__icon:hover,
.ragunda-topbar__email a:hover {
    color: #fffbe6 !important;
}

/* Body lock bij mobile menu */
body.menu-open {
    overflow: hidden;
}

/* Header scroll effect */
.ragunda-header {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1000;
    background: transparent;
}

.ragunda-header.header-hidden {
    transform: translateY(-100%);
}

/* Topbar transparant maken */
.ragunda-topbar {
    background: rgba(26, 26, 26, 0.95) !important;
}

/* Header transparant maken */
.ragunda-header {
    background: rgba(255, 251, 230, 0.98);
}

/* Hamburger menu */
.ragunda-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.ragunda-header__hamburger-line {
    height: 4px;  /* Maak de lijnen dikker */
    background-color: #fff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 5px 0;
}

.ragunda-header__hamburger.active .ragunda-header__hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ragunda-header__hamburger.active .ragunda-header__hamburger-line:nth-child(2) {
    opacity: 0;
}

.ragunda-header__hamburger.active .ragunda-header__hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu overlay */
.ragunda-header__mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.ragunda-header__mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

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

.ragunda-header__mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ragunda-header__mobile-menu-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.ragunda-header__mobile-menu.active .ragunda-header__mobile-menu-item {
    opacity: 1;
    transform: translateY(0);
}

.ragunda-header__mobile-menu-item:nth-child(1) { transition-delay: 0.1s; }
.ragunda-header__mobile-menu-item:nth-child(2) { transition-delay: 0.2s; }
.ragunda-header__mobile-menu-item:nth-child(3) { transition-delay: 0.3s; }
.ragunda-header__mobile-menu-item:nth-child(4) { transition-delay: 0.4s; }
.ragunda-header__mobile-menu-item:nth-child(5) { transition-delay: 0.5s; }
.ragunda-header__mobile-menu-item:nth-child(6) { transition-delay: 0.6s; }

.ragunda-header__mobile-menu-link {
    color: #fffbe6;
    text-decoration: none;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ragunda-header__mobile-menu-link:hover {
    color: #ffbd00;
}

.ragunda-header__mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fffbe6;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.ragunda-header__mobile-menu-close:hover {
    color: #ffbd00;
}

/* Email icoon voor mobile */
.ragunda-topbar__email-icon {
    display: none;
    width: 16px;
    height: 16px;
    fill: #fffbe6;
    transition: fill 0.2s ease;
}

.ragunda-topbar__email-icon:hover {
    fill: #ffbd00;
}

@media (max-width: 900px) {
    .ragunda-header__container, .ragunda-topbar__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .ragunda-header__menu {
        gap: 0.5rem;
    }
    .ragunda-header__logo img {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .ragunda-header {
        margin-bottom: 0;
    }
    /* Topbar mobile layout */
    .ragunda-topbar__container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 40px;
        padding: 0 1rem;
    }
    
    .ragunda-topbar__left {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .ragunda-topbar__right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .ragunda-topbar__social {
        gap: 0.6rem;
    }
    
    .ragunda-topbar__email-text {
        display: none;
    }
    
    .ragunda-topbar__email-icon {
        display: block;
    }
    
    /* Header mobile layout */
    .ragunda-header__container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        height: 70px;
    }
    
    .ragunda-header__nav {
        display: none;
    }
    
    .ragunda-header__hamburger {
        display: flex;
    }
    
    .ragunda-header__mobile-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .ragunda-topbar__container {
        padding: 0 0.5rem;
    }
    
    .ragunda-header__container {
        padding: 0 0.5rem;
    }
    
    .ragunda-topbar__text {
        font-size: 11px;
    }
    
    .ragunda-topbar__stars {
        font-size: 1em;
    }
    
    .ragunda-topbar__social {
        gap: 0.5rem;
    }
    
    .ragunda-topbar__icon {
        width: 18px;
        height: 18px;
    }
    
    .ragunda-topbar__icon svg {
        width: 14px;
        height: 14px;
    }
} 