
:root {
    --Gold: #ffd700;
    --Gray: #f0f0f0;
    --DarkGold: #e6c200;
    --Black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.deals-container {
    background-image: linear-gradient(rgba(100, 86, 0, 0.4)), url('https://worldmasteritravel.site/assets/img/src/home/special.jpg');            
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    padding: 1.5rem 0;
}

.deals-flex {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

.deals-title {
    color: white;
    font-size: 2.5em;
    margin-bottom: 1rem;
    position: relative;
}

.deals-title span {
    color: var(--Gold);
}

.deals-description {
    font-size: 1.1em;
    color: white;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.deals-cta {
    font-size: 1em;
    color: white;
    margin-bottom: 2rem;
    font-weight: 500;
}

.deals-button {
    padding: 12px 18px;
    font-size: 16px;
    background-color: var(--Gold);
    color: var(--Black);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deals-button:hover {
    transform: scale(1.03);
    background-color: var(--DarkGold);
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1200px) {
    .deals-flex {
        padding: 1.8rem;
        max-width: 90%;
    }
    .deals-title {
        font-size: 2.3em;
    }
    .deals-description {
        font-size: 1.05em;
        max-width: 700px;
    }
}

@media screen and (max-width: 992px) {
    .deals-container {
        padding: 1.2rem 0;
    }
    .deals-flex {
        padding: 1.5rem;
    }
    .deals-title {
        font-size: 2em;
    }
    .deals-description {
        font-size: 1em;
        max-width: 600px;
    }
    .deals-button {
        padding: 10px 16px;
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .deals-container {
        padding: 1rem 0;
    }
    .deals-flex {
        padding: 1.2rem;
    }
    .deals-title {
        font-size: 1.8em;
    }
    .deals-description {
        font-size: 0.95em;
        line-height: 1.5;
        max-width: 90%;
    }
    .deals-cta {
        font-size: 0.9em;
        margin-bottom: 1.5rem;
    }
    .deals-button {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .deals-container {
        padding: 0.8rem 0;
    }
    .deals-flex {
        padding: 1rem;
    }
    .deals-title {
        font-size: 1.5em;
        margin-bottom: 0.8rem;
    }
    .deals-description {
        font-size: 0.9em;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        max-width: 100%;
    }
    .deals-cta {
        font-size: 0.85em;
        margin-bottom: 1.2rem;
    }
    .deals-button {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 12px;
    }
}