/* MomReturn - Career Comeback Platform Styles */

:root {
    --primary-purple: #9B7EDE;
    --soft-purple: #B8A9D9;
    --peach: #FFB6C1;
    --soft-peach: #FFD1DC;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #333333;
    --text-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--soft-purple) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white) !important;
}

.navbar-brand img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    margin-right: 10px;
    border-radius: 50%;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--soft-peach) !important;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: 2px solid var(--white);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--soft-purple) 0%, var(--peach) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
}

.hero-logo {
    animation: fadeInUp 0.8s ease;
}

.hero-logo img {
    object-fit: cover;
    border: 4px solid var(--white);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-section h2 {
    animation: fadeInUp 1.2s ease;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.4s ease;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--soft-purple) 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(155, 126, 222, 0.4);
    background: linear-gradient(135deg, var(--soft-purple) 0%, var(--primary-purple) 100%);
}

.btn-peach {
    background: linear-gradient(135deg, var(--peach) 0%, var(--soft-peach) 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    color: var(--dark-gray);
}

.btn-peach:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--soft-purple) 100%);
    color: var(--white);
    border-radius: 15px 15px 0 0 !important;
    padding: 1rem;
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(155, 126, 222, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 3rem;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #555 100%);
    color: var(--white);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer a {
    color: var(--soft-peach);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--peach);
}

.social-links {
    font-size: 1.5rem;
}

.social-links a {
    margin: 0 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* Dashboard Styles */
.dashboard-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-section {
    background: linear-gradient(135deg, var(--soft-purple) 0%, var(--soft-peach) 100%);
    border-radius: 15px;
    padding: 2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

/* Skill Cards */
.skill-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.skill-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Marketplace */
.product-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-logo h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-logo img {
        height: 80px !important;
        width: 80px !important;
        margin-right: 15px !important;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.8rem !important;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-container {
        margin: 20px;
        padding: 1.5rem;
    }
    
    .hero-logo .d-flex {
        flex-direction: column;
    }
    
    .hero-logo img {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
}

/* Utilities */
.text-purple {
    color: var(--primary-purple);
}

.text-peach {
    color: var(--peach);
}

.bg-purple {
    background-color: var(--primary-purple);
}

.bg-peach {
    background-color: var(--peach);
}

.bg-light-purple {
    background-color: var(--soft-purple);
}

.bg-light-peach {
    background-color: var(--soft-peach);
}

