.hey{
    margin-left:7px;
  }
    @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        body {
            font-family: "Lucida Console", "Courier New", Monospace;
      margin: 0;
      background-size: cover;
      display: flex;
      flex-direction: column;
      min-height: 100vh; /* Minimum height to cover viewport */
      scroll-behavior: smooth; /* Enables smooth scrolling */
      position: relative; /* Ensure relative positioning for absolute footer */
      animation: fadeIn 0.5s ease-out; /* Added fade-in animation */
      /* as */
    }
        header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #004080;
  height: 50px; /* Adjust the height as needed */
    padding: 0 10px; /* Optional: Add padding if needed */
    box-sizing: border-box; /* Ensure padding is included in the height */
  border-bottom: 2px solid #003060;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: white;
  width: 100%; /* Ensure header takes full width */
}
.header img {
    height: 50px; /* Adjust the height as needed */
    margin-left: 30px; /* Adjust the margin as needed */
}

        @media (max-width: 720px) {
        }
          header h1 {
            margin: 0;
            font-size: 1.2rem;
        }

        nav {
            flex-grow: 1;
            margin-left: 20px; /* Adjusted margin to move buttons closer */
        }

        nav ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: flex-end;
        }

        nav ul li {
            margin: 0 5px;
        }

        nav ul li a {
          position: relative;
            text-decoration: none;
            color: white; /* White color for better contrast */
            padding: 10px;
            border-radius: 5px;
            cursor: pointer; /* Make the link appear as a button */
            transition: color 0.3s, border-bottom 0.3s; /* Smooth transition */
        }

        nav ul li a:hover {
          color: #0056b3; /* Blue text color */
          border-bottom: 2px solid #0056b3; /* Blue underline */

}



/* Style for the dropdown button */
.dropdown .btn {
    background-color: #007bff; /* Change to your preferred color */
    color: white; /* Change text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Optional: Add rounded corners */
    padding: 5px 20px; /* Adjust padding */
    font-size: 16px; /* Adjust font size */
    transition: background-color 0.3s; /* Smooth background color transition */
}

.dropdown .btn:hover {
    background-color: #0056b3; /* Change to your preferred hover color */
}

/* Style for the dropdown menu */
.dropdown-menu {
    border-radius: 5px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for better visibility */
    background-color: #ffffff; /* Change background color */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    border: 1px solid #ddd; /* Add border if desired */
}

/* Style for dropdown items */
.dropdown-menu .dropdown-item {
    padding: 10px 20px; /* Adjust padding for each item */
    font-size: 16px; /* Adjust font size */
    color: #333; /* Change text color */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa; /* Change hover background color */
    color: #007bff; /* Change hover text color */
}

/* Style for the horizontal rule */
.dropdown-menu hr {
    border: 0;
    border-top: 1px solid #ddd; /* Change to your preferred color */
    margin: 0; /* Remove default margin */
}
        
.header-title {
    margin: 0; /* Remove default margin */
    font-size: 24px; /* Adjust font size */
    line-height: 1.2; /* Adjust line height for single line display */
    white-space: nowrap; /* Prevent text from wrapping to the next line */

}
.nav-item-with-spacing {
  margin-right: 20px; /* Adjust this value to increase or decrease the space */
}

.hero {
    position: relative; /* Ensures the pseudo-element is positioned relative to this container */
    padding: 100px 0; /* Adjust padding as needed */
    max-width: 100%;
    color: #ffffff; /* Text color on top of the background image */
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2); /* Adjusted opacity for a more subtle shadow */
}

.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 150%; /* Full viewport height */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slideCarousel 12s infinite; /* 12s total duration */
    z-index: -1; /* Places the background behind the content */
    margin-top: 50px;
    /* Gradient filter: left side at 50%, right side at 70% */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.212) 0%, rgba(0, 0, 0, 0.3) 100%), url('assets/img/bimage.jpg');
    background: linear-gradient(to right, rgba(0, 0, 0, 0.212) 0%, rgba(0, 0, 0, 0.3) 100%), url('assets/img/madridejos-hall.jpeg');
    background: linear-gradient(to right, rgba(0, 0, 0, 0.212) 0%, rgba(0, 0, 0, 0.3) 100%), url('assets/img/bsantafe.jpg');
    background-size: cover;
    filter: brightness(50%); /* Overall brightness applied */
}

/* Keyframes for one-by-one sliding */
@keyframes slideCarousel {
    0%, 33% {
        background-image: url('assets/img/bimage.jpg');
        background-size: cover;
    }
    34%, 66% {
        background-image: url('assets/img/madridejos-hall.jpeg');
        background-size: cover;
    }
    67%, 100% {
        background-image: url('assets/img/bsantafe.jpg');
        background-size: 100% 90%; /* Adjust width to 90% of container, height adjusts automatically */
        background-position: center; /* Centers the image horizontally and vertically */
    }
}

