/*
 * sections-tack.css - Thank you page styles
 * Used by page-tack.php and page-tack-bestallning.php
 */

.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: #FFFFFF;
}

.thank-you-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

.thank-you-content {
    text-align: center;
}

.thank-you-icon {
    margin-bottom: 32px;
}

.thank-you-icon svg {
    width: 80px;
    height: 80px;
}

.thank-you-title {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3;
    color: #000;
    margin-bottom: 20px;
}

.thank-you-message {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.thank-you-signature {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-top: 24px;
    margin-bottom: 16px;
}

.thank-you-logo {
    margin-bottom: 32px;
        display: flex;
    justify-content: center;
}

.thank-you-logo-img {
    height: 32px;
    width: auto;
}

.thank-you-actions {
    margin-top: 8px;
}

.btn-thank-you {
    display: inline-block;
    background: #000000;
    color: #FFFFFF;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    padding: 15.5px 30px;
    border-radius: 53px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-thank-you:hover {
    background: #D14F09;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 100px 20px 60px;
        min-height: calc(100vh - 150px);
    }

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

    .thank-you-icon svg {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .thank-you-title {
        font-size: 24px;
    }

    .thank-you-message {
        font-size: 15px;
    }
}