/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    transition: margin-left 0.3s ease;
    background-color: aliceblue;
}

/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    transition: margin-left 0.3s ease;
    background-color: aliceblue;
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Initially hide sidebar off-screen */
    width: 250px;
    height: 100vh; /* Full viewport height */
    background-color: #333;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 999;

    /* Enable scrolling when content overflows */
    overflow-y: auto; /* Vertical scrollbar when content overflows */
    overflow-x: hidden; /* Disable horizontal scrolling */
    box-sizing: border-box;
}

/* Ensure sidebar opens properly */
.sidebar.active {
    left: 0; /* Move sidebar into view */
}

/* Sidebar Links */
.sidebar a {
    padding: 15px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
}

/* Sidebar Link Hover Effect */
.sidebar a:hover {
    background-color: #575757;
}

/* Customize scrollbar appearance */
.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #575757;
    border-radius: 4px;
}

.sidebar::-webkit-scrollbar-track {
    background: #333;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

/* Overlay Effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* Must stay hidden until activated */
    z-index: 997;
    pointer-events: none; /* Prevent overlay from blocking sidebar scroll */
}

/* Hamburger icon */
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 50px;
    cursor: pointer;
    border: none;
    color: #fff;
    z-index: 999;
    height: 36px;
    width: 36px;
    border-radius: 0px;
}

/* Sidebar Title */
.sidebarLink {
    text-align: center;
    font-size: 35px;
    color: white;
}

#sidebarTitle {
    color: white;
    font-size: 50px;
    text-align: center;
}

/* Mobile menu (hamburger) adjustments */
@media (max-width: 768px) {
    .sidebar {
        width: 100%; /* Full width on mobile */
        left: -100%; /* Initially hide sidebar off-screen */
    }
    
    .sidebar.active {
        left: 0; /* Move sidebar into view */
    }
    
    /* Modify the hamburger icon position */
    .hamburger {
        top: 10px;
        right: 10px;
        font-size: 40px;
    }
}

/* Tablet and small desktop (responsive sidebar) */
@media (min-width: 768px) and (max-width: 1024px) {
    .sidebar {
        width: 250px; /* Normal width for tablet/small desktops */
        left: -250px;
    }
    .sidebar.active {
        left: 0;
    }
}

/* Larger desktop styling */
@media (min-width: 1024px) {
    .sidebar {
        width: 250px;
        left: -250px;
    }

    .sidebar.active {
        left: 0;
    }
}

/* Sidebar Links container with scroll */
.sidebar-links {
    max-height: 80vh; /* Limit the height of the links container */
    overflow-y: auto; /* Enable scrolling within this container */
}



.sidebarLink {
    text-align: center; 
    font-size: 35px;
    color: white;
}

#sidebarTitle{
    color: white; 
    font-size: 50px; 
    text-align: center;
}

.fa 
{
    position: fixed;
    padding: 50px;
    font-size: 50px;
    width: 50px;
    height: 50px;
    text-align: center;
    text-decoration: none;
    align-self: center;
}

.fa:hover 
{
    opacity: 0.7;
}

.fa-facebook-sidebar
{
    background: #3B5998;
    color: white;
    text-align: center;
    margin-left: 100px;
    margin-top: 35px;
}

.link-title {
    position: fixed;
    top: 20px; /* Adjust the position from the top */
    left: 20px; /* Adjust the position from the left */
    font-size: 36px; /* Adjust the font size */
    font-weight: bold;
    text-decoration: none;
    color: #fff; /* Adjust the color */
    z-index: 999;
  }
  
  .link-title:hover {
    color: grey; /* Adjust the hover color */
  }
 /* Banner container */
 .banner {
    position: relative;
    width: 100%;
    height: 950px; /* Adjust height as needed */
    background-image: url('../assets/images/banners/IMG_3583.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    border-bottom: 10px solid #000000; /* Adds a solid bottom border */
    z-index: 996;
}

/* Dark overlay on the banner */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Darken with 40% opacity */
    z-index: 996;
}

/* Text on the banner */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    -webkit-animation: text-shadow-drop-center 3s both;
	        animation: text-shadow-drop-center 3s both;
    z-index: 996;
}

.banner h1 {
    font-size: 96px;
    margin: 10px 0;
    z-index: 996;
}

.banner p {
    font-size: 50px;
    z-index: 996;
}

#tracking-in-expand {
	animation: tracking-in-expand 2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2025-2-15 17:49:32
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
 @keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }

  #Page_Title{
    font-family: 'Times New Roman';
    font-size: 70px;
    color: black;
    margin-top: 25px;
    text-align: center;
  }

  #Page_Text{
    font-family: 'Times New Roman';
    font-size: 25px;
    color: black;
    margin-top: 25px;
    text-align: justify;
    justify-content: end;
  }

/* Table Container */
.table-container 
{
    width: 100%;
    max-width: 1000px;
    max-height: 1000px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    overflow-x: auto; /* Ensures table is scrollable on small screens */
}

