﻿/* Wrapper */
.Notification-Wrapper {
    width: 100%;
/*    z-index: 9999;*/
}

/* Bar Background (light beige like image) */
.notification-bar {
    background: #FFF5E6;
}

/* Inner Layout */
.notification-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

/* NEW Badge */
.notification-badge {
    background-color: #ffcf54;
    color: #002855;
    font-weight: 700;
    font-size: 22px;
    padding: 10px 18px;
    border-radius: 25px;
    letter-spacing: 1px;
}

/* Content wrapper */
.notification-content {
    flex: 1;
}

/* Title */
.notification-title {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #002855;
}

/* Paragraph */
.notification-description {
    margin: 4px 0 0 0;
    font-size: 19px;
    font-weight: bold;
    color: #002855;
}

/* CTA Button */
.notification-cta {
    background-color: #ffcf54;
    color: #002855;
    font-size: 18px;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration:none;
}


/* Close button */
.notification-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #333;
}

/* Header spacing */
/*header.sticky {
    margin-top: 80px;
}*/

/* ========================= */
/* RESPONSIVE DESIGN */
/* ========================= */

@media (max-width: 992px) {
    .notification-inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 16px;
    }

    .notification-cta {
        order: 3;
    }

    .notification-close {
        top: 12px;
        transform: none;
    }
}

@media (max-width: 768px) {

    .notification-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 40px 12px 16px;
    }

    .notification-title {
        font-size: 16px;
    }

    .notification-description {
        font-size: 13px;
    }

    .notification-cta {
        font-size: 13px;
        padding: 6px 16px;
    }

    .notification-badge {
        font-size: 14px;
        padding: 4px 10px;
    }
}
