
/* General Styles */
body {
    font-family: 'Quando', serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #ffffff; /* All text set to white */
}

h1, h2, h3 {
    color: #ffffff;
}

p {
    line-height: 1.6;
    color: #ffffff; /* Ensure all paragraph text is white */
}

/* Header Section */
.hero {
    background: url('images/hero_light.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero .overlay {
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .btn {
    background: #990040;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    border-radius: 5px;
}

/* Navigation Menu */
.menu {
    background-color: #990040;
    text-align: center;
    padding: 10px 0;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu ul li {
    display: inline;
    margin: 0 15px;
}

.menu ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
}

/* Section Styling */
.section {
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 20px;
}

#about {
    background: url('images/about_light.jpg') no-repeat center center/cover;
}

.about-large {
    padding: 150px 20px; /* Enlarged About section */
}

#services {
    background: url('images/services_light.jpg') no-repeat center center/cover;
}

.section .content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
}

.gdpr-message {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #990040;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }
}
