/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #2c3e50; /* Dark background */
    color: #fff; /* Light text for contrast */
}

header {
    background-color: #1a252f; /* Slightly darker header */
    color: #fff;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.logo {
    max-width: 40%;
    height: auto;
    margin-left: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8)) 
            drop-shadow(0 0 40px rgba(255, 255, 255, 0.6));
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 1)) 
            drop-shadow(0 0 60px rgba(255, 255, 255, 0.8));
}

.header-text {
    max-width: 50%;
    text-align: left;
    font-size: 1.1em;
}

.header-text h1 {
    margin: 0;
    font-size: 2rem; /* Smaller font size for mobile */
    color: #f7db16; /* Yellow for contrast */
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: #ecf0f1; /* Light gray for subtlety */
}

.btn {
    display: inline-block;
    background-color: #892217;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #c0392b; /* Darker red on hover */
}

.content {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

h2 {
    color: #f7db16; /* Yellow for headings */
    margin-top: 20px;
    font-size: 1.8rem; /* Smaller font size for mobile */
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap; /* Allow images to wrap on smaller screens */
    justify-content: space-between;
    margin-top: 20px;
}

.gallery img {
    max-width: 32%; /* Full width on small screens */
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    margin-bottom: 20px; /* Space between images */
}

.gallery img:hover {
    transform: scale(1.05);
}

footer {
    background-color: #1a252f; /* Dark footer */
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media only screen and (max-width: 768px) {
    header {
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        max-width: 80%;
        margin-left: 0; /* Adjust logo size on smaller screens */
    }

    .header-text {
        max-width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    .header-text h1 {
        font-size: 1.5rem; /* Smaller heading size */
    }

    .tagline {
        font-size: 1rem; /* Slightly smaller tagline */
    }

    .content {
        padding: 0 10px;
    }

    h2 {
        font-size: 1.5rem; /* Adjust font size for headings */
    }

    .gallery {
        flex-direction: column;
        align-items: center;
    }

    .gallery img {
        max-width: 100%; /* Ensure images take full width */
        margin-bottom: 15px;
    }

    footer {
        padding: 15px 0;
    }
}

@media only screen and (max-width: 480px) {
    .header-text h1 {
        font-size: 1.2rem; /* Further adjust font size for mobile */
    }

    .tagline {
        font-size: 0.9rem; /* Even smaller for mobile */
    }

    .btn {
        font-size: 0.9rem; /* Adjust button text size */
        padding: 8px 15px;
    }

    .content {
        padding: 0 5px;
    }

    h2 {
        font-size: 1.2rem; /* Adjust headings for smaller screens */
    }

    .gallery img {
        max-width: 100%; /* Reduce image width on very small screens */
    }

    footer {
        padding: 10px 0;
    }
}