/* Resume Maker Page Styles */

/* Hero Section */
.resume-hero-section {
    position: relative;
    padding: 4rem 5% 5rem;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.resume-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('../assets/svg/shape-dots.svg') no-repeat right top;
    background-size: 300px;
    opacity: 0.6;
}

.accent-shape {
    position: absolute;
    background-color: var(--primary-color);
    opacity: 0.05;
    border-radius: 50%;
}

.shape1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -100px;
}

.shape2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.resume-hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.resume-hero-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.resume-hero-text {
    flex: 1;
}

.resume-hero-text .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.version-tag {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 600;
    position: relative;
    top: -5px;
}

.resume-hero-text .hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.resume-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(var(--primary-color-rgb), 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.status-dot.active {
    background-color: #4caf50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.status-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.resume-hero-image {
    flex: 1;
    position: relative;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.5s ease;
}

.preview-image:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 6s infinite ease-in-out alternate;
}

.badge1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.badge2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.badge3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-15px); }
}

/* Features Section */
.resume-features-section {
    padding: 5rem 5%;
    background-color: var(--background-color);
    text-align: center;
}

.resume-features-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.feature-icon object {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Coming Soon Section */
.coming-soon-section {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
}

.coming-soon-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.coming-soon-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.coming-soon-text {
    flex: 1;
}

.version-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.coming-soon-text .section-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    text-align: left;
}

.coming-soon-text .section-description {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.new-features-list {
    list-style-type: none;
    margin-bottom: 2.5rem;
}

.new-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-color);
}

.new-features-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.notification-signup {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.notification-signup h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.notification-form {
    display: flex;
    gap: 0.8rem;
}

.notification-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.notification-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.notification-form .btn {
    padding: 0 1.5rem;
}

.coming-soon-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coming-soon-preview {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.v2-preview {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--primary-color-rgb), 0.3);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-label {
    background-color: white;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite ease-in-out;
}

.coming-soon-label i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.coming-soon-label span {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* CTA Section */
.resume-cta-section {
    padding: 4rem 5%;
    background-color: var(--background-color);
    text-align: center;
}

.resume-cta-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    background-color: rgba(var(--primary-color-rgb), 0.05);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.cta-card .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background-color: var(--background-color);
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
}

.faq-answer {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .resume-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .resume-hero-text .hero-title {
        justify-content: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .coming-soon-content {
        flex-direction: column-reverse;
    }
    
    .coming-soon-text .section-title,
    .coming-soon-text .section-description {
        text-align: center;
    }
    
    .new-features-list {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .resume-hero-text .hero-title {
        font-size: 2.8rem;
    }
    
    .resume-hero-text .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .coming-soon-text .section-title {
        font-size: 2rem;
    }
    
    .notification-form {
        flex-direction: column;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .resume-hero-text .hero-title {
        font-size: 2.2rem;
    }
    
    .version-tag {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-label {
        padding: 1rem 1.5rem;
    }
    
    .coming-soon-label span {
        font-size: 1.2rem;
    }
    
    .notification-signup {
        padding: 1.2rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-card h2 {
        font-size: 1.7rem;
    }
}
