
:root {
    --primary-green: #8DB600;
    --secondary-orange: #FF6B35;
    --accent-orange: #FF914D;
    --light-bg: #fff7f4;
    --text-dark: #1d1d1f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-orange) 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 1rem auto;
    border: 4px solid white;
    background: #fff url('wellmus headshot.jpg') center/cover;
}

.container {
    max-width: 1200px;
    margin: -50px auto 0;
    padding: 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-btn {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e0e0e0;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.social-btn i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fa-facebook { color: #1877F2; }
.fa-linkedin { color: #0A66C2; }
.fa-envelope-open-text { color: var(--secondary-orange); }
.fa-youtube { color: #FF0000; }

.floating-signup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-orange);
    color: white;
    padding: 15px 25px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.auth-btn {
    background: var(--secondary-orange);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    z-index: 3000;
    animation: slideIn 0.3s ease-out;
}
.success { background: var(--primary-green); }
.error { background: #dc3545; }

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
