/* Base Button Styles */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #ffffff;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    outline: none;
    font-family: inherit;
}

.btn:focus {
    outline: 2px solid rgba(0, 245, 255, 0.5);
    outline-offset: 2px;
}
/* Outline Buttons */
.outline-btn {
    background: transparent;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.outline-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: currentColor;
    transition: left 0.3s ease;
    z-index: -1;
}

.outline-btn:hover::before {
    left: 0;
}

.outline-btn:hover {
    color: #ffcc00;
    transform: translateY(-3px);
}

.outline-blue {
    color: #0000aa;
    border-color: #0000dd;
}

.menu-link {
  transition: 0.4s;
  color: #eea200;
  font-size: 18px;
  text-decoration: none;
  padding: 0 10px;
  margin: 0 10px;
}
.menu-link:hover {
  background-color: #eea200;
  color: #001133;
  padding: 16px 10px;
}

