/* Fullscreen Toggle Menu Styles */
.sky-hamburger {
    width: 40px;
    height: 40px;
    background-color: #009688;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 10000; /* Extremely high z-index to ensure it's on top */
    border-radius: 3px;
    transition: all 0.3s ease;
}

.sky-hamburger:hover {
    background-color: #00796b;
}

.sky-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Using viewport height instead of % */
    background-color: #2a2a2a;
    z-index: 9999; /* Very high but below hamburger */
    display: none; /* Initially hidden */
    flex-direction: column;
    overflow-y: auto;
}

.sky-mobile-menu.active {
    display: flex; /* Show when active class is added */
}

.sky-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px;
}

.sky-close-button {
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.sky-menu-items {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
    justify-content: center;
    padding: 20px 0;
}

.sky-menu-item {
    padding: 15px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block; /* Ensures full width */
}

.sky-menu-item:hover {
    color: #daa520;
}

.sky-spanish-note {
    text-align: center;
    color: white;
    padding: 15px;
    margin-top: 10px;
    font-size: 14px;
}

.sky-spanish-note i {
    margin-right: 5px;
}

.sky-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    margin-top: 10px;
}

.sky-button {
    border: 1px solid #daa520;
    color: #daa520;
    background-color: transparent;
    text-align: center;
    padding: 12px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.sky-button:hover {
    background-color: #daa520;
    color: #2a2a2a;
}

/* Mobile optimizations */
@media (max-width: 767px) {
    .sky-menu-item {
        font-size: 14px;
        padding: 12px;
    }
    
    .sky-buttons {
        padding: 15px;
    }
    
    .sky-toggle-container {
        display: block;
    }
}