.link-daskalos {
    color: white;
}

.tito-menu {
    color: #ffd24d;
}

.tito-menu:hover {
    color: #ffd24d;
}

.tito-menu:active {
    color: #ffd24d;
}

.hero-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    /* Keep this for now, might adjust later */
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
    margin-top: 7px;
    margin-right: 0px;
}

.social-icons .social-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.social-icons .social-icon:hover {
    transform: scale(1.2);
    color: #ffc107 !important;
}

.carousel-indicators [data-bs-target] {
    background-color: #212529;
}

#testimonialCarousel {
    position: relative;
    padding-bottom: 4rem;
    /* Add padding to the bottom for indicators */
}

.carousel-inner {
    padding-bottom: 2rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    /* Adjust position to be at the bottom */
}

.carousel-control-prev,
.carousel-control-next {
    z-index: 5;
    /* Ensure controls are on top */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    /* Make arrows dark */
}

#galeria .col-md-4 {
    overflow: hidden;
    border-radius: .25rem;
}

#galeria .col-md-4 img {
    transition: transform 0.8s ease;
}

#galeria .col-md-4:hover img {
    transform: scale(1.1);
}

/* Fonts */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #ffc107;
}

.navbar-scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Underline effect */
.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffc107;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Services Section */
#servicios .card {
    border: 1px solid #ffc107;
    transition: all 0.3s ease;
}

#servicios .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

@media (min-width: 992px) {
    .navbar-nav .nav-item {
        margin-right: 20px;
        /* Adjust as needed */
    }

    .navbar-nav .nav-item:last-child {
        margin-right: 0;
    }
}