:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: 'Montserrat', sans-serif;
}

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/Assets/Castillo/DJI_0846.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

/* Mobile menu styles */
.navbar {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(8px);
}

#mobileMenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(8px);
    z-index: 50;
}

#mobileMenu.hidden {
    display: none;
}

#mobileMenu a {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#mobileMenu a:last-child {
    border-bottom: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.activity-card {
    transition: all 0.3s ease;
}

.custom-checkbox:checked+.checkbox-icon {
    background-color: #3B82F6;
    border-color: #3B82F6;
}

.custom-checkbox:checked+.checkbox-icon:after {
    opacity: 1;
}

.checkbox-icon:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

#carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

#carousel>div {
    flex: 0 0 100%;
    width: 100%;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}