@import url('google-font.css');
html {
  font-family: "Open Sans", sans-serif;
}
h1, .uk-h1, h2, .uk-h2, h3, .uk-h3, h4, .uk-h4, h5, .uk-h5, h6, .uk-h6, .uk-heading-small, .uk-heading-medium, .uk-heading-large, .uk-heading-xlarge, .uk-heading-2xlarge, .uk-heading-3xlarge {
  font-family: "Poppins", sans-serif;
}
a,
.uk-link {
  color: #0079c1 !important;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
.uk-link:hover,
.uk-link-toggle:hover .uk-link {
  color: #48a942;
  text-decoration: underline;
}

#page-hero {
    background: linear-gradient(
        to bottom,
        #245c36 0%,
        #151a15 100%
    );
    border-bottom: 2px solid #0079c1;
}




#page-introduction {
    border-bottom: 2px solid #0079c1;
}

.page-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #0F0F0F;
    transition: background-color 0.3s;
    z-index: 1000;
    border-bottom: 2px solid #0079c1;
}
    /* Header Link Styles */
    #page-header a {
        color: #FFFFFF !important;
        text-decoration: none;
        transition: color 0.3s;
    }

    #page-header a:hover {
        color: #CCCCCC;
    }
#page-header [uk-dropdown] {
        z-index: 10000 !important;
        position: absolute !important;
    }

    /* Ensure Page Hero is Below */
    #page-hero {
        position: relative;
        z-index: 1;
    }
#page-header {
    z-index: 2 !important;
}
 #page-header .uk-dropdown-nav a {
        color: #0079c1 !important; /* Primary Blue Text */
        background-color: transparent;
        text-decoration: none;
        transition: background-color 0.3s, color 0.3s;
        padding: 8px 12px;
        display: block;
    }

    /* Dropdown Link Hover Style */
    #page-header .uk-dropdown-nav a:hover {
        background-color: #48a942; /* Green Background on Hover */
        color: #FFFFFF !important; /* White Text on Hover */
        text-decoration: none;
        border-radius: 4px;
    }
.page-header-transparent {
    background-color: transparent;
    transition: background-color 0.3s;
}

.page-header-scrolled {
    background-color: #333333 !important;
    transition: background-color 0.3s;
}
.uk-button-window-screens-hawaii {
    background-color: #0079c1; /* Primary Blue */
    color: #ffffff !important; /* White Text */
    border: 2px solid rgba(255, 255, 255, 0.6); /* Semi-Transparent White Border */
    font-weight: 600;
    padding-top: 3px;
    padding-right: 15px !important;
    padding-left: 15px;
    padding-bottom: 3px !important;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
}

/* Hover Effect */
.uk-button-window-screens-hawaii:hover {
    background-color: #48a942; /* Green on Hover */
    color: #ffffff !important; /* White Text on Hover */
    border: 2px solid rgba(255, 255, 255, 0.8); /* More Visible White Border on Hover */
}
#page-hero h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

#page-hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 15px;
}

#page-hero p {
    font-size: 1.25rem;
    line-height: 1.4;
    opacity: 0.9;
    margin-bottom: 20px;
}
/* Sway and Bounce Effect on Image */
.sway-image {
    display: inline-block;
    animation: sway 5s ease-in-out infinite;
    transition: transform 0.3s, box-shadow 0.3s;
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.3));
}

.bounce-on-hover:hover {
    animation: bounce 0.6s ease-in-out;
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0);
        filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.3));
    }
    25% {
        transform: translateX(-10px) rotate(-1deg);
        filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.4));
    }
    50% {
        transform: translateX(10px) rotate(1deg);
        filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.5));
    }
    75% {
        transform: translateX(-5px) rotate(-0.5deg);
        filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.4));
    }
}

/* Keyframes for Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-10px);
    }
    40% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(-5px);
    }
    80% {
        transform: translateY(3px);
    }
}
