/* Header Improvements */

/* Header Styles */
.yone-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    box-shadow: none;
    z-index: 100;
    padding: 0.75rem 0;
    height: 80px; /* Increased height */
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Sticky Header Effect */
.yone-header-sticky {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 70px; /* Increased height */
    padding: 0.5rem 0;
    backdrop-filter: blur(10px);
}

.yone-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo Styles */
.yone-logo {
    font-size: 1.7rem; /* Increased font size */
    font-weight: 700;
    color: var(--yone-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.yone-logo:hover {
    transform: translateY(-2px);
}

.yone-logo img {
    height: 50px; /* Increased logo size */
    margin-right: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.yone-header-sticky .yone-logo img {
    height: 45px; /* Increased sticky logo size */
}

/* Navigation Styles */
.yone-nav {
    display: flex;
    gap: 2rem; /* Increased gap */
    margin: 0 2.5rem; /* Increased margin */
    transition: all 0.3s ease;
}

.yone-header-sticky .yone-nav {
    gap: 1.75rem; /* Increased gap for sticky */
}

.yone-nav-link {
    color: var(--yone-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem; /* Increased font size */
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

/* Non-sticky header links */
.yone-header:not(.yone-header-sticky) .yone-nav-link {
    color: var(--yone-dark);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.yone-nav-link:hover {
    color: var(--yone-primary);
}

.yone-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px; /* Increased height */
    background-color: var(--yone-primary);
    transition: width 0.3s ease;
}

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

.yone-header-sticky .yone-nav-link {
    font-size: 1.05rem; /* Increased font size for sticky */
}

/* Header Buttons */
.yone-header-buttons {
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.yone-header-buttons .yone-btn {
    padding: 0.75rem 1.5rem; /* Increased padding */
    font-weight: 700; /* Increased font weight */
    border-radius: 8px; /* Increased border radius */
    transition: all 0.3s ease;
    font-size: 1.1rem; /* Increased font size */
}

/* Non-sticky header buttons */
.yone-header:not(.yone-header-sticky) .yone-header-buttons .yone-btn-primary {
    background-color: var(--yone-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3); /* Increased shadow */
}

.yone-header:not(.yone-header-sticky) .yone-header-buttons .yone-btn-primary:hover {
    background-color: var(--yone-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(42, 157, 143, 0.4); /* Increased shadow */
}

.yone-header-sticky .yone-header-buttons .yone-btn {
    padding: 0.65rem 1.25rem; /* Increased padding for sticky */
    font-size: 1rem; /* Increased font size for sticky */
}

/* Responsive Styles */
@media (max-width: 992px) {
    .yone-nav {
        gap: 1.5rem; /* Adjusted for larger font */
        margin: 0 1.5rem;
    }

    .yone-header-buttons .yone-btn {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
}

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

    .yone-header {
        height: 70px; /* Increased for mobile */
    }

    .yone-logo img {
        height: 45px; /* Increased for mobile */
    }

    .yone-header-sticky {
        height: 65px;
    }

    .yone-header-sticky .yone-logo img {
        height: 40px;
    }
}
