@charset "UTF-8";
/* CSS Document */

@font-face {
    font-family: CormorantSC-Light;
    src: url('../fonts/CormorantSC-Light.woff2') format('woff2');
}
@font-face {
    font-family: tangerineregular;
    src: url('../fonts/tangerine-regular.woff2') format('woff2'),
         url('../fonts/tangerine-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: tangerinebold;
    src: url('../fonts/tangerine-bold.woff2') format('woff2'),
         url('../fonts/tangerine-bold.woff') format('woff');
    font-weight: bold;
    font-style: bold;

}
@font-face {
	font-family: cormorantlight_italic;
    src: url('../fonts/cormorant-italic-variablefont_wght-webfont.woff2') format('woff2'),
         url('../fonts/cormorant-italic-variablefont_wght-webfont.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: signikalight;
    src: url('../fonts/signika-variablefont_gradwght-webfont.woff2') format('woff2'),
         url('../fonts/signika-variablefont_gradwght-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
/* WebKit-based browsers */
::-webkit-scrollbar {
    width: 12px;
    background-color: rgba(61, 12, 80, 0.7);
}
::-webkit-scrollbar-track {
    background: rgba(61, 12, 80, 0.7);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: darkorchid;
    border-radius: 10px;
    border: 3px solid darkorchid;
}
:root {
	--btntxt: #FD85FF;
	--backgroundcolor: rgba(48,1,72,0.80);
}
/* Firefox */
html {
    scrollbar-color: darkorchid;
    scrollbar-width: thin;
	user-select: none;
}
body {
	font-family: signikalight;
	font-size: clamp(14px,4vw,24px);
    color: #FFF;
    background-color: #000000;
    height: auto;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
footer {
	display: flex;
	justify-content: center;
}
.backgroundVideo {
    position: fixed; /* Fixed/sticky position */
    right: 0; /* Stay right */
    bottom: 0; /* Stay bottom */
    min-width: 100%; /* Minimum width 100% */
    min-height: 100%; /* Minimum height 100% */
    width: 100vw; /* Stretch to fill */
    height: 100vh; /* Stretch to fill */
    z-index: -20; /* Behind everything */
    background-size: cover; /* Resize the background image to cover the entire container */
    overflow: hidden; /* Hide scrollbars */
}
.video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}
.overlay {
    position: fixed;
    display: none; /* Initially hidden */
}
#audioControlContainer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 3000;
	font-size: clamp(10px,0.75vw,16px);
}
#audioControlButton {
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.4);
    color: darkgoldenrod;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

#audioControlButton:hover {
    background: rgba(0, 0, 0, 0.85);
    color: gold;
}

#audioControlButton:active {
    background: rgba(0, 0, 0, 1);
    color: yellow;
}
.underlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('../images/WHI-logo-800px.png');
    background-size: 100% auto; /* Scale width to 100%, adjust height automatically */
    background-position: top center; 
    background-repeat:repeat-y;
    background-color: rgba(0, 0, 0, 0.95);
    background-blend-mode: multiply;
    /*background-size: cover;*/
    z-index: -100;
}
.fade-in-out-section {
  transition: opacity 1s ease-out;
  opacity: 0;  /* Ensure elements start out transparent */
}

#content {
    position: relative;
    z-index: 1;
}
h5 {
    margin: 20px 0 30px 0;
    letter-spacing:normal;
    font-size: clamp(20px, 2vw, 28px);
    color: rgba(193,0,225,1.00);
	text-shadow:  
	-1px -1px 3px black,
	1px -1px 1px black,
	-1px 2px 2px black,
	2px 2px 1px black;	
}
h4 {
    margin: 10px 0 30px 0;
    letter-spacing: 1px;
    font-size: clamp(18px,2vw,32px);
    color: goldenrod;
    text-shadow:
	-1px -1px 3px black, 
	1px -1px 1px black,
	-1px 2px 2px darkgoldenrod,
	2px 2px 1px black;
}
h3 {
    margin: 10px 0 10px 0;
    letter-spacing: 6px;
	color: rgba(255,114,0,1.00);
	font-size: clamp(20px, 7vw, 130px);
	line-height: 2;
	font-weight: bold;
	font-family: tangerinebold;
	text-shadow:  
	-1px -1px 3px black, 
	1px -1px 1px black,
	-1px 2px 2px gold,
	2px 2px 1px black;
}
.invcolor {
    color: #FFFFFF;
    background-color: #350148;
    text-shadow: 2px 2px 2px black;
}
p {
	font-family: signikalight;
    font-size: clamp(20px, 2vw, 30px);
    font-weight: normal;
    color: white;
    text-align: justify;
    line-height: 1.3;
}
.ulbtn ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    list-style: none;
}

