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


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

.container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;

}

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


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

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

.nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.5s ease, font-weight 0.5s ease;
    letter-spacing: 1px;
}

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

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

}

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

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

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

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

/* Social icons */
.actions {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
    filter: invert(1);
    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;
    background-color: white;
    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;
}

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

/* Responsive */
@media (max-width: 960px) {
    .nav, .actions {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

/* 

Footer START

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

}

.footer-container {
    max-width: 100%;
    margin: 30px 150px 30px 0px;  
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.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;
    }
    .footer-center {
        margin-left: 0;
    }
    .mainframe {
        margin: 20px;
    }
}
/* 

Footer END

*/