/* FONTS */
*{
    font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: white;
    /*border: 1px solid red;*/
}*

 .manuscrit{
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
     font-family: "Shadows Into Light", cursive;
 }
 .manuscrit3rem{
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
     font-family: "Shadows Into Light", cursive;
     font-size: 3rem;
 }
@media (max-width: 576px) {
    .manuscrit {
        /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);*/
        /*font-family: "Shadows Into Light", cursive;*/
        /*font-size: 2rem;*/
    }
    .manuscrit3rem {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        font-family: "Shadows Into Light", cursive;
        font-size: 1.5rem;
    }
}

 /* base */
.fontello{
    font-size: 5em;
    color: #0dcaf0;
}
.white-button{
    text-align: center;
    background-color: transparent;
    border: solid white 2px;
    border-radius: unset;
    padding: 0 1rem !important;
    transition: background-color 0.5s ease;
}
.white-button:hover{
    background-color: white;
    color: #0dcaf0;
    transition: background-color 0.5s ease;
}
.white-button-text{
    color: white;
    transition: color 0.5s ease;
}
.white-button:hover .white-button-text{
    color: black;
    transition: color 0.5s ease;
}
/* For hitlighting text */
.text-background {
    background-color: rgba(0, 0, 0, 0.5); /* Fond noir semi-transparent */
    padding: 0.5rem; /* Ajoute un peu de padding autour du texte */
    border-radius: 0.25rem; /* Optionnel : arrondir les coins */
}
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* Caroussel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 75px;
    height: 75px;
    background-size: 75px 75px;
    color: white;
    filter: none!important;
}
.carrousel-txt{
    background-color: #0dcaf0;
    opacity: 0.5;
}

/* Added for bootstrap dropdowns in navbar */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

/* For menu in  Scuba diving pages */
.menu-item:hover {
    font-size: 1.1em;
    transition: font-size 0.3s ease;
}
.menu-item{
    font-size: 1em;
    transition: font-size 0.3s ease;
    cursor: pointer;
}
.menu-item-active{
    font-weight: bold;
    font-size: 1.1em;
    background-color: black;
}

/* for animate css in scuba diving pages */
.slide-in {
    animation: slide-in 0.5s forwards;
}
.slide-out {
    animation: slide-out 0.5s forwards;
}
@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* For text in horizontal menu (about pages) */
.sub-menu-item:hover {
    font-size: 1.1em;
    transition: font-size 0.3s ease;
}
.sub-menu-item{
    font-size: 1em;
    transition: font-size 0.3s ease;
    cursor: pointer;
}
.sub-menu-item-active{
    font-weight: bold;
    font-size: 1.1em;
}


/* Flash message */
.flash-message{
    z-index: 1000;
    width: 100%;
    text-align: center;
}
.flash-success{
    background-color: #28a745;
}
.flash-error{
    background-color: #dc3545;
}
.flash-message .alert{
    background-color: #0dcaf0;
    padding: 1rem;
    margin: 0;
}
.flash-message .alert a{
    color: white;
    text-decoration: underline;
}


/* Row squared */
.h2-square{
    height: 400px;
    background-color: #21d3d5
}
.cental-block-square{
    height: 200px;
}
@media (max-width: 576px) {
    .h2-square {
        height: 200px;
    }
    .cental-block-square{
        height: 300px;
    }
}

/* Big row */
.big-row{
    background-size: cover;
    min-height : 600px;
}
.big-row .position-absolute{
    top: 25%;
    left: 30%;
    width: 50%;
    transform: translate(-50%, -50%);
}
@media (max-width: 576px) {
    .big-row{
        background-size: cover;
        min-height : 300px;
        background-position: center;
    }
}


/* Time card */
@media (max-width: 576px) {
    .time-card-bg {
        height: 400px !important;
    }
}
@media (max-width: 576px) {
    .time-card-mobile {
        top: 10px !important;
    }
}


/* scuba Diving : certif card*/
@media (max-width: 576px) {
    .scuba-certif-card {
        height: 500px !important;
    }
}


/* Tiger shark dive */
@media (max-width: 576px) {
    .package-info {
        display: block;
        width: 100% !important;
        max-width: 100%;
        margin-bottom: 1rem;
    }
}


/* About */
@media (max-width: 576px) {
    .submenu-about {
        min-height: 100px;
    }
}

/* Contact */
.contact-us-square{
    height: 400px;
    background-color: #20c7ca;
}
@media (max-width: 576px) {
    .contact-us-square {
        height: 150px;
    }
}


.shadow-card{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

body{
    background-color: #04111e !important;
}

.dropdown-menu .dropdown-item.active {
    background-color: #20c7ca !important; /* Remplacez #ff5733 par la couleur souhaitée */
    color: #ffffff !important; /* Facultatif : pour changer la couleur du texte */
}

.font-title{
    font-family: "Protest Revolution", sans-serif !important;
}

.font-main{
    font-family: "Roboto Condensed", sans-serif;
}

.font-italic{
    /*font-family: 'Caveat', cursive;*/
    /*font-style: italic;*/
    font-family: "Shadows Into Light", cursive;
}
