/* Success Page Specific Styles */

/* Success Hero Section */
.success-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/success-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 120px 40px 60px;
}

.success-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.success-hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: white;
}

.success-hero-underline {
    width: 200px;
    height: 6px;
    background: #ff1b8d;
    margin: 0 auto 50px;
    border-radius: 3px;
}

.success-message-content {
    margin-bottom: 50px;
}

.success-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    color: white;
    margin-bottom: 30px;
}

.success-hero-subdescription {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    color: white;
    margin-bottom: 0;
}

/* Home Button */
.home-button {
    background: #ff1b8d;
    color: white;
    border: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.home-button:hover {
    background: #e6186e;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 27, 141, 0.4);
}

.home-button:active {
    transform: translateY(-1px);
}

/* Footer on Success Page */
.footer {
    background: #000;
    color: white;
    padding: 60px 0;
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h3 {
    color: #ff1b8d;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff1b8d;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
    margin-top: 20px;
    width: 100%;
    text-align: left;
}

/* Success Check Animation */
.success-check {
    width: 80px;
    height: 80px;
    border: 4px solid #ff1b8d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    animation: successPulse 2s infinite;
}

.success-check::after {
    content: '✓';
    font-size: 40px;
    color: #ff1b8d;
    font-weight: bold;
}

@keyframes successPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 27, 141, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 27, 141, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 27, 141, 0);
    }
}

/* Responsive Design for Success Page */
@media (max-width: 1200px) {
    .success-hero {
        padding: 120px 30px 60px;
    }
    
    .success-hero-title {
        font-size: 4rem;
    }
    
    .success-hero-content {
        max-width: 900px;
    }
}

@media (max-width: 900px) {
    .success-hero {
        padding: 100px 20px 50px;
        background-attachment: scroll;
    }
    
    .success-hero-title {
        font-size: 3rem;
        margin-bottom: 25px;
    }
    
    .success-hero-underline {
        width: 150px;
        height: 5px;
        margin-bottom: 40px;
    }
    
    .success-hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .success-hero-subdescription {
        font-size: 0.95rem;
    }
    
    .success-message-content {
        margin-bottom: 40px;
    }
    
    .home-button {
        padding: 15px 40px;
        font-size: 0.9rem;
    }
    
    .success-check {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .success-check::after {
        font-size: 35px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .success-hero {
        padding: 90px 15px 40px;
    }
    
    .success-hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .success-hero-underline {
        width: 120px;
        height: 4px;
        margin-bottom: 35px;
    }
    
    .success-hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .success-hero-subdescription {
        font-size: 0.9rem;
    }
    
    .success-message-content {
        margin-bottom: 35px;
    }
    
    .home-button {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
    
    .success-check {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .success-check::after {
        font-size: 30px;
    }
    
    .footer {
        padding: 40px 0;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.success-hero-content {
    animation: fadeInUp 1s ease-out;
}

.success-hero-title {
    animation: slideInFromTop 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.success-hero-underline {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.success-message-content {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.home-button {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

/* Success Page Specific Typography */
.success-hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-hero-description,
.success-hero-subdescription {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hover Effects */
.success-hero-content:hover .success-hero-underline {
    width: 220px;
    transition: width 0.3s ease;
}

/* Loading State (for potential redirects) */
.home-button.loading {
    background: #999;
    cursor: not-allowed;
    transform: none;
}

.home-button.loading:hover {
    background: #999;
    transform: none;
    box-shadow: none;
}

/* Additional Success Elements */
.success-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    opacity: 0.8;
}

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

.success-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ff1b8d;
    display: block;
}

.success-stat-label {
    font-size: 0.9rem;
    color: white;
    margin-top: 5px;
}

@media (max-width: 600px) {
    .success-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .success-stat-number {
        font-size: 1.5rem;
    }
    
    .success-stat-label {
        font-size: 0.8rem;
    }
}