/*
Theme Name: SJ Resume Theme
Description: A custom WordPress theme designed specifically for the SJ Resume Builder plugin.
Version: 1.0.0
Author: SJ
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 999; /* Lower z-index to stay below admin bar but above plugins */
}

/* When admin bar is present, adjust header position */
.admin-bar .site-header {
    top: 32px; /* Standard admin bar height */
}

/* Mobile admin bar adjustment */
@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px; /* Mobile admin bar height */
    }
}

/* Ensure header stays above all other elements */
.site-header * {
    z-index: inherit;
}

/* Header elements positioning */
.site-header .container,
.site-header .site-navigation,
.site-header .site-title {
    position: relative;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title:hover {
    color: #007cba;
}

.site-title a {
    text-decoration: none;
    color: inherit;
}

.site-navigation ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Ensure desktop navigation is visible by default */
@media (min-width: 769px) {
    .site-navigation {
        display: block !important;
        max-height: none !important;
        overflow: visible !important;
    }
}

.site-navigation li {
    margin: 0;
    padding: 0;
}

.site-navigation a {
    text-decoration: none;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: block;
    position: relative;
}

.site-navigation a:hover {
    color: #007cba;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.site-navigation a:active {
    transform: translateY(0);
}

/* Login/Logout link styling */
.site-navigation .menu-item a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    box-shadow: 0 2px 8px rgba(0, 124, 186, 0.3);
}

.site-navigation .menu-item a:hover {
    color: #fff;
    background: linear-gradient(135deg, #005a87 0%, #004066 100%);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.4);
    transform: translateY(-2px);
}

.site-navigation .menu-item a:active {
    transform: translateY(0);
}

/* Main content */
.site-main {
    min-height: 70vh;
    padding: 2rem 0;
}

/* Hero Banner Image Styles */
.hero-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-banner-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-banner-image:hover {
    transform: scale(1.02);
}

/* Responsive banner image */
@media (max-width: 768px) {
    .hero-banner {
        margin: 0 1rem 1.5rem 1rem;
        border-radius: 8px;
    }
    
    .hero-banner-image {
        max-height: 250px;
    }
}

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

/* Footer styles */
.site-footer {
    background: #333;
    color: #fff;
    padding: 2rem 0;
    margin-top: auto;
}

.site-footer .container {
    text-align: center;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #007cba;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #005a87;
}

/* Form styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Mobile Navigation Styles */
.header-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #333;
    transition: color 0.3s ease;
    z-index: 1000;
}



.header-toggle:hover {
    color: #007cba;
}

.header-toggle.active {
    color: #007cba;
}

.header-toggle svg {
    width: 24px;
    height: 24px;
}

/* Responsive design */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
        position: relative;
        padding-top: 3rem;
    }
    
    .header-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: #007cba;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        color: #fff;
        font-weight: 600;
        padding: 0.75rem;
        z-index: 999;
        transition: all 0.3s ease;
    }
    
    .header-toggle:hover {
        background: #005a87;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    .site-branding {
        order: 1;
        text-align: center;
        width: 100%;
    }
    
    .site-navigation {
        order: 2;
        width: 100%;
    }
    
    .site-navigation {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #fff;
        border-top: 1px solid #eee;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .site-navigation.nav-open {
        max-height: 500px;
        padding: 1rem 0;
    }
    
    .site-navigation ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .site-navigation li {
        border-bottom: 1px solid #eee;
        padding: 0.5rem 0;
    }
    
    .site-navigation li:last-child {
        border-bottom: none;
    }
}

/* ===== FRONT PAGE STYLES ===== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: left;
}

.hero-highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    display: block;
    font-size: 2rem;
    color: #ffd700;
    margin-top: 0.5rem;
    font-weight: 600;
}

.hero-subtitle {
    display: block;
    font-size: 2.5rem;
    color: #ffd700;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-align: left;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Resume Showcase */
.resume-showcase {
    position: relative;
    perspective: 1000px;
}

.resume-preview {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    color: #333;
    max-width: 450px;
    width: 100%;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
    position: relative;
}

.resume-preview:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

.resume-preview::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.7;
}

.resume-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    color: #333;
    max-width: 400px;
    width: 100%;
}

.resume-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #f0f0f0;
}

.resume-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.resume-info h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
}

.resume-info p {
    margin: 0 0 1rem 0;
    color: #667eea;
    font-size: 1rem;
    font-weight: 600;
}

.resume-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    background: #f0f8ff;
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #e0e8ff;
}