.ulbtn li {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: darkmagenta;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s, transform 0.3s;
    margin: .3vh .3vh .3vh .3vh;
    white-space: nowrap;
}

.ulbtn li:hover {
    background-color: magenta;
	transform: translate(-6px,-6px) scale(1.12);
}

.ulbtn li::before {
    content: "";
    display: inline-block;
    width: 40px; /* Adjust width to the size of your icon */
    height: 40px; /* Adjust height to the size of your icon */
    background-image: url('../images/greenCheckMark.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 0.5vw;
	vertical-align: middle;
}
.right-shift {
    margin-left: 30%;
	display: flex;
}

/* Adjustments for the navbar to make logo overhang and set background color */
.navbar {
	font-family: signikalight;
    background-color: rgba(61,12,80,0.7);
	background: rgb(61,12,80);
	background: linear-gradient(200deg, rgba(61,12,80,0.7) 0%, rgba(61,12,80,0.7) 48%, rgba(177,3,177,1) 83%, rgba(248,249,1,0.7) 96%, rgba(248,249,1,1) 100%);
	font-size: clamp(20px,1vw, 30px) !important; /*affects navlinks only...? */
    letter-spacing: 1px;
	line-height: normal;
    padding-top: 1vh;
    padding-bottom: 1vh;
	transition: transform 0.3s ease;
}
/* Ensure the navbar is initially visible */
/* This class will be toggled to hide/show the navbar */
.navbar-hidden {
  transform: translateY(-95%); /* Leave 5% of the navbar visible as a handle */
}
/* Style for the visible handle when navbar is hidden */
.navbar-hidden::after {
  content: '';
  position: absolute;
  top: 100%; /* Position it just below the visible handle */
  left: 0;
  width: 100%;
  height: 20px; /* Height of the clickable area */
  background-color: rgba(61, 12, 80, 0.7);
  cursor: pointer;
}
.navbar-brand {
    display: flex;
    /*align-items: center; /* Align items vertically */
    position: relative;
}
.navbar-brand .logo {
    width: 200px;
    position: fixed; /* Use relative to allow top adjustment */
    bottom: -100px;
    left: 10px;
    transform:translate(00px, -30px);
    top: 40px; /* Adjust this value to control the overhang */
}
.navbar-brand .navbar-brandtext {
    display: inline-block; /* Make sure it is visible */
    /*font-size: 39px;*/
	font-size: clamp(30px, 1.5vw,40px);
    font-family: CormorantSC-Light, serif;
    color: orange;
    margin-left: 0px;
    text-shadow: 1px 1px 2px black;
    z-index: 100;
	padding-left: 200px;
	/*padding-top; 2vh;
	padding-bottom: 2vh;
	/*transform:translate(-30px,-24px);*/
}
.nav-link {
    text-align: center; /* Default alignment */
    padding: 10px 15px; /* Adjust padding as necessary */
    transition: color 0.3s ease, transform 0.3s ease; /* Include color in transition */
}
.nav-link:hover {
    color: gold !important;
    font-weight: bold;
    transform: scale(1.1); /* Reduce the scale to minimize shift */
    transition: color 0.3s ease, transform 0.3s ease;
}
/* Adjust navbar-toggler for alignment with reduced navbar height */
.navbar-toggler {
    padding-top: 0px; /*: .25rem .75rem; /* Adjust the padding to reduce size */
    margin-top: 0px;
    font-size: .875rem; /* Optional: Adjust font size for icon */
}
.btn {
    padding: 10px 20px;
    background-color: rgba(21,0,27,1.00);
    color: var(--btntxt);
    border: 1px solid gold;
    transition: .2s; 
}
.btn:hover, .btn:focus {
    background-color: rgba(99,3,125,1.00);
    color: gold;
	transform:scale(1.1);
    border: 3px outset gold;
}
.transp-bg {
	display: flex;
	flex-direction: column;
    padding: 0px 3vw 3vw 3vw;
 background: rgb(61,0,83);
background: linear-gradient(135deg, rgba(61,0,83,0.95) 0%, rgba(20,0,28,0.95) 27%, rgba(3,0,4,0.95) 85%); 
	justify-content:flex-start;
	min-height: 80vh;
}
/* Carousel container maintaining aspect ratio */
.carousel-item {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

/* Images fit within the .carousel-item */
.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Adjust .carousel-inner to not specify a fixed height */
.carousel-inner {
    position: relative; /* Allows absolute positioning within */
}
.carousel-caption {
	color: yellow;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, .9);
}
.full-height-section {
    min-height: 100vh; /* Minimum height of 100% of the viewport height */
	display: flex;
    flex-direction: column;
    justify-content:flex-start;
}
.center-height-section {
    min-height: 100vh;
	display: flex;
    flex-direction: column;
    justify-content:center; /* Aligns content and ensures padding at the bottom if content is shorter */
	align-items: center;
}
.section-padding {
    padding-top: 0;
    padding-bottom: 5vh;
}
footer {
    background-color: rgb(61,12,80);
    color: var(--btntxt);
    padding: 10px;
    z-index: 5;
}

/* Form styles */
.form-control {
    background-color: rgba(27,4,36,1.00);
    border-color: transparent;
	color: var(--btntxt);
}

textarea {
    resize: none;
}
.mybg-purple {
    background-color: #FFF; /*rgba(26,0,36,1.00);*/
    padding: 0px;/*3px 0; /* Adjust the vertical padding to change the thickness of the line */
    margin-top: 0px; /* Space above the line */
    margin-bottom: 80px; /* Space below the line */
}
.nextsection {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    padding: 0px;
}
.card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-color: #250151;
	background-color: black;
	overflow:visible;
}
.card-img-top {
	max-width: 50vw;
}
/************* Some bootstrap replacements for contact form *****************************/
/* Custom container class to replace Bootstrap's container */
.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

