body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

/*navbar*/
.navbar {
    background: linear-gradient(180deg, #FFB200 0%, #FFCF00 100%);
    padding: 0.5rem 1rem;
}

.navbar-brand img {
    height: 20%; /* Adjust based on your needs */
    width: auto;
}

.support-button {
    background-color: #BF100D;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.support-button:hover {
    background-color:rgb(81, 5, 5);
}

.navbar-nav {
    align-items: flex-end;
}

.nav-link {
    color: black !important;
    font-family: 'Karma';
    font-style: normal;
    font-weight: 400;
    font-size: 90%;
    margin-left: 1.5rem;
}

.navbar-toggler {
    border-color: white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: linear-gradient(180deg, #FFB200 0%, #FFCF00 100%);
        padding: 1rem;
        text-align: center;
    }

    .nav-link {
        margin: 0.5rem 0;
    }

    .navbar-nav {
        align-items: center;
    }

    .support-button {
        display: grid;
        margin: auto;
    }
}


/* footer */

:root {
    --maroon: #300000;
    --yellow: #FFA500;
}

.footer {
    background-color: var(--maroon);
    color: white;
    padding: 2rem 0;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: flex-end;
    bottom:0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo-section {
    flex: 0 0 auto;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-text {
    color: white;
    margin: 0.5rem 0;
}

.footer-divider {
    width: 1px;
    background-color: white;
    align-self: stretch;
    margin: 0 1rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    padding-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.newsletter-section {
    width: 100%;
    margin-top: 2rem;
}

.newsletter-title {
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: bold;
}

.newsletter-form {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

.input-group {
    flex: 1;
    display: flex;
    gap: 2rem;
}

.form-field {
    flex: 1;
    position: relative;
}

.form-field input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0;
    color: white;
    font-size: 1rem;
}

.form-field input::placeholder {
    color: white;
    opacity: 0.7;
}

.right-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
}

.subscribe-btn {
    background-color: var(--yellow);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 0.9rem;
    min-width: 150px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-divider {
        width: 100%;
        height: 1px;
        margin: 1rem 0;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .right-section {
        align-items: center;
    }

    .social-icons {
        margin-bottom: 0.5rem;
    }
}