/* Header Styles - Navigation, Social Links, Badges */

header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

header h1 {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 0;
}

header h1 a {
    color: var(--text-color);
    text-decoration: none;
}

header h1 a:hover {
    color: var(--accent-color);
}

.header-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.coming-soon-badge {
    font-size: 0.85em;
    font-weight: 300;
    color: #f97316;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: lowercase;
    position: relative;
    padding: 6px 16px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 12px rgba(249, 115, 22, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 24px rgba(249, 115, 22, 0.7);
    }
}

.social-nav {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 0;
}

.become-member-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: linear-gradient(135deg, #9a3412 0%, #c2410c 50%, #ea580c 100%);
    color: white;
    border: none;
    padding: 8.5px 17px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.81em;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(154, 52, 18, 0.3);
    position: relative;
    overflow: hidden;
}

.become-member-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.become-member-btn:hover::before {
    left: 100%;
}

.become-member-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 52, 18, 0.5);
}

.become-member-btn:active {
    transform: translateY(0);
}

.consulting-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #9333ea 100%);
    color: white;
    border: none;
    padding: 8.5px 17px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 0.81em;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
    position: relative;
    overflow: hidden;
}

.consulting-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.consulting-btn:hover::before {
    left: 100%;
}

.consulting-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.5);
}

.consulting-btn:active {
    transform: translateY(0);
}

.button-separator {
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(249, 115, 22, 0.4) 50%, transparent 100%);
    opacity: 0.6;
    margin: 0 4px;
    display: inline-block;
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 4px;
}

.social-link:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.05);
}

.social-link svg {
    display: block;
}

nav {
    margin-top: 10px;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9em;
    opacity: 0.7;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 1;
}

/* Member Modal Styles */
.member-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.member-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.member-modal-content {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.member-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 32px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-modal-close:hover {
    opacity: 1;
}

.member-modal-title {
    font-size: 1.8em;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-color);
    background: linear-gradient(135deg, #9a3412 0%, #c2410c 50%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-modal-body {
    margin-bottom: 30px;
}

.member-benefit-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    opacity: 0.9;
}

.member-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-benefits-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1em;
    opacity: 0.85;
}

.member-benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9a3412;
    font-weight: bold;
    font-size: 1.2em;
}

.member-modal-actions {
    display: flex;
    justify-content: center;
}

.member-join-btn {
    background: linear-gradient(135deg, #9a3412 0%, #c2410c 50%, #ea580c 100%);
    color: white;
    text-decoration: none;
    padding: 10.2px 25.5px;
    border-radius: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(154, 52, 18, 0.3);
}

.member-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(154, 52, 18, 0.5);
}

.member-join-btn:active {
    transform: translateY(0);
}