.mt-5 {
    margin-top: 3rem;
}

/* Custom row and column classes to replace Bootstrap's row and col-* */
.custom-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.custom-col-4, .custom-col-8, .custom-col-6 {
    padding-right: 15px;
    padding-left: 15px;
}

.custom-col-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

.custom-col-8 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
}

.custom-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.mb-3 {
    margin-bottom: 1rem;
}

/* Custom form-row and form-group classes to replace Bootstrap's form-row and form-group */
.custom-form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.custom-form-group {
    margin-bottom: 1rem;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(48,1,72,0.40);
}

.modal-content {
    background-color: rgba(48,1,72,0.80);
    position: relative; /* Make it easier to position the close button */
    margin: 10vh 10vw;
    height: 80vh;
    padding: 5%;
    border: 1px solid #FF00D6;
    width: 80vw;
    max-height: 50%;
    overflow-y: auto;
}

.close {
    position: absolute; /* Position it within the modal content */
    top: 10px; /* Adjust as needed for padding */
    right: 10px; /* Adjust as needed for padding */
    color: yellowgreen;
    font-size: clamp(28px, 6vh, 40px);
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #FF00F8;
    text-decoration: none;
    cursor: pointer;
}

/***********************************************************************/
@media (max-width: 1350px) {
    .navbar-brand .logo {
        width: 10vw; /* Adjusted from 100px based on typical viewport width */
        bottom: -1vw;
        left: 1vw;
        transform: translate(-1vw, -0.2vw);
        top: 1vw;
    }
    .navbar-brand .navbar-brandtext {
        font-size: clamp(18px, 2.2vw,22px);
        padding-left: 8.5vw;
    }
	.right-shift {
		margin-left:auto;
		margin-right: auto;
	}
}
/* Ensure that the hover effect and bold font weight are applied only to nav links within the collapsed navbar menu */
@media (max-width: 992px) { /* 992px is bootstrap's cutoff for hamburger */
    .navbar-collapse .nav-link {
        text-align: right; /* Right-align nav links in the collapsed menu */
        padding: 10px 15px; /* Adjust padding if necessary */
        transform-origin: right center; /* Set transform origin to right */
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .navbar-collapse .nav-link:hover {
        color: gold !important;
        font-weight: bold;
        transform: scale(1.3); /* Slightly reduce the scale to minimize shift */
        transition: color 0.3s ease, transform 0.3s ease;
    }

}
@media (max-width: 768px) {
	.navbar-nav {
		margin: 0; /* Remove any additional margin */
	}
}
/* Update navbar toggler position * /
.navbar-toggler {
    z-index: 1031; /* Above the navbar * /
}*/