.hero-content {
    padding: 20px; /* Add padding inside the content area */
    animation: slideInLeft 1s ease-out; /* Slide in from left animation */
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-content h3 {
    font-size: 2.0rem; /* Adjust font size */
    margin-bottom: 20px; /* Add spacing below heading */
    color: rgba(255, 255, 255, 0.9);
}

.hero-content p {
    font-size: 1.0rem; /* Adjust font size */
    line-height: 1.6; /* Adjust line height */
    color: rgba(255, 255, 255, 0.85);
}


.hero-image {
    text-align: center; /* Center align the logo */
    margin-top: 40px; /* Adjust margin from the top */
    margin-left: 50px;
    animation: slideInRight 1s ease-out; /* Slide in from right animation */
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.hero-image img {
    max-width: 100%; /* Ensure logo image fits within its container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 20px;
    margin-left: 50px;
}
 
#logoContainer {
    max-width: 400%; /* Adjust as needed */
    max-height: 400%; /* Adjust as needed */
    overflow: hidden; /* Ensure logos don't overflow the container */
}
#logoImage {
    width: 100%; /* Set the desired width */
    height: 100%; /* Set the desired height */
    border-radius: 30px;
    height: auto; /* Maintain aspect ratio */
    
}
#bantayan {
    padding: 0;
    width: 100%;
    height: calc(100vh - 0); /* Full viewport height minus header height */
    margin-top: 98px;
    display: none;
}

#bantayan .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    height: 100%;
}
#scheduleSection {
    display: none;
}

#bantayan .row {
    margin: 0;
    height: 100%;
}

#bantayan .col-lg-12 {
    padding: 0;
    height: 100%;
}

#bantayan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#madridejos {
    padding: 0;
    width: 100%;
    height: calc(100vh - 0); /* Full viewport height minus header height */
    margin-top: 98px;
    display: none;
}

#madridejos .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    height: 100%;
}

#madridejos .row {
    margin: 0;
    height: 100%;
}

#madridejos .col-lg-12 {
    padding: 0;
    height: 100%;
}



#madridejos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#santafe {
    padding: 0;
    width: 100%;
    height: calc(100vh - 0); /* Full viewport height minus header height */
    margin-top: 98px;
    display: none;
}

#santafe .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    height: 100%;
}

#santafe .row {
    margin: 0;
    height: 100%;
}

#santafe .col-lg-12 {
    padding: 0;
    height: 100%;
}

#santafe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.image-container {
    position: relative;
    overflow: hidden;
    width: 500%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    height: auto;
}

.image-container img {
    width: 500%;
    height: auto;
    display: block;
    animation: fadeIn 1.5s ease-out;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.about-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    font-size: 24px;
    color: #333;
}

.about-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.logo-container {
    margin-top: 20px; /* Adjust spacing between text and logo */
    text-align: center;
}

.logo-container img {
    max-width: 400px; /* Adjust size as needed */
    height: auto;
    animation: slideInRight 2.5s ease-out; /* Slide in from right animation */
}
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.section-content {
        position: relative; /* Ensure positioning context */
        background-image: url('assets/img/cover.webp');
        background-size: cover;
        padding: 20px;
        color: white; /* Adjust text color for visibility */
        text-align: center;
    }

.about-text {
    margin-top: 50px;
    color: #f0f0f0; /* Light gray, almost white text for contrast */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    padding: 20px;
    border-left: 4px solid #ffd700; /* Gold border */
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5); /* Orange glow */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); /* Text shadow for depth */
    animation: slideInLeft 2.5s ease-out, pulsate 3s infinite alternate;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulsate {
    from {
        box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
    }
}

.about-text:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateX(5px) scale(1.02);
    transition: all 0.3s ease;
}
 /* Medium-sized boxed container for the marquee text */
 .marquee-container {
        display: inline-block;
        padding: 10px 20px;
        background-color: rgba(0, 0, 0, 0.5); /* Adjust background color and opacity */
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(255, 165, 0, 0.5); /* Optional: Add shadow for depth */
        border-left: 4px solid #ffd700;
        overflow: hidden;
        width: 70%; /* Adjust the width as needed */
        max-width: 800px; /* Set a maximum width if desired */
        margin: 20px auto; /* Center the box horizontally */
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }

    /* Marquee animation for the h2 element */
    .marquee {
        white-space: nowrap;
        animation: marquee 10s linear infinite; /* Adjust duration (20s) as needed */
        color: #f0f0f0;
    }

    @keyframes marquee {
        0% { transform: translateX(100%); }
        100% { transform: translateX(-100%); }
    }

    .schedule-content {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.schedule-content .section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.schedule-content .section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.schedule-table th, .schedule-table td {
    padding: 15px;
    text-align: left;
    border: none;
}

.schedule-table thead {
    background-color: #004080;
    color: #fff;
}

.schedule-table thead th {
    font-weight: bold;
}

.schedule-table tbody tr {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.schedule-table tbody tr:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.schedule-table tbody td {
    border-top: 1px solid #f0f0f0;
}

.schedule-table tbody tr:first-child td {
    border-top: none;
}

    /* Style for enhanced dropdown items */
.enhanced-dropdown-item {
    color: #333;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px; /* Rounded corners for a modern touch */
    background-color: rgba(255, 255, 255, 0.8);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.enhanced-dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.8); /* Light gray hover background */
    color: #fff; /* Bootstrap primary color for hover text */
    text-decoration: none; /* Removes underline */
    transform: scale(1.05); /* Slight zoom-in effect on hover */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for hover */
}

