* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    overflow-x: hidden;
    background-color: #f0f0f0;
}
.logo-bar {
    background-color: black;
    width: 100vw;
    display: flex;
}
nav {
    background-color: #e21937;
    padding: 10px 10px;
    /* position: fixed;
    z-index: 999; */
    width: 100vw;
    white-space: nowrap;
    overflow-x: auto;
}
nav a {
    color: white;
    margin-right: 30px;
    font-weight: bold;
}
a {
    text-decoration: none;
}
.celeb-bar {
    /* background-image: url("background.jpg"); */
    background-size: cover; /* This makes the image cover the entire element */
    background-repeat: no-repeat; /* This prevents the image from repeating */
    background-position: center center; /* This centers the image */
    padding-bottom: 20px;
    padding-top: 10px;
}

.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
}
button {
    border: none;
    background-color: #e21937;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
}
.search-bar input {
    border: none;
    height: 28px;
    width: 250px;
}
.celeb-names {
    overflow-x: auto;
    white-space: nowrap;
    margin: 10px;
}
.celeb-names button {
    border: none;
    font-weight: bold;
    color: rgba(41, 40, 40, 0.916);
    padding: 5px 10px;
    border-radius: 5px;
    background-color: rgba(210, 210, 210, 0.693);
    margin-right: 5px;
}

.celeb-section {
    display: flex;
    flex-wrap: wrap;
    margin: 30px;
    justify-content: center;
}
.celeb-card img {
    width: 200px;
    height: 150px;
    object-fit: cover; /* Use cover instead of contain */
    border-radius: 10px;
}

.celeb-card {
    margin-left: 20px;
    margin-bottom: 20px;
    /* position: relative; */
}
.celeb-card button {
    margin-left: auto;
    width: 100%;
    /* position: absolute;
  right: 0;
  bottom: 10; */
}
.celeb-card p {
    margin: 5px 0px 10px;
    color: rgba(59, 59, 59, 0.93);
    font-weight: bold;
}
h2 {
    color: rgba(59, 58, 58, 0.83);
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}
.exclusive {
    display: flex;
    background-color: white;
    margin: 20px;
    border-radius: 10px;
    padding: 10px;
}
.exclusive .writing {
    max-width: 500px;
}
.exclusive .picture {
    display: flex;
}
.exclusive-card1,
.exclusive-card2,
.exclusive-card3 {
    display: flex;
    height: 120px;
    width: 180px;
    background-image: url("background.jpg");
    background-size: cover; /* This makes the image cover the entire element */
    background-repeat: no-repeat; /* This prevents the image from repeating */
    background-position: center center; /* This centers the image */
    color: white;
    margin-left: 10px;
}

.exclusive-card1 img,
.exclusive-card2 img,
.exclusive-card3 img {
    display: none;
}
.exclusive-card1 {
    background-image: url("dedawyne.jpg");
}
.exclusive-card2 {
    background-image: url("onedirection.jpg");
}
.exclusive-card3 {
    background-image: url("klaus.jpg");
}
.more-shows1 {
    background-color: white;
    border-radius: 10px;
    margin: 20px;
    padding: 10px;
}
.more-shows {
    display: flex;
    flex-wrap: wrap;
}
.more-shows img {
    width: 80px;
    height: 70px;
    margin-right: 10px;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.shows-card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-right: 20px;
    min-width: 380px;
}
.more-shows a {
    color: rgba(58, 58, 58, 0.742);
    font-weight: bold;
}
footer {
    background-color: black;
    color: white;
    padding: 20px;
    line-height: 25px;
}
.first-block {
    background-color: white;
    margin: 20px;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* max-height: 50px; */
}
.first-block img {
    margin-right: 10px;
    max-width: 80px;
    object-fit: cover;
}
.middlep {
    min-width: 600px;
}
.second-block {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    margin: 20px;
    padding: 10px;
    border-radius: 5px;
    color: rgb(71, 70, 70);
}
.img-holder {
    background-color: #525252;
    display: flex;
    justify-content: center;
    height: 350px;
}
.img-holder img {
    width: 400px;
    min-height: 100%;
    min-width: 400px;
    object-fit: cover;
}
.last-end {
    margin-top: 10px;
}
.fw {
    margin-bottom: 15px;
    min-width: 400px;
}
.fw-title {
    font-weight: bold;
}
.event-card {
    background-color: white;
    margin: 20px 80px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}
.event-card img {
    width: 230px;
    min-width: 230px;
    max-width: 230px;
    height: 150px;
    min-height: 150px;
    max-height: 150px;
    object-fit: cover;
}
.event-card button {
    width: 100%;
    /* margin-left: 20px; */
}
.event-h2 {
    margin-left: 80px;
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .celeb-section {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: start;
        margin: 10px;
    }
    .exclusive {
        flex-direction: column;
    }

    .exclusive-card1 img,
    .exclusive-card2 img,
    .exclusive-card3 img {
        display: flex;
        min-width: 70px;
        width: 70px;
        height: 100%;
        margin-right: 10px;
    }
    .exclusive-card1,
    .exclusive-card2,
    .exclusive-card3 {
        width: 100%;
        height: 50px;
        background-image: url("");
        color: rgb(75, 74, 74);
        font-weight: bold;
        display: flex;
        font-size: 14px;
        align-items: center;
        margin-top: 20px;
        border: 0.5px solid rgba(128, 128, 128, 0.21);
    }
    .exclusive .picture {
        flex-direction: column;
    }
    .shows-card {
        width: 100%;
        border: 1px solid rgba(128, 128, 128, 0.286);
        border-radius: 5px;
    }

    .more-shows1 {
        padding-right: 10px;
    }
    .more-shows a {
        width: 100%;
    }
    .img-holder img {
        height: 100%;
        width: 90%;
    }
    .middlep {
        min-width: 250px;
    }
    .event-card {
        margin: 20px 30px;
        padding: 10px;
        display: block;
        /* max-width: 300px; */
        max-width: 330px;
    }
    .event-h2 {
        margin-left: 20px;
        justify-content: start;
    }
    .event-card img {
        width: 100%;
    }
    .event-card button {
        width: 100%;
        margin-top: 10px;
    }
}
.add {
    border-radius: 5px;
    background-color: #135bb9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.adda {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 10px 0px;
}
.functions {
    display: flex;
    margin-top: 5px;
}
.delete {
    background-color: red;
    border-radius: 5px;
}
.edit {
    text-decoration: none;
    color: white;
    background-color: #135bb9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 5px;
    margin-right: 2px;
    border-radius: 5px;
}
.edit i {
    font-size: 12px;
    margin-left: 3px;
}
.links {
    background-color: white;
    padding: 20px;
    width: 100%;
    margin-top: 20px;
}
.links p {
    font-weight: bold;
    margin-bottom: 20px;
}
.links i {
    color: black;
    font-size: 30px;
}
.line {
    height: 1px;
    width: 100%;
    background-color: rgba(128, 128, 128, 0.419);
    margin-bottom: 20px;
}
.hidden-links {
    display: none;
    margin-top: 10px;
}
.links a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    /* margin-bottom: 10px; */
    margin-left: 20px;
}