.resume-avatar {
    width: 60px;
    height: 60px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.resume-info h3 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
}

.resume-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.resume-section {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.resume-section h4 {
    margin: 0 0 0.5rem 0;
    color: #667eea;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resume-section p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3.5rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    text-align: left;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}



/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.step-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 700;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.step-feature {
    background: #f0f8ff;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e0e8ff;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

/* Resume Builder Demo Section */
.resume-builder-demo {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.demo-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.demo-preview {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.demo-message i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.demo-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.demo-message p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.demo-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Success Stories Section */
.success-stories-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.2;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    margin: 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 700;
}

.author-info p {
    margin: 0;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background: white;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-feature i {
    color: #ffd700;
    font-size: 1.2rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Templates Section */
.templates-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Template styles removed to prevent conflicts with SJ Resume Builder plugin */

/* Resume Sections Section */
.resume-sections-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

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

.section-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.section-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.section-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.section-item:hover i {
    transform: scale(1.1);
}

.section-item h4 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
    font-weight: 600;
}

/* Dashboard Section */
.dashboard-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Responsive Design for Front Page */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid,
    .steps-container,
    .templates-grid,
    .sections-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .resume-preview {
        margin: 0 1rem;
        transform: none !important;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .resume-card {
        padding: 1.5rem;
    }
}

/* ========================================
   LOGIN AND REGISTRATION FORMS STYLING
   ======================================== */

/* Login Page Container */
.login-page,
.register-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

/* Login Container */
.login-container,
.register-container {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
}

/* Login Card */
.login-card,
.register-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 3rem 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Login Header */
.login-header,
.register-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-header h1,
.register-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-header p,
.register-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 400;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #2c3e50;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: #adb5bd;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper .form-input {
    padding-right: 3rem; /* Make room for the toggle button */
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #6c757d;
    transition: color 0.3s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

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

.password-toggle:focus {
    outline: none;
    color: #667eea;
    background-color: rgba(102, 126, 234, 0.15);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.3);
}

.password-toggle i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    accent-color: #667eea;
}

/* Button Styling */
.login-btn,
.register-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.login-btn:hover,
.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.login-btn:active,
.register-btn:active {
    transform: translateY(0);
}

.login-btn:disabled,
.register-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Button Loading State */
.btn-loader {
    display: none;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

.path {
    stroke: #fff;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Error and Success Messages */
.login-error,
.register-error {
    background: #fee;
    color: #c53030;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #c53030;
    font-size: 0.95rem;
}

.register-success {
    background: #f0fff4;
    color: #38a169;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #38a169;
    font-size: 0.95rem;
}

/* Login Footer */
.login-footer,
.register-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.login-footer p,
.register-footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #6c757d;
}

.login-footer a,
.register-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-footer a:hover,
.register-footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Password Hint */
.password-hint {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
    display: block;
}

/* Decorative Elements */
.login-decoration,
.register-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Shortcode Containers */
.login-before-form-shortcode,
.login-after-form-shortcode,
.register-before-form-shortcode,
.register-after-form-shortcode {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Responsive Design for Login Forms */
@media (max-width: 768px) {
    .login-page,
    .register-page {
        padding: 1rem;
    }
    
    .login-card,
    .register-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .login-header h1,
    .register-header h1 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .decoration-circle {
        display: none;
    }
}

@media (max-width: 480px) {
    .login-container,
    .register-container {
        max-width: 100%;
    }
    
    .login-card,
    .register-card {
        padding: 1.5rem 1rem;
        margin: 0;
        border-radius: 15px;
    }
    
    .login-header h1,
    .register-header h1 {
        font-size: 1.6rem;
    }
    
    .form-input {
        padding: 0.875rem 1rem;
    }
    
    .login-btn,
    .register-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* ========================================
   DROPDOWN NAVIGATION STYLING
   ======================================== */

/* Main Navigation Container */


/* Navigation Menu List */




/* Navigation Links */




/* Dropdown Toggle Styling - Desktop only */
@media (min-width: 769px) {
    .dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
        position: relative;
    }
}

@media (min-width: 769px) {
    .dropdown-arrow {
        font-size: 0.7rem;
        transition: transform 0.3s ease;
        margin-left: 0.25rem;
        position: absolute;
        right: 1rem;
    }
}

/* Desktop Dropdown Menu Container - Only apply on larger screens */
@media (min-width: 769px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 220px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 0.75rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border: 1px solid rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(10px);
    }
}

/* Show dropdown on hover - Desktop only */
@media (min-width: 769px) {
    .has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Dropdown Arrow rotation on hover - Desktop only */
@media (min-width: 769px) {
    .has-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Dropdown Menu Items - Desktop only */
@media (min-width: 769px) {
    .dropdown-menu li {
        margin: 0;
        padding: 0;
        display: block !important;
        width: 100% !important;
        float: none !important;
        clear: both !important;
    }

    .dropdown-menu a {
        color: #333;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 0;
        transition: all 0.2s ease;
        border-left: 3px solid transparent;
        justify-content: flex-start;
        text-align: left;
        min-height: auto;
    }

    .dropdown-menu a:hover {
        color: #ff6b35;
        background: rgba(255, 107, 53, 0.05);
        border-left-color: #ff6b35;
        transform: translateX(5px);
    }
}

/* Sub-dropdown (nested dropdowns) - Desktop only */
@media (min-width: 769px) {
    .sub-dropdown {
        position: absolute;
        left: 100%;
        top: 0;
        background: #fff;
        min-width: 200px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        padding: 0.75rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

    /* Show sub-dropdown on hover */
    .dropdown-item.has-dropdown:hover .sub-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
}

/* Dropdown Item with Sub-dropdown */
.dropdown-item.has-dropdown {
    position: relative;
}

.dropdown-item.has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-item.has-dropdown > a::after {
    content: '▶';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.dropdown-item.has-dropdown:hover > a::after {
    transform: translateX(3px);
}

/* Active States */
.dropdown-menu a.active,
.dropdown-menu a.current-menu-item {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border-left-color: #ff6b35;
}

/* Dropdown Dividers */
.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0.5rem 1rem;
}

/* Dropdown Headers */
.dropdown-header {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Dropdown Styles - Force override desktop styles */
@media (max-width: 768px) {
    #site-navigation.main-navigation ul {
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
    }
    
    #site-navigation.main-navigation li {
        width: 100% !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    }
    
    #site-navigation.main-navigation li:last-child {
        border-bottom: none !important;
    }
    
    #site-navigation.main-navigation a {
        padding: 1rem 1.5rem !important;
        border-radius: 0 !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }
    
    /* Mobile dropdown behavior - Force override desktop positioning */
    .dropdown-menu,
    .sub-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.02) !important;
        border-radius: 0 !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        min-width: auto !important;
        width: 100% !important;
        z-index: auto !important;
    }
    
    .has-dropdown.active .dropdown-menu,
    .menu-item-has-children.active .dropdown-menu,
    .menu-item-has-children.active .sub-menu {
        max-height: 500px !important;
        padding: 0.5rem 0 !important;
    }
    
    .dropdown-menu a,
    .sub-menu a {
        padding: 0.75rem 2rem !important;
        font-size: 0.9rem !important;
        color: #666 !important;
        background: transparent !important;
        border-left: none !important;
        transform: none !important;
    }
    
    .dropdown-arrow {
        transition: transform 0.3s ease !important;
        position: static !important;
        margin-left: 0.5rem !important;
        right: auto !important;
    }
    
    .has-dropdown.active .dropdown-arrow,
    .menu-item-has-children.active .dropdown-arrow {
        transform: rotate(180deg) !important;
    }
    
    /* Mobile sub-dropdown */
    .sub-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.03) !important;
        padding: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        left: auto !important;
        top: auto !important;
        min-width: auto !important;
        width: 100% !important;
        z-index: auto !important;
    }
    
    .dropdown-item.has-dropdown.active .sub-dropdown {
        max-height: 500px !important;
        padding: 0.5rem 0 !important;
    }
    
    .sub-dropdown a {
        padding: 0.75rem 3rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Force mobile layout for all dropdown containers */
    .menu-item-has-children {
        position: relative !important;
    }
    
    /* Override any hover effects on mobile */
    .has-dropdown:hover .dropdown-menu,
    .menu-item-has-children:hover .dropdown-menu,
    .menu-item-has-children:hover .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
    }
}

