/**
 * Enlarged Header CSS
 * Increases the size of the Vigthoria.io text in the header
 * Ensures all elements display in one line
 */

/* Header container */
.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    flex-wrap: nowrap;
    width: 100%;
}

/* Logo group */
.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Enlarged logo style */
.enlarged-logo {
    font-size: 1.8rem !important; /* Increase from default size */
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 15px;
}

.enlarged-logo .logo-vigthoria {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 2rem;
    margin-right: 2px;
}

.enlarged-logo .logo-io {
    color: var(--text-primary);
    font-size: 1.9rem;
}

/* Header icon */
.header-icon {
    height: 40px;
    width: auto;
    margin-left: 10px;
}

/* Navigation links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto 0 30px;
    flex-grow: 1;
    justify-content: center;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Ensure buttons align properly with enlarged text */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

/* Make sure header stays responsive */
@media (max-width: 992px) {
    .header-container {
        padding: 8px 16px;
    }
    
    .enlarged-logo {
        font-size: 1.6rem !important;
    }
    
    .enlarged-logo .logo-vigthoria {
        font-size: 1.8rem;
    }
    
    .enlarged-logo .logo-io {
        font-size: 1.7rem;
    }
    
    .nav-links {
        gap: 15px;
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .enlarged-logo {
        font-size: 1.5rem !important;
    }
    
    .enlarged-logo .logo-vigthoria {
        font-size: 1.7rem;
    }
    
    .enlarged-logo .logo-io {
        font-size: 1.6rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-buttons {
        margin-left: auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}
