/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari, and Edge */
html::-webkit-scrollbar {
    display: none;
}

/* HEADER */
header {
    background-color: white;
    padding: 15px 0;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    box-sizing: border-box;
}

/* Logo */
.logo {
    height: 80px;
    max-width: 100%;
}

/* Desktop Navigation */
nav {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav ul li a {
    color: #A2195B;
    text-decoration: none;
    font-weight: bold;
}

/* Desktop Donate Button */
.donate-button {
    background-color: #A2195B;
    color: white;
    padding: 20px 30px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: bold;
}

/* Hide Desktop Donate on Mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: #A2195B;
    margin: 5px;
}

/* Mobile Menu */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: white;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-nav.active {
    display: flex;
}

/* Itens do menu */
.mobile-nav li {
    padding: 10px 0;
    list-style: none;
}

/* Links do menu */
.mobile-nav a {
    color: #A2195B;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

/* Button inside dropdown menu */
.mobile-donate {
    display: block;
    width: 40%;
    margin: 10px auto;
    padding: 12px 10px;
    background-color: #A2195B;
    color: white !important;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
}

/* Response*/
@media (max-width: 768px) {
    nav ul {
        display: none; /* Esconde o menu normal */
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: none;
    }

    .mobile-nav.active {
        display: flex;
    }
}

/* Footer */
footer {
    background-color: #A2195B;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Footer Content */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    overflow-wrap: break-word; /* Prevents text from overflowing */
    white-space: normal; /* Ensures text can wrap */
}

/* Responsive tweaks for smaller screens */
@media (max-width: 768px) {
    footer {
        padding: 15px;
        font-size: 10px;
    }
}