@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;700&display=swap');

body {
    font-family: 'Crimson Text', serif; /* Changed font to Crimson Text */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #000000; /* Pitch black */
    color: #ffffff; /* White */
}

header {
    background: #000000; /* Pitch black */
    color: #FFFFFF; /* White */
    padding: 1rem 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

nav ul li a {
    color: #FFFFFF; /* White */
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #000000; /* Pitch black */
    color: #FFFFFF; /* White */
    border-radius: 8px;
    box-shadow: none; /* Remove shadow for simplicity */
}

h2 {
    color: #FFFFFF; /* White */
    margin-bottom: 1rem;
}

ul {
    list-style: disc;
    padding-left: 1.5rem;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #000000; /* Pitch black */
    color: #FFFFFF; /* White */
    margin-top: 2rem;
}

footer p {
    margin: 0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: none; /* Remove shadow */
}

.download-button {
    display: inline-block;
    padding: 0.6em 1.2em; /* Standardized padding */
    margin: 10px 0;
    background-color: #007bff; /* Common blue */
    color: #FFFFFF; /* White text */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none; /* Remove default border */
    transition: background-color 0.3s ease; /* Smooth hover transition */
}

.download-button:hover {
    background-color: #007bff; /* Darker blue on hover */
    color: #FFFFFF; /* Keep white text */
    text-decoration: none;
    transform: scale(1.1);
}

a {
    color: #FFFFFF; /* White */
}

a:hover {
    color: #FFFFFF; /* Keep white */
}

/* Ensure all elements have a black background and white text */
body, header, nav, main, section, footer, .gallery { /* MODIFIED: .download-button removed from this global override */
    background-color: #000000 !important; /* Force black background */
    color: #FFFFFF !important; /* Force white text */
}

/* Adjust links to ensure they remain white */
a {
    color: #FFFFFF !important;
}

a:hover {
    color: #FFFFFF !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    main {
        padding: 1rem;
    }

    section {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }

    nav ul li a {
        font-size: 0.9rem;
    }

    main {
        padding: 0.5rem;
    }

    section {
        padding: 0.5rem;
    }
}

        .contact-box {
            margin-top: 2rem;
            padding: 1.5rem;
            border: 2px solid #ffffff;
            border-radius: 15px;
            background-color: #000; /* Changed background to black */
            color: #fff; /* Adjusted text color to white for better contrast */
            text-align: center;
            font-size: 1rem;
        }

        .contact-box a {
            color: #000;
            text-decoration: none;
            font-weight: bold;
        }

        .contact-box a:hover {
            text-decoration: underline;
        }