/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

h1, h2, h3, h5 {
    font-family: 'Bebas Neue', cursive;
    color: #333;
}

.card-title {
    font-family: 'Bebas Neue', cursive;
    color: #007bff;
}
.hero {
    background: url('banner.jpg') no-repeat center center/cover;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; 
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero h1{
    color: white;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.7); 
}

/* Navbar */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Bebas Neue', cursive;
}
.navbar-brand img {
    width: 200px; 
    height: auto;
}
.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    border-bottom: none; 
    position: sticky;
    top: 0;
    z-index: 1000; 
}
/* Navbar Links */
.navbar-nav .nav-link {
    position: relative;
    padding: 10px 15px;
    color: #333; 
    border: 2px solid transparent; 
    transition: color 0.3s, border-color 0.3s; 
}

.navbar-nav .nav-link:hover {
    color: #000; 
    border-bottom: 2px solid gray;
    font-weight: bold;
}



/* About Us Section */
.about-us .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.footer {
    margin-top: 20px;
}

.footer p {
    margin-bottom: 0;
}

/* Buttons */
.btn-primary {
    background-color: #ff69b4;
    border-color: #ff69b4;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff1493;
    border-color: #ff1493;
}

/* Schedules & Events Section */
.schedules-events .card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Icon before card title */
.card-title img {
    width: 60px; 
    height: 60px; 
    margin-right: 10px; 
    vertical-align: middle; 
}
.about-card{
    color: white;
}
.about-title{
    margin-top: 2rem;
    font-size: 3rem;
}
.card-text{
    color: white;
}
/* History List Styling */
.history-list {
    margin-top: 15px;
    padding-left: 20px; 
    color: white;
    text-align: justify;
    padding-right: 20px;
}

.history-list li {
    margin-bottom: 10px; 
    line-height: 1.6; 
}
.core-title{
    font-size: 1.5rem;
}
/* Card Styling */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px; 
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    background-color: #f8f9fa; 
}

.card-title {
    transition: color 0.3s ease, border-bottom 0.3s ease;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.card-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: white; 
    transition: width 0.3s ease;
}

.card:hover .card-title::after {
    width: 100%; 
}

.card:hover .core-title {
    color: yellow; 
}
.qoute{
    font-style: italic;
}

/* Ensure all cards have the same height */
.about-us .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-us .card-body {
    flex-grow: 1;
}
/* Event Icon Styling */
.event-icon {
    width: 320px;
    height: 300px; 
    margin-left: 10px; 
    margin-right: 10px;
    margin-top: 15px;
    margin-bottom: 10px;
    vertical-align: middle;
    border-radius: 10%; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Hover effect for floating shadow */
.event-icon:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); 
}
.event-title{
    font-size: 1.5rem;
    color: #000;
}
/* Event Details List Styling */
.event-details {
    list-style-type: none; 
    padding: 0;
    margin-top: 15px;
    margin-left: 30px;
}

.event-details li {
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* Space between items */
    font-size: 1rem; /* Adjust the font size */
}

.event-details li i {
    margin-right: 15px; /* Space between icon and text */
    color: black; /* Optional: Change icon color to match theme */
    font-size: 1rem; /* Adjust icon size */
}
/* Ensure all cards have the same height */
.schedules-events .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.schedules-events .card-body {
    flex-grow: 1;
}
.schedules-events .card:hover{
    background-color: darkslategrey;
    color: white;
}
.footer-body i{
    margin: 8px;
}






