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

body {
    font-family: "Rubik", sans-serif;
    font-weight: lighter;

}

/* Language Bubble */
.lang-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
}

.lang-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: black;
    color: white;
}

.lang-bubble .lang-text {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: font-size 0.3s ease;
}

.lang-bubble .lang-text:hover {
    color: white;

}

/* Scrolled down state - smaller and semi-transparent */
.lang-bubble.scrolled-down {
    width: 50px;
    height: 50px;
    opacity: 0.6;
    bottom: 20px;
    right: 20px;
}

.lang-bubble.scrolled-down .lang-text {
    font-size: 14px;
}

.lang-bubble.scrolled-down:hover {
    opacity: 1;
    transform: scale(1.1);
}


/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 25px 30px;
    display: none;
    animation: slideUp 0.5s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.cookie-text p {
    font-size: 0.95em;
    color: #333;
    line-height: 1.5;
    max-width: 700px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.95em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid black;
    font-family: "Rubik", sans-serif;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: black;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-necessary,
.cookie-btn-settings {
    background-color: transparent;
    color: black;
}

.cookie-btn-necessary:hover,
.cookie-btn-settings:hover {
    background-color: black;
    color: white;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-modal-header {
    padding: 30px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h2 {
    font-size: 1.5em;
    font-weight: 600;
    color: #000;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    color: #000;
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cookie-category h4 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.cookie-category p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: black;
}

input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 960px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-modal-content {
        margin: 20px;
        max-height: 85vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body {
        padding: 20px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
        padding: 15px 20px 20px;
    }
    
    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
    .lang-bubble {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .lang-bubble .lang-text {
        font-size: 14px;
    }
    
    .lang-bubble.scrolled-down {
        width: 35px;
        height: 35px;
        bottom: 15px;
        right: 15px;
    }
    
    .lang-bubble.scrolled-down .lang-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 20px 15px;
    }
    
    .cookie-text h3 {
        font-size: 1.1em;
    }
    
    .cookie-text p {
        font-size: 0.85em;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Header styles */
.header {
    padding: 25px 30px 25px 0px;
    position: fixed;
    z-index: 1000;
    width: 100%;
    transition: all 0.5s ease;
    transform-origin: top left;
    top: 0;
}


/* Header with background on scroll */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.841);
    backdrop-filter: blur(10px);
    color: black;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    height: 60px;
    transition: all 0.5s ease;
}

.logoText{
width: 250px; left: 0;cursor:pointer;transition: all 0.5s ease;

}


.header.scrolled .logoText {
    transform: scale(0.7);
}
.header.scrolled .container {
    height: 40px;
}

/* Navigation styles */
.nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav li {
    position: relative;
}

.nav a {
    color: black;
    text-decoration: none;
    font-size: 16px;
    transition: 0.5s ease;
    font-weight: 400;
}

.nav a:hover {
    text-decoration: underline;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: black;
    font-size: 16px;
    cursor: pointer;
    transition: 0.5s ease;
    display: inline-block;
    padding: 10px 0;
    font-weight: 400;
}

.dropdown-toggle:hover {
    text-decoration: underline;
}

.dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    z-index: 1000;
    margin-top: 0;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    text-decoration: none;
}

/* Inverted colors when scrolled */
.header.scrolled .nav a {
    color: #000;
    font-weight: 350;
    letter-spacing: 0.3px;
    font-size: 15px;
}

.header.scrolled .dropdown-toggle {
    color: #000;
    font-weight: 350;
    letter-spacing: 0.3px;
    font-size: 15px;
}

.header.scrolled .nav a:hover {
    text-decoration: underline;
}

/* Donate button */
.donate-button {
    border: 2px solid black;
    border-radius: 30px;
    padding: 15px 25px;
    text-decoration: none;
    color: black;
    font-size: 18px;
    transition: all 0.5s ease;
}

.header.scrolled .donate-button {
    
    color: #000;
}

.header.scrolled .donate-button:hover {
    background-color: #000;
    color: white;
}

/* Social icons and language switcher */
.actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.lang-toggle {
    display: inline-block;
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 14px;
    border: 2px solid black;
    border-radius: 20px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    cursor: pointer;
    position: relative;
    z-index: 101;
}

.lang-toggle:hover {
    background-color: black;
    color: white;
    text-decoration: none;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 5px;
    transition: filter 0.5s ease;
}

.header.scrolled .social-icons {
    filter: invert(0);
}

.social-icons img {
    width: 16px;
    height: 16px;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: 20px;
    transition: transform 0.5s ease;
}

.header.scrolled .hamburger {
    transform: scale(0.7);
}

.hamburger span {
    width: 25px;
    height: 3px;
    border-radius: 3px;
    transition: background-color 0.5s ease;
}

.header.scrolled .hamburger span {
    background-color: #000;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 20px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
}

/* Language switcher in mobile menu */
.language-mobile {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.language-mobile a {
    display: block;
    padding: 12px 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.language-mobile a:hover {
    background-color: black;
    color: white;
}

/* Mobile dropdown */
.mobile-dropdown-toggle {
    display: block;
    padding: 8px 0;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.mobile-dropdown-toggle::after {
    content: ' ▼';
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active::after {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

.mobile-dropdown-menu.open {
    display: block;
}

.mobile-dropdown-menu li {
    margin-bottom: 10px;
}

.mobile-dropdown-menu a {
    font-size: 16px;
    color: #333;
}

/* Open mobile menu */
.mobile-menu.open {
    display: block;
}

/* Responsive */
@media (max-width: 960px) {
    .nav, .actions {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .container {
        height: 60px;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    .header.scrolled .container {
        height: 30px;
    }
}

/* 

Footer START

*/
.footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0px;
    font-family: "Rubik", sans-serif;
}

.footer-container {
    max-width: 100%;
    margin: 30px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.footer-left {
    margin-left: 20px;
}

.footer-left h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-left p {
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;

}

.footer-left a {
    color: #fff;
}

.footer-center{
    letter-spacing: 0.3px;

    margin-left: 100px;
}

.footer-center ul,
.footer-right ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li,
.footer-right ul li {
    margin-bottom: 1rem;
}

.footer-center a,
.footer-right a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition:  0.3s;
}

.footer-center a:hover,
.footer-right a:hover {
text-decoration: underline;
}

.footer-right img {
    vertical-align: middle;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    filter: invert(1);
}

/* Footer Responsive */
@media (max-width: 960px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
        margin: 20px 15px;
    }
    
    .footer-center, .footer-left, .footer-right {
        margin-left: 0;
    }
}
/* 

Footer END

*/