/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}

header h1 {
    font-size: 24pt;
    margin: 0;
}

header h1 span {
    font-size: 36pt;
    color: #ffcc00;
}

header h2 {
    font-size: 18pt;
    margin-top: 10px;
    color: #ffcc00;
}

nav {
    background-color: #444;
    text-align: center;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14pt;
}

nav ul li a:hover {
    color: #ffcc00;
}

main {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

main h2 {
    text-align: center;
    font-size: 20pt;
    margin-bottom: 20px;
}

main p {
    font-size: 14pt;
    line-height: 1.6;
}

main ul {
    font-size: 14pt;
    line-height: 1.6;
    list-style-type: disc;
    padding-left: 20px;
}

.image-row {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.image-row img {
    width: 32%;
    height: auto;
    border: 1px solid #ccc;
    padding: 5px;
    background-color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .image-row img {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .image-row img {
        width: 100%;
        margin-bottom: 10px;
    }
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

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

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


/* Active link in the navigation */
nav ul li a.active {
    background-color: #ffcc00; /* Highlight color */
    color: #333; /* Text color when active */
    border-radius: 5px; /* Optional: rounded corners for the active link */
    padding: 10px 15px; /* Optional: adjust padding to fit the highlight */
}



#cookieConsentPopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#cookieConsentPopup h3 {
    margin-top: 0;
}

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

.popup-btn {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    margin: 5px;
}

.popup-btn:hover {
    background-color: #ffcc00;
}




/* Contact Form Styling */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

form textarea {
    resize: vertical;
}

form button[type="submit"] {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button[type="submit"]:hover {
    background-color: #45a049;
}

.success-message {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #e6ffe6;
    border: 1px solid #4CAF50;
    color: #333;
    border-radius: 5px;
    text-align: center;
}

.error-message {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #ffe6e6;
    border: 1px solid #ff0000;
    color: #333;
    border-radius: 5px;
    text-align: center;
}






/* General styles for the menu */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 14pt;
    padding: 10px;
    display: inline-block;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Hide the menu initially on mobile */
        flex-direction: column;
        align-items: center;
        background-color: #333;
        position: absolute;
        top: 60px;
        width: 100%;
        padding: 0;
    }

    nav ul.show {
        display: flex; /* Show the menu when it's toggled */
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    /* Hamburger icon */
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        z-index: 9999;
    }

    .menu-toggle div {
        width: 30px;
        height: 3px;
        background-color: white;
        margin: 6px 0;
    }
}

/* Desktop view - ensure the hamburger is hidden */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}

/* Center and resize images */

/* General image styling for subpages */
figure {
    text-align: center;
}

figure img {
    max-width: 300px;
    width: 100%;
    height: auto;
}






/* Page title only visible on mobile */
.mobile-title {
    display: none; /* Hidden by default */
}

/* Show the page title on mobile devices */
@media (max-width: 768px) {
    .mobile-title {
        display: block;
        font-size: 18px;
        text-align: center;
        color: #333;
        margin-top: 15px;
    }
}

