/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    height: 100%;
    min-height: 100vh;
    background-image: url('images/room3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Header */
header {
    background-color: rgba(17, 17, 17, 0.8);
    color: #fff;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

header .logo .bar {
    color: #ff4d00;
    font-size: 2.2rem;
    margin-left: 5px;
}

header nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

header nav a:hover,
header nav a.active {
    background-color: #ff4d00;
    color: #fff;
}

/* Programs Section */
.programs-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.7); /* Add semi-transparent background to blend with the images */
}

.programs-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title Styling (OUR PROGRAMS) */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem; /* Increased from 3rem to 5rem */
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 3px; /* Increased letter-spacing for more impact */
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 3rem; /* Adjust size for mobile screens */
    }
}

/* Program Grid */
.program-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.program-card {
    width: 30%;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    color: #fff;
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.program-card h3 {
    font-size: 1.5rem;
    margin: 20px 0;
}

.text-red {
    color: #ff4d00;
}

.text-green {
    color: #28a745;
}

.text-blue {
    color: #007bff;
}

.program-card p {
    font-size: 1rem;
    color: #ccc;
}

/* Carousel */
.carousel-inner img {
    width: 100%;
    height: 500px; /* Adjust height */
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 20px;
    text-align: center;
}
