* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body,
html {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Header styles */
header {
    background-color: #4f46e5;
    /* Vibrant Indigo color */
    color: white;
    padding: 1em 5%;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-size: 1.8rem;
}

/* Navigation styles */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffd700;
    /* Gold hover color */
}

/* Main content styles */
main {
    padding: 2em 5%;
    background: #E5E5E5;
    color: #333;
}

section {
    margin-bottom: 2em;
}

section h2 {
    color: #4f46e5;
    margin-bottom: 1rem;
}

ul {
    list-style-position: inside;
    padding-left: 1rem;
}

/* Gallery styles */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding-bottom: 2rem;
}

.gallery-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Donate Button styles */
.donate-button {
    background-color: #FFD700;
    /* Gold color */
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
    font-weight: bold;
}

/* Account Deletion styles */
#account-deletion {
    background-color: #fff;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 2em;
}

#account-deletion h2 {
    color: #D32F2F;
    /* Red color to signify caution */
    margin-bottom: 0.5rem;
}

.email-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: bold;
}

.email-link:hover {
    text-decoration: underline;
}

/* Footer styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive: Gallery & Nav */
@media screen and (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        display: none;
        position: absolute;
        background-color: #4f46e5;
        right: 0;
        top: 60px;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul.is-active {
        display: flex;
    }

    nav ul li {
        margin: 0;
    }

    nav a {
        padding: 10px;
        display: block;
        width: 100%;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        grid-column: span 2;
        /* Full width images on smaller screens */
    }
}

/* Hamburger Menu Icon */
.nav-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background-color: white;
    height: 2px;
    width: 25px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.hamburger::before {
    transform: translateY(-8px);
}

.hamburger::after {
    transform: translateY(6px);
}

.nav-toggle.is-active .hamburger {
    transform: rotate(135deg);
}

.nav-toggle.is-active .hamburger::before {
    opacity: 0;
}

.nav-toggle.is-active .hamburger::after {
    transform: translateY(-6px) rotate(-270deg);
}

@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block;
        /* Show hamburger on mobile */
    }
}