/* WordPress Specific Styles */

/* Remove WordPress default margins */
* {
    box-sizing: border-box;
}

/* Admin bar compatibility */
body.admin-bar {
    padding-top: 32px;
}

/* Site container */
#page {
    width: 100%;
    overflow-x: hidden;
}

/* Thank you page styles */
.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f4ef 0%, #ffffff 100%);
    padding: 20px;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    background: white;
    padding: 60px 40px;
    border-radius: 16px;
    border: 1px solid rgba(175, 0, 0, 0.1);
    animation: slideUp 0.5s ease-out;
}

.thank-you-icon {
    font-size: 80px;
    color: #AF0000;
    margin-bottom: 24px;
    animation: scaleIn 0.6s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(175, 0, 0, 0.08);
    border-radius: 50%;
}

.thank-you-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.thank-you-subtitle {
    font-size: 16px;
    color: #7a7a7a;
    margin-bottom: 32px;
    line-height: 1.6;
}

.thank-you-message {
    font-size: 16px;
    color: #7a7a7a;
    margin-bottom: 40px;
    line-height: 1.8;
    background: #f8f4ef;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #AF0000;
}

.thank-you-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-home {
    padding: 14px 32px;
    background-color: #AF0000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: inline-block;
}

.btn-home:hover {
    background-color: #8b0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(175, 0, 0, 0.3);
}

.btn-home-outline {
    padding: 14px 32px;
    background-color: transparent;
    color: #AF0000;
    border: 2px solid #AF0000;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: inline-block;
}

.btn-home-outline:hover {
    background-color: #AF0000;
    color: white;
}

/* Animations */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 40px 24px;
    }

    .thank-you-title {
        font-size: 32px;
    }

    .thank-you-buttons {
        flex-direction: column;
    }

    .btn-home, .btn-home-outline {
        width: 100%;
    }

    body.admin-bar {
        padding-top: 46px;
    }
}

/* Show header on all pages */
.site-header {
    display: block !important;
}

/* Thank you page styles */
.page-id-11 .site-header {
    display: block !important;
}

/* Hide site title */
.site-title,
p.site-title {
    display: none !important;
}
