/* Logo image styles */
.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 190px;
    min-width: 180px;
}

/* Button styles */


.buttonHeader {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 175px;
    height: 55px;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 300;
    color: white;
    text-align: center;
    line-height: 55px;
    cursor: pointer;
    overflow: hidden;
    border: none;
    background: linear-gradient(168deg, rgba(25, 1, 49, 1) 0%, rgba(185, 125, 248, 1) 51%, rgba(25, 1, 49, 1) 100%);
}

.buttonHeader::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(168deg, rgba(115, 39, 255, 1) 21%, rgba(251, 251, 251, 1) 100%);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

.buttonHeader:hover::before {
    opacity: 1;
}

.buttonHeader span {
    position: relative;
    z-index: 1;
}

/* Navigation link hover animation */
.nav-link {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.nav-link:hover {
    color: white;
}

.nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7B2CBF;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu Styles */
.hamburger {
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    z-index: 60;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    transform: translateY(-100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: 50;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    display: flex !important;
}

.mobile-menu nav {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 2rem;
}

.mobile-menu a {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.mobile-menu a:hover {
    transform: translateX(10px);
}

.mobile-menu .buttonHeader {
    transform: scale(1.25);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
}