* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #000;
}

button {
    border: none;                /* Removes border */
    box-shadow: none;            /* Removes shadow/raised effect */
    background-image: none;      /* Removes gradient */
    outline: none;               /* Removes focus outline (use with caution for accessibility) */
    text-shadow: none;           /* Removes text shadow if present */
}

.header-headline {
    padding: 10px;
    background-color: #b6192e;
    color: #fff;
    font-family: Oswald;
    text-align: center;
}

.header-profile {
    display: flex;
    background-color: #2a2a2a;

    justify-content: center; /* Pulls items to the middle */
    align-items: center;
}

.column {
    padding: 15px;
    flex: 0 1 auto;
}

.email {
    overflow-wrap: break-word;
    word-wrap: break-word; /* Legacy support for older browsers */
    word-break: normal;
    font-family: Oswald;
}

.telephone {
    text-decoration: none;
    color: #f1f1f1;
    font-family: Oswald;
}

.header-profile-logo {
    font-family: Oswald;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
}

.header-profile-logo img {
    /* Try to keep scaled logo as sharp/crisp as possible */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.header-special-buttons {
    display: flex;
    gap: 3px; /* Adds a gap between columns */
    background-color: #fff;
}

.header-special-buttons-left,
.header-special-buttons-right {
    flex: 1; 
    padding: 15px;
}

.header-special-buttons-left {
    background-color: #b6192e;

    text-align: right;
}

.header-special-buttons-right {
    background-color: #eeb702;
}

.btn-signup-news-letter, .btn-shop-now {
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);

    font-family: Oswald;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;

    transition: background-color 0.5s ease-in-out 0.02s;
}

.btn-signup-news-letter {
    background-color: #d81f38;    
}

.btn-shop-now {
    background-color: #ffd035; /* #bb9107 */
    color: #8f700b;
}

.btn-signup-news-letter:hover, .btn-shop-now:hover {
    background-color: #000;
    cursor: pointer;
    color: #fff;
}

.header-menu {
    background-color: #2a2a2a;
    padding: 10px;
    text-align: center;
}

.header-menu ul {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.header-menu ul,
.header-menu ul li {
    padding: 0;
    margin: 0;
}

.header-menu ul li {
    float: left;
    list-style: none;
    margin: 0px 10px;
    color: #fff;
    font-family: Oswald;
    text-transform: uppercase;

    padding: 5px 10px;
    border-radius: 5px;

    cursor: pointer;
}

.header-menu li.selected {
    background-color: #f1f1f1;
    color: #2a2a2a;
    
}

.app-content {
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 50%;

    font-family: Oswald;
}

.app-content ul {
    margin-left: 30px;
}

.app-content ul li {
    list-style: square;
}

.app-content-wrapper {
    background-image: url('../img/c-01.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

#app-content-services,
#app-content-deals,
#app-content-featured,
#app-content-coming-soon {
    background-color: rgb(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
}

#app-content-coming-soon,
#app-content-deals,
#app-content-featured {
    display: none;
}

.featured-link {
    margin-top: 20px;
}

.featured-link a:link, .featured-link a:visited {
    text-decoration: none;
    color: #fff;
}

.featured-link a {
    display: inline-block;
    padding: 15px;
    text-decoration: none;
    background-color: #b6192e;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Pop-up alert overlay */
.pop-alert {
    position: fixed;
    inset: 0;
    display: none;              /* Shown via JS */
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
}

.pop-alert-box {
    background-color: #f1f1f1;
    color: #333;
    padding: 20px 24px;
    border-radius: 8px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    font-family: Oswald;
    overflow: hidden; /* Ensure inner image corners are clipped */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.pop-alert-message {
    margin-top: 30px;
    font-size: 1.05rem;
    padding: 8px 12px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: background-color 0.3s ease;
    text-align: center;
}

/* Pulsating yellow highlight animation */
@keyframes pulsateYellow {
    0% {
        background-color: rgba(255, 245, 180, 0.8);
        border: 2px dashed rgba(200, 150, 0, 1);
        box-shadow: 0 0 0 0 rgba(238, 183, 2, 0.7);
    }
    50% {
        background-color: rgba(255, 250, 200, 0.6);
        border: 2px dashed rgba(200, 150, 0, 0.8);
        box-shadow: 0 0 15px 5px rgba(238, 183, 2, 0.5);
    }
    100% {
        background-color: transparent;
        border: 2px dashed transparent;
        box-shadow: 0 0 0 0 rgba(238, 183, 2, 0);
    }
}

.pop-alert-message.highlight-pulse {
    animation: pulsateYellow 2.5s ease-out forwards;
}

/* Slide content in from left (left → right) when rotating pop-alert */
@keyframes popAlertSlideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0.6;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide content in from right (right → left) when rotating pop-alert */
@keyframes popAlertSlideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0.6;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.pop-alert-message.pop-alert-slide-in-left,
.pop-alert-box img.pop-alert-slide-in-left {
    animation: popAlertSlideInFromLeft 0.45s ease-out forwards;
}

.pop-alert-message.pop-alert-slide-in-right,
.pop-alert-box img.pop-alert-slide-in-right {
    animation: popAlertSlideInFromRight 0.45s ease-out forwards;
}

.pop-alert-box img {
    display: block;
    width: 190px;
    height: 190px;
    object-fit: cover;
    margin: 16px auto 0;
    /* Make the image perfectly circular */
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.pop-alert-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: #000;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    
}

.pop-alert-close:hover {
    color: #eeb702;
}

/* Styles inside here only apply if the screen is 500px or less */
@media screen and (max-width: 570px) {
    .app-content {
        width: 100%;
        font-size: large;
    }
}