/* Safari Kite Dive - Custom Styles 
   Optimized for Speed & Performance
*/

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Optimization helpers */
img {
    content-visibility: auto;
    max-width: 100%;
    height: auto;
}

/* Active Navigation Link */
.nav-link.active {
    color: #06b6d4; /* Brand Cyan */
    font-weight: 700;
}

/* HIGH CONTRAST CTA BUTTONS 
   Fixed styles to ensure visibility before hover 
*/
.btn-cta {
    background-color: #ea580c !important; /* Vivid Orange */
    color: #ffffff !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 30px;
    border-radius: 9999px;
    box-shadow: 0 4px 14px 0 rgba(234, 88, 12, 0.39) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 1;
    pointer-events: auto;
    text-decoration: none;
}

.btn-cta:hover {
    background-color: #c2410c !important; /* Darker Orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.23) !important;
}

.btn-cta:focus-visible {
    outline: 3px solid rgba(14, 165, 233, 0.7);
    outline-offset: 3px;
}

/* Section Separators */
.section-separator-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-separator-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
