/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-image: linear-gradient( 85.2deg,  rgba(33,3,40,1) 7.5%, rgba(65,5,72,1) 88.7% );
    color: #fff;
    padding: 1em 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.logo {
    height: 60px;
}

.header-buttons {
    display: flex;
    gap: 1em;
}

.button {
    background: #fff;
    color: #004d00;
    padding: 0.5em 1em;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.button:hover {
    background: #e6e6e6;
}

aside{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-image: linear-gradient( 180deg,  rgba(249,249,249,0.1) 60%, rgba(249,249,249,1) 100% ), url('../pml_backgound.jpg');
    background-size: cover;
}

h1 {
    color: antiquewhite;
    text-shadow: 4px 4px 10px rgba(33,3,40,1);
    text-align: center;
    margin: 0 0;
    font-size: 4em;
}

main {
    max-width: 1200px;
    margin: 2em auto;
    padding: 0 1.5em;
}

section {
    margin-bottom: 2em;
    padding: 1.5em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 0.5em;
    color: #004d00;
}

p {
    margin-bottom: 1em;
    line-height: 1.6;
}

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

ul li {
    margin-bottom: 0.5em;
}

a {
    color: #004d00;
    text-decoration: none;
}

.radio-switch-container {
    display: flex;
    gap: 20px;
}

.radio-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.radio-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #007bff;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Ensures only one radio switch can be selected at a time */
input[type="radio"] + .slider:before {
    background-color: white;
    transition: .4s;
}

input[type="radio"]:checked + .slider {
    background-color: #007bff;
}

input[type="radio"]:checked + .slider:before {
    transform: translateX(26px);
}

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

footer {
    background-image: linear-gradient( 85.2deg,  rgba(33,3,40,1) 7.5%, rgba(65,5,72,1) 88.7% );
    color: #fff;
    text-align: center;
    padding: 1em 0;
    /*position: fixed;
    bottom: 0;*/
    width: 100%;
}

footer p {
    margin: 0.5em 0;
}

@media screen and (max-width: 720px) {
    h1 {
        color: antiquewhite;
        text-shadow: 4px 4px 10px rgba(33,3,40,1);
        text-align: center;
        margin: 0 0;
        font-size: 2.5em;
    }
}