body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background: #333;
    color: #fff;
    padding: 5px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2px;
}

nav .logo {
    font-size: 150%;
    /* font-weight: bold; */
	color: #f0c60f;
	font-family: 'Text Me One';
}

nav .logo span {
	font-size: 100%;
	color: white;
    font-family: Maven Pro;  /* Set Verdana font for elements within .logo with the span tag */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

section {
    padding: 20px 0;
}

.container {
    max-width: 1200px;
    margin: 5% 5%;
	font-family: Maven Pro;
}

h1, h2, h4 {
    text-align: center;
    margin-bottom: 40px;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
	aspect-ratio: 100/33.4  /* Add a height definition */
}

/* Slides */
.mySlides {
    display: block; /* Show block for positioning */
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0; /* Hide all slides by default */
    transition: opacity 1s ease-in-out; /* Smooth transition for opacity */
}

/* Style for images */
.mySlides img {
    width: 100%;
    height: 100%; /* Maintain aspect ratio */
    display: block;
}

/* Slide text */
.text {
    color: #fff;
    font-size: 20px;
    padding: 2px 0px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
	margin-bottom: 0%;
	
}

/* Navigation arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5); /* Background color for arrows */
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots for slides */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}


/* Course Tiles */
.tile-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.tile {
    background: #f4f4f4;
    padding: 2px;
    border-radius: 8px;
    text-align: center;
    width: 30%;
    margin: 2px;
}

.tile h3 {
    margin: 0 0 10px;
}


/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Sticky navigation */
header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #444;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .tile-container {
        flex-direction: column;
        align-items: center;
    }

    .tile {
        width: 90%;
        margin: 10px 10px;
    }

   /* .slideshow-container { */
        height: 300px; /* Adjust height for mobile */
  /*  } */
	

    .text {
        font-size: 16px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .tile, .course {
        width: 45%;
    }
}