/* Modern Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    color: black;
    font-weight: bold;
}

thead {
    background-color: #333;
    color: white;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

/* Alternate row colors */
    tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Hover effect */
tbody tr:hover {
    background-color: #d6e4ff;
}

/* Responsive Table */
@media (max-width: 600px) {
    th, td {
        padding: 8px;
        font-size: 14px;
    }
}


        /* Profile Card Container */
        .profile-card {
            background: white;
            width: 300px;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: 0.3s;
        }

        .profile-card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
        }

        /* Profile Image */
        .profile-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #333;
            margin-bottom: 15px;
        }

        /* Profile Name */
        .profile-name {
            font-size: 30px;
            font-weight: bold;
            color: #333;
        }

        /* Profile Blurb */
        .profile-bio {
            font-size: 14px;
            color: #333;
            margin-top: 10px;
            font-weight: bold;
            text-align: justify;
        }

        /* Social Links */
        .social-links {
            margin-top: 15px;
        }

        .social-links a {
            margin: 0 5px;
            color: #007bff;
            text-decoration: none;
            font-size: 20px;
            transition: 0.3s;
        }

        .social-links a:hover {
            color: #0056b3;
        }

        .newsflash {
            display: flex;
            align-items: center;
            background-color: #f1f1f1;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          }
          
          .newsflash a {
            text-decoration: none;
            color: inherit;
          }
          
          .news-image {
            width: 150px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 20px;
          }
          
          .news-details h2 {
            font-size: 1.5em;
            margin: 0;
          }
          
          .news-details p {
            font-size: 1em;
            color: #555;
          }
          
          .news-details a {
            color: #0066cc;
            text-decoration: none;
          }
          
          .news-details a:hover {
            text-decoration: underline;
          }
          
          .archive-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 20px;
        }
        
        .archive-year {
            display: block;
            background-color: #333;
            color: white;
            padding: 30px 45px;
            margin: 10px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .archive-year:hover {
            background-color: #004999;
        }

        .slideshow-container {
            position: relative;
            max-width: 1000px;
            margin: 30px auto;
            background: white;
            padding: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
        }
        
        .slide {
            display: none;
        }
        
        img, video, audio {
            max-width: 100%;
            border-radius: 8px;
        }
        
        .caption {
            font-size: 18px;
            margin-top: 10px;
            color: #333;
            font-weight: bold;
        }
        
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 30px; /* Increase arrow size */
            color: white;
            background-color: #333;
            width: 50px;
            height: 50px;
            border-radius: 50%; /* Make them circular */
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            user-select: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow */
        }
        
        .prev { left: 20px; }
        .next { right: 20px; }
        
        .prev:hover, .next:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }
        
        .fade {
            animation: fadeEffect 1s ease-in-out;
        }
        
        @keyframes fadeEffect {
            from { opacity: 0.4; }
            to { opacity: 1; }
        }

        /* Login Container */
.login-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 700px;
}

        /* Input Groups */
.input-group {
    text-align: left;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: #6e8efb;
    outline: none;
}

/* Password Wrapper */
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 35px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #777;
}

/* Remember Me & Forgot Password */
.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.remember-forgot a {
    color: #6e8efb;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

/* Sign In Button */
.btn {
    width: 100%;
    padding: 12px;
    background: #6e8efb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #5a7bdf;
}

/* Sign Up Link */
.signup-text {
    margin-top: 15px;
    font-size: 14px;
    font-family: 'Barlow Condensed';
}

.signup-text a {
    color: #6e8efb;
    text-decoration: none;
    font-family: 'Barlow Condensed';
}

.signup-text a:hover {
    text-decoration: underline;
    font-family: 'Barlow Condensed';
}

/* Responsive */
@media (max-width: 400px) {
    .login-container {
        padding: 20px;
    }
}


/* FAQ Container */
.faq-container {
    width: 90%;
    max-width: 900px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px;
    text-align: left;
    font-size: 25px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-family:'Times New Roman';
}

.faq-question:hover {
    background: #f9f9f9;
}

.icon {
    font-size: 22px;
    transition: transform 0.3s;
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-weight: bold;
    font-size: 20px;
}

.faq-answer p {
    padding: 15px;
    margin: 0;
    background: #fafafa;
    border-radius: 5px;
    font-weight: bold;
    text-align: justify;
    font-size: 20px;
}

/* Reusable Background Styling */
.text-background {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: inline-block; /* Ensures it wraps around the text content */
    font-size: 18px;
    font-weight: bold;
}

.postcard {
    position: relative;
    width: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background: #fff;
    margin-top: 35px;
}
video {
    width: 100%;
    display: block;
    border-radius: 15px;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
.play-button:hover {
    background: rgba(0, 0, 0, 0.8);
}
.play-button::before {
    content: '\25B6';
    color: white;
    font-size: 24px;
}
