














/* General HTML Styling */
html {
    background-color: #000000;
}


/* Body Styling */
body {
    font: 100%/1.5 Arial, sans-serif;  /* Set the font face and size */
    color: #ffffff; /* Set the text color */
    background-color: #000000 !important; /* Set background color */
    width: 100%; /* Ensures the body takes full width */
    max-width: 100%; /* Allows full width */
    margin: 0 auto; /* Centers the content */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Horizontal Rule (line) Styling */
hr {
    border: none; /* Removes default border */
    height: 2px; /* Sets thickness of the rule */
    background-color: #ffffff; /* Sets color of the rule */
    margin: 5px 0; /* Adds spacing above and below the rule */
}

/* Image Slider Container */
.image-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Default aspect ratio */
    overflow: hidden;
}

/* Responsive Image Slider Fixes */
@media (max-width: 768px) { /* Tablets & Phones */
    .image-slider {
        aspect-ratio: 4 / 3; /* Adjust aspect ratio for mobile */
    }
}

@media (max-width: 480px) { /* Small phones */
    .image-slider {
        aspect-ratio: 1 / 1; /* Square aspect ratio for small screens */
    }
}

/* Image Styling Inside the Slider */
.fade-image {
    object-fit: contain; /* Ensures image fits fully without cropping */
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    animation: fade 21s infinite;
}

/* Keyframes for Smooth Crossfade */
@keyframes fade {
    0%, 19% { opacity: 0; }  /* Hidden */
    19%, 38% { opacity: 1; } /* Fade in over 4s */
    38%, 62% { opacity: 1; } /* Fully visible for 5s */
    62%, 81% { opacity: 0; } /* Fade out over 4s */
    81%, 100% { opacity: 0; } /* Hidden */
}

/* Staggered Animation Delays for Three Images */
.fade-image:nth-child(1) { animation-delay: 0s; }   
.fade-image:nth-child(2) { animation-delay: 7s; }  
.fade-image:nth-child(3) { animation-delay: 14s; }  
 






/* Styling for Fixed Layer (Menu) */
#fixedLayer {
    padding: 6px 10px;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 10vh; /* Allow it to expand */
    background-color: rgba(0, 
                           0, 
                           0, 0.5); /* 50% transparency */
    z-index: 1000;
    border-bottom: 2px solid #ffffff;
    text-align: center;
}


/* Ensures images maintain aspect ratio */
/* Prevent Image Dragging */
img {
    max-width: 100%; /* Ensure the image doesn't exceed its container */
    height: auto; /* Maintain aspect ratio */
    background-color: #000000; /* Set background color */
    -webkit-user-drag: none; /* Prevent dragging in Safari */
    -moz-user-drag: none; /* Prevent dragging in Firefox */
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none; /* Prevent interaction */
}

/* Text Styling for Elements with Shadow */
.text-with-shadow {
    font-size: 40px;
    font-family: Arial, sans-serif;
    font-weight: bold; /* Makes the text bold */
    color:  #ffffff; /* Text color */
   /* text-shadow: 4px 4px 8px rgba(50, 50, 50, 0.8);  Horizontal offset, vertical offset, blur radius, and color */
    text-shadow: 4px 4px 8px #ffffff;
    text-align: center; /* Aligns text to center */
    margin: 10px 0 0 0; /* Adds 10px space above the h1 */
    padding: 0; /* Remove any padding */
}

/* h1 Header Styling */
h1 {
    font-family: Arial, sans-serif;
    font-size: 40px;
    color: #ffffff;
    margin: 10px 0 0 0;
    padding: 0;
    text-align: center;     
}

/* h2 Header Styling */
h2 {
    font-family: Arial, sans-serif;
    font-size: 25px;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Centered Text Styling */
.centered-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 12vh; /* Adjust as needed */   
}

/* Centered bottom link bar Styling */
.links_bott_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 0 !important; /* prevent excess spacing above contact */
    padding-top: 0 !important;
    padding-bottom: 0 !important;  
}

 



/* Left-Aligned Text Styling */
.left-text {
    text-align: left;
}

/* First Letter Uppercase Styling */
.first-word-uppercase-p::first-letter {
    font-family: Arial, sans-serif;
    font-size: 30px;
    color: #ffffff;
    font-weight: bold;
    line-height: 0.75;
}

/* link style */
.simple-link {
    color: #ffffff;                  /* Set initial color */
    text-decoration: underline;  /* Add underline */
    transition: color 0.3s;      /* Smooth transition on hover */
}

.simple-link:visited {
    color: #ffffff;                 /* Match unvisited link color */
}

.simple-link:hover {
    color: red;                  /* Color on hover */
    text-decoration: none;       /* Remove underline */
}


/* Article Styling */
article {
    font-family: Arial, sans-serif;
    width: 95%;
    align-items: center; /* NEW NEW */
    max-width: 95ch;
    margin: 1rem auto;
    margin-top: 30px; 
    background-color: #000000;
    color:  #ffffff;
}

/* Wrap Image Styling for Float */
.wrap-image {
    float: left;
    margin: 0 1rem 1rem 0;
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: rgba(0, 
                           0, 
                           0, 0.5); /* 50% transparency */
    border-radius: 8px; /* Rounded corners */
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu li {
    float: left;
}

/* Menu Links */
.dropdown-menu a {
    display: block;
    color: #ffffff;
    text-align: left;
/*    padding: 14px 16px; */
    padding: 4px 10px;
    text-decoration: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    border-radius: 6px; /* Rounded corners for menu items */
}

.dropdown-menu a:hover {
    background-color: gray;
    color: ;
    font-size: 18px;
}

/* Submenu Styling with Transparency */
.submenu {
    display: none;
    position: absolute;
    background-color: rgba(0, 
                           0, 
                           0, 0.85); /* 50% transparency */
    border: 1px solid #ddd;
    border-radius: 8px; /* Rounded corners for dropdown */
}

.dropdown-menu li:hover .submenu {
    display: block;
}

.submenu li {
    float: none;
}

/* Submenu Links */
.submenu li a {
    padding: 10px;
    color: #ffffff;
    font-size: 14px;
    font-family: Arial, sans-serif;
    border-radius: 6px; /* Rounded corners for submenu items */
}

.submenu li a:hover {
    background-color: gray;
    font-size: 14px;
}

/* Single Link Menu Styling */
.single-menu {
    background-color: rgba(0, 
                           0, 
                           0, 0.5);
    border-radius: 8px;
    padding: 10px;
    width: fit-content;
}

.single-menu a {
    display: block;
    color: #ffffff;
    text-align: left;
    margin: 0 auto;
    padding: 4px 10px;
    text-decoration: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    border-radius: 8px;
}

.single-menu a:hover {
    background-color: gray;
    display: block;
    color: #ffffff;
    text-align: left;
    margin: 0 auto;
    padding: 4px 10px;
    text-decoration: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    border-radius: 8px;
}


/* Responsive Header Styling for Small Screens */
@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem; /* Adjust font size for smaller screens */
    }

    .first-word-uppercase-p::first-letter {
        font-size: 30px; /* Adjust font size for smaller screens */
    }
}


