/* Header Styles */
.top-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.75rem 0;
}

.top-menu .container {
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}

.menu-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 60px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.menu-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.menu-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.menu-btn--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.menu-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
    text-decoration: none;
}

/* Profile Dropdown */
.profile-dropdown {
    position: relative;
}

.profile-btn {
    background: none;
    border: none;
    font-size: 1rem;
    color: #1a1a1a;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.profile-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.profile-btn i {
    font-size: 1.2rem;
}

.profile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 150px;
    display: none;
    z-index: 1001;
}

.profile-menu.show {
    display: block;
}

.profile-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-menu a:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.profile-menu .divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 0.5rem 0;
}

/* Sign In Button */
.sign-in-btn {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.sign-in-btn:hover {
    color: #667eea;
    text-decoration: none;
}

/* CTA Gradient Button - fixed header version */
.top-menu .cta-gradient-alt {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 0.65rem 1.25rem;
    border-radius: 50px; /* Maximum circular */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.top-menu .cta-gradient-alt:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #663399 100%); /* Darker colors */
    color: white !important;
    text-decoration: none;
    transform: scale(1.01); /* Subtle like cta-button */
}

/* Responsive */
@media (max-width: 768px) {
    .top-menu {
        padding: 0.5rem 0; /* Reduce header height by 10% */
    }
    
    .menu-content {
        padding: 0 1rem;
        min-height: 50px; /* Reduce from 60px to 50px (10% less) */
    }
    
    .logo a {
        font-size: 1.25rem;
    }
    
    .menu-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .sign-in-btn {
        padding: 0.75rem 1.5rem; /* Increase padding for better button size */
        font-size: 0.85rem; /* Slightly smaller font */
        white-space: nowrap; /* Prevent text wrapping */
    }
    
    .top-menu .cta-gradient-alt {
        padding: 0.75rem 1.5rem; /* Increase padding for better button size */
        font-size: 0.85rem; /* Slightly smaller font */
        white-space: nowrap; /* Prevent text wrapping */
    }
}

/* Additional mobile styles for very small screens */
@media (max-width: 480px) {
    .menu-content {
        padding: 0 0.75rem;
    }
    
    .sign-in-btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .top-menu .cta-gradient-alt {
        padding: 0.7rem 1.25rem;
        font-size: 0.8rem;
    }
} 