/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    /* Light grey background */
    text-align: center;
    font-size: 16px;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button */
.dropbtn {
    background-color: #d32f2f;
    color: white;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(211, 3, 3);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Show the dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}


/* Marquee section */
.marquee {
    background-color: #d32f2f;
    /* Dark red background for marquee */
    color: white;
    font-size: 24px;
    padding: 10px 0;
    margin-bottom: 20px;
}

/* Slideshow section */
.slideshow-container {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.mySlides {
    display: none;
}

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

/* Fade animation */
.fade {
    animation: fade 2s;
}

@keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

/* Text sections */
.team-description,
.class-info,
.reasons,
.text-section {
    background-color: #ffffff;
    /* White background for text sections */
    padding: 30px;
    /* Increased padding */
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #333;
    /* Dark text color */
    font-size: 18px;
    /* Increased font size for text */
    line-height: 1.6;
    /* Increased line height for readability */
}

.team-description h2,
.class-info h2,
.reasons h2,
.text-section h2 {
    color: #d32f2f;
    /* Red color for headings */
    font-size: 28px;
    /* Larger font size for headings */
    margin-bottom: 20px;
    /* Spacing below headings */
}

.reasons ol {
    margin: 0;
    padding: 0;
    list-style-position: inside;
}

.reasons li {
    margin-bottom: 15px;
}

/* Photo gallery section */
.photo-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px;
}

.photo-gallery img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Large image section */
.large-image {
    margin: 30px auto;
    max-width: 800px;
}

.large-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Navbar section */
.navbar {
    display: flex;
    justify-content: center;
    background-color: #d32f2f;
    /* Dark red background for navbar */
    padding: 10px 0;
}

.navbar a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
}

.navbar a:hover {
    background-color: #f44336;
    /* Lighter red on hover */
    color: white;
}

/* Footer section */
.site-footer {
    background-color: #2c2929;
    /* Dark background color for footer */
    color: white;
    padding: 100px 0;
    /* Space inside the footer */
    text-align: center;
    /* Center align the text */
    margin-top: 30px;
    /* Space above the footer */
}

.site-footer p {
    font-size: 16px;
    /* Standard text size for the main content */
    margin: 0;
}

.site-footer small {
    display: block;
    /* Make it start on a new line */
    font-size: 12px;
    /* Smaller text size */
    margin-top: 10px;
    /* Space above the small text */
}

/* Responsive styles */
@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    .container {
        width: 100%;
        padding: 10px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    body {
        font-size: 16px;
    }

    .container {
        width: 80%;
        margin: 0 auto;
    }
}

@media (min-width: 1025px) {
    body {
        font-size: 18px;
    }

    .container {
        width: 70%;
        margin: 0 auto;
    }
}
