@tailwind base;
@tailwind components;
@font-face {
    font-family: 'OpenSans';
    src: local('OpenSans'), url('../assets/fonts/OpenSans.ttf') format('truetype'),
        
}
@font-face {
    font-family: 'Outfit';
    src: local('Outfit'), url('../assets/fonts/Outfit.ttf') format('truetype'),        
}
@tailwind utilities;

.testimonial-slide {
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide[x-show] {
    display: none;
}

.testimonial-slide[x-show="true"] {
    display: block;
}

/* Owl Carousel Custom Styles */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 -3rem;
    pointer-events: none;
}

.owl-prev, .owl-next {
    width: 3rem;
    height: 3rem;
    background-color: white !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px -1px rgba(0, 0, 0, 0.2), 0 4px 10px -1px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #021f49 !important;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
    background-color: #2aaacb !important;
    color: white !important;
}

.owl-dots {
    margin-top: 0.5rem;
    text-align: center;
}

.owl-dot span {
    width: 10px !important;
    height: 10px !important;
    margin: 5px 7px;
    background: #D6D6D6 !important;
    display: block;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-dot.active span {
    background: #2aaacb !important;
}

/* Activities Carousel Styles */
.activities-carousel .owl-stage-outer {
    padding: 10px 0;
}

.activities-carousel .owl-item {
    transition: all 0.3s ease;
}

.activities-carousel .owl-item:hover {
    transform: translateY(-5px);
}

.activities-carousel .owl-nav {
    margin-top: 1rem;
}

.activities-carousel .owl-nav button {
    margin: 0 10px;
}

/* Feature Box Animations */
.features-grid .feature-box {
    transition: all 0.3s ease;
}

.features-grid .feature-box:hover .icon-container {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.features-grid .feature-box .icon-container {
    transition: transform 0.3s ease;
}

.features-grid .feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Gallery Hover Effects */
.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Video Carousel Styles */
.video-carousel .owl-nav {
    margin-top: 2rem;
}

.video-carousel .owl-nav button {
    width: 3rem;
    height: 3rem;
    background-color: white !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 0 0.5rem;
}

.video-carousel .owl-nav button:hover {
    background-color: #2aaacb !important;
    color: white !important;
}

/* Video Modal Styles */
#videoModal {
    backdrop-filter: blur(5px);
}

#videoModal .aspect-video {
    aspect-ratio: 16 / 9;
}
