* {
    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 {
    image-rendering: auto;
 }

.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;

    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: #bb9107;
}

.btn-signup-news-letter:hover, .btn-shop-now:hover {
    background-color: #000;
    cursor: pointer;
}

.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;
}

/* 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;
    }
}