/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    line-height: 1.6;
    color: #333;
}
/* Info Section */
.info_section {
    padding: 5px 15px;
    text-align: center;
	background-color: #ee8c0f;
}

.info_section h2 {
    font-size: 22px;
    margin-bottom: 1px;
    color: #E00;
}


/* Header and Navigation */
header {
    background: url('art/network_background_wide.jpg') center center/cover no-repeat;
    position: relative;
    color: #fff;
    padding: 20px;
    text-align: center;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* Overlay for background blur */
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);  /* Optional dark overlay for readability */
    filter: blur(5px);                /* Blurs the background image */
    z-index: -1;                      /* Keeps the blur behind the text */
}

/* Make sure the content inside the header stays readable */
header .content {
    position: relative;
    z-index: 1;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    display: inline-block;
    transition: color 0.3s ease, background 0.3s ease; /* Smooth transition for color */
    position: relative;
}

/* Hover effect for menu */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #fff;  /* Underline color */
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
}

/* On hover, change color and expand underline */
nav ul li a:hover {
    color: #f8b400;
    background: #fff;
}

nav ul li a:hover::after {
    width: 100%;  /* Full-width underline effect */
    left: 0;
    background: #f8b400;  /* Change underline to match the background */
}

/* Hero Section */
.hero {
    padding: 60px 20px;
    background: url('hero-image.jpg') center center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
}

.hero p {
    font-size: 18px;
    margin: 10px 0 20px;
}

.cta-btn {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #555;
}

/* Section Styling */
.section {
    padding: 40px 20px;
    text-align: center;
	background-color: #ee8c0f;
}
.table-section {
    padding: 40px 20px;
    text-align: left;
	background-color: #ee8c0f;
}
h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #000;
}

ul {
    list-style-type: none;
}

.program-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.program {
    width: 200px;
    border: 1px solid #ccc;
    padding: 20px;
    background: #f9f9f9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.testimonials p {
    font-style: italic;
    margin: 10px 0;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.socials a {
    color: #ff0000;
    text-decoration: none;
}

.socials a:hover {
    text-decoration: underline;
}

/* ----------- Responsive Styles ----------- */

/* Desktop Styles */
@media (min-width: 768px) {
    nav ul {
        gap: 40px;
    }

    .hero h2 {
        font-size: 48px;
    }

    .hero p {
        font-size: 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .program-list {
        gap: 40px;
    }

    .program {
        width: 250px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li a {
        font-size: 16px;
        padding: 15px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 10px 15px;
    }

    .section h2 {
        font-size: 24px;
    }

    .program {
        width: 100%;
    }

    .program-list {
        flex-direction: column;
        gap: 20px;
    }

    footer {
        padding: 20px;
    }
}