/* Dropdown Animation Keyframes */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Dropdown Hover Effects */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    z-index: -1;
}

/* Dropdown Menu Item Icons (optional) */
.dropdown-menu a[href*="create"]::before {
    content: '➕';
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.dropdown-menu a[href*="edit"]::before {
    content: '✏️';
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.dropdown-menu a[href*="templates"]::before {
    content: '🎨';
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.dropdown-menu a[href*="profile"]::before {
    content: '👤';
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.dropdown-menu a[href*="dashboard"]::before {
    content: '📊';
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.dropdown-menu a[href*="settings"]::before {
    content: '⚙️';
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.dropdown-menu a[href*="logout"]::before {
    content: '🚪';
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* ========================================
   ENHANCED DROPDOWN STATES & ANIMATIONS
   ======================================== */

/* Hovered state for desktop */
.has-dropdown.hovered .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown.hovered .dropdown-arrow {
    transform: rotate(180deg);
}

/* Active state for mobile */
.has-dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 0.75rem 0;
}

.has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Loading states */
.dropdown-menu a.loading {
    position: relative;
    color: #999 !important;
    pointer-events: none;
}

.dropdown-menu a.loading::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Touch feedback for mobile */
.dropdown-toggle.touch-active {
    background: rgba(255, 107, 53, 0.1);
    transform: scale(0.98);
}

/* Dropdown open animation */
.dropdown-menu.dropdown-open {
    animation: dropdownFadeIn 0.3s ease-out;
}

/* Enhanced hover effects */
.dropdown-menu a:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

/* Focus states for accessibility */
.dropdown-toggle:focus,
.dropdown-menu a:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Dropdown menu item transitions */
.dropdown-menu li {
    opacity: 0;
    transform: translateY(10px);
    animation: dropdownItemSlideIn 0.3s ease-out forwards;
}

.dropdown-menu li:nth-child(1) { animation-delay: 0.1s; }
.dropdown-menu li:nth-child(2) { animation-delay: 0.15s; }
.dropdown-menu li:nth-child(3) { animation-delay: 0.2s; }
.dropdown-menu li:nth-child(4) { animation-delay: 0.25s; }
.dropdown-menu li:nth-child(5) { animation-delay: 0.3s; }
.dropdown-menu li:nth-child(6) { animation-delay: 0.35s; }

@keyframes dropdownItemSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown menu backdrop blur effect */
.dropdown-menu {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Enhanced mobile styles */
@media (max-width: 768px) {
    .dropdown-menu {
        border-radius: 0;
        margin: 0 1rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-menu a {
        border-radius: 8px;
        margin: 0.25rem 0;
    }
    
    .dropdown-menu a:hover {
        transform: translateX(0);
        background: rgba(255, 107, 53, 0.1);
    }
    
    /* Mobile dropdown slide animation */
    .dropdown-menu.active {
        animation: mobileDropdownSlide 0.3s ease-out;
    }
    
    @keyframes mobileDropdownSlide {
        from {
            max-height: 0;
            opacity: 0;
        }
        to {
            max-height: 500px;
            opacity: 1;
        }
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .dropdown-menu {
        border: 2px solid #000;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    
    .dropdown-menu a:hover {
        background: #000;
        color: #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .dropdown-menu,
    .dropdown-arrow,
    .dropdown-menu a {
        transition: none;
        animation: none;
    }
    
    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* Print styles */
@media print {
    .dropdown-menu {
        display: none !important;
    }
    
    .dropdown-toggle {
        pointer-events: none;
    }
}

/* OAuth Styles */
.oauth-section {
    margin-bottom: 2rem;
    text-align: center;
}

.google-oauth-section,
.linkedin-oauth-section {
    margin-bottom: 1rem;
    text-align: center;
}

.oauth-divider {
    position: relative;
    margin: 1.5rem 0;
    text-align: center;
}

.oauth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

.oauth-divider span {
    background: #fff;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Google Sign-In Button Customization */
.g_id_signin {
    margin: 0 auto;
    display: inline-block;
}

/* LinkedIn Sign-In Button */
.linkedin-signin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    background: #0077b5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 280px;
    height: 48px;
    box-shadow: 0 2px 4px rgba(0, 119, 181, 0.2);
}

.linkedin-signin-btn:hover {
    background: #005885;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
}

.linkedin-signin-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 119, 181, 0.2);
}

.linkedin-icon {
    flex-shrink: 0;
}

.linkedin-signin-btn span {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .oauth-section {
        margin-bottom: 1.5rem;
    }
    
    .google-oauth-section,
    .linkedin-oauth-section {
        margin-bottom: 0.75rem;
    }
    
    .oauth-divider {
        margin: 1rem 0;
    }
    
    .linkedin-signin-btn {
        min-width: 240px;
        height: 44px;
        font-size: 14px;
        padding: 10px 20px;
    }
}

 