/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif; /* Optional: Customize font */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-bar {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 50px;
}

.icon-bar a {
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.icon-bar a:hover {
    transform: scale(1.1);
}

.icon-bar img {
    width: 40px;
    height: 40px;
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 50%; /* Adjust size as needed */
    height: auto;
    margin: 20px 0; /* Space between elements */
}

.text {
    width: 100%;
    text-align: center;
}
p {
    display: inline-block;
    vertical-align: top;
    margin: 0;
  }

.word {
    display: inline-block;
    opacity: 0;
    position: relative;
    font-size: 1.5em; /* Adjust font size as needed */
}

.letter {
    display: inline-block;
    position: relative;
    transform: translateZ(25px);
    transform-origin: 50% 50% 25px;
}

.letter.out {
    transform: rotateX(90deg);
    transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
    transform: rotateX(-90deg);
}

.letter.in {
    transform: rotateX(0deg);
    transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wisteria {
    color: #8e44ad;
}

.belize {
    color: #2980b9;
}

.pomegranate {
    color: #c0392b;
}

.green {
    color: #16a085;
}

.midnight {
    color: #2c3e50;
}

.welcome-text {
    margin-bottom: 20px; /* Space between welcome text and logo */
}

.shadows {
    position: relative;
    text-transform: uppercase;
    text-shadow: -15px 5px 20px #ced0d3;
    color: #ffc82b;
    letter-spacing: -0.05em;
    font-family: 'Anton', Arial, sans-serif;
    user-select: none;
    font-size: 8vw;
    transition: all 0.25s ease-out;
}

.shadows:hover {
    text-shadow: -16px 6px 15px #ced0d3;
}
.carousel, .carousel-inner, .carousel-item, .carousel-item img {
    height: 100%;
    width: 100%;
}
.carousel-item img {
    object-fit: cover;
}
.carousel-indicators {
    bottom: 20px;
}
.carousel-control-prev, .carousel-control-next {
    width: 5%;
}
.carousel-control-prev span, .carousel-control-next span {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
}
.carousel-control-prev span:hover, .carousel-control-next span:hover {
    background: rgba(0, 0, 0, 0.7);
}
.carousel-control-prev i, .carousel-control-next i {
    font-size: 20px;
    color: white;
}