/* =================================
   MAIN ENTRY POINT (Bundler)
================================= */

/* 1. Global Setup (Variables, Reset, Typography) */
@import url('global.css');
@import url('header.css');
@import url('home.css');
@import url('footer.css');
@import url('media-query.css');

/* Thank You Page Styles */
.thank-you-section {
    padding: 150px 0 100px;
    background-color: var(--clr-white);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background-color: var(--clr-gold);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(184, 151, 91, 0.2);
}

.thank-you-title {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.thank-you-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.thank-you-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--clr-black);
    color: var(--clr-white);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--clr-black);
}

.thank-you-btn:hover {
    background-color: transparent;
    color: var(--clr-black);
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 120px 0 80px;
    }
    .thank-you-title {
        font-size: 36px;
    }
    .thank-you-text {
        font-size: 16px;
    }
}