﻿@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&display=swap');

.deals-background {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)), url('/Images/AccomodationDeals.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 5%;
}

.deals-overlay {
    width: 100%;
    display: flex;
    justify-content: center;
}

.deals-content {
    width: 100%;
    max-width: 950px;
    background: rgba(0,0,0,0.60);
    backdrop-filter: blur(7px);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.7);
}

    .deals-content h1 {
        color: white;
        font-size: 56px;
        font-family: 'Cinzel', serif;
        text-transform: uppercase;
        letter-spacing: 4px;
        text-align: center;
        margin: 0 0 40px 0;
        text-shadow: 0 5px 15px rgba(0,0,0,0.7);
    }

.deals-info img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.deals-info h2 {
    color: #ffd369;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

.deals-info p {
    color: #f5f5f5;
    font-size: 18px;
    line-height: 1.9;
    font-family: 'Segoe UI', sans-serif;
}

.offer-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 34px;
    background: #ffd369;
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

    .offer-button:hover {
        background: white;
        transform: translateY(-3px);
    }

.deals-info hr {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 50px 0;
}

@media (max-width: 768px) {

    .deals-background {
        padding: 40px 5%;
        background-attachment: scroll;
    }

    .deals-content {
        padding: 35px;
    }

        .deals-content h1 {
            font-size: 40px;
            letter-spacing: 3px;
            margin-bottom: 30px;
        }

    .deals-info img {
        height: 260px;
    }

    .deals-info h2 {
        font-size: 24px;
    }

    .deals-info p {
        font-size: 16px;
    }

    .offer-button {
        font-size: 16px;
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {

    .deals-background {
        padding: 30px 4%;
    }

    .deals-content {
        padding: 25px;
        border-radius: 18px;
    }

        .deals-content h1 {
            font-size: 28px;
            letter-spacing: 2px;
        }

    .deals-info img {
        height: 200px;
        border-radius: 15px;
    }

    .deals-info h2 {
        font-size: 20px;
    }

    .deals-info p {
        font-size: 14px;
        line-height: 1.6;
    }

    .offer-button {
        width: 100%;
        text-align: center;
        font-size: 15px;
    }
}
