body {
    margin: 0;
    padding: 0;
    font-family: 'Prompt', sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

/* Banner */
header {
    width: 100%;
    aspect-ratio: 16/5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    position: relative;
    padding: 0.5rem;
    font-family: "Anton", sans-serif;
}

.banner-text {
    width: 100%;
    position: absolute;
    top: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-text h1 {
    font-size: 5rem;
    color: #fff;
}

.box-rb {
    display: flex;
    font-size: 2rem;
}

/* Reviews & Blog Button */
.btn-container {
    width: 100%;
    border: 1px #333 solid;
    font-family: "Anton", sans-serif;
}

.section-btn {
    padding-left: 15px;
    margin-left: 2%;
}

.section-btn button {
    width: 9rem;
    aspect-ratio: 1/1;
    font-size: 1.4rem;
    border: 1px #000000 solid;
    color: #000;
    background-color: #fff;
    outline: none !important;
}

.section-btn button:hover {
    color: #D4B260;
    background-color: #000;
    border: 1px #000000 solid;
}

button.btn-blogs {
    margin-left: -6px;
}

#btn-active {
    color: #D4B260;
    background-color: #000;
    border: 1px #000000 solid;
}

/*      Reviews & Blog Text      */
.txt-container {
    width: 100%;
    padding-left: 4rem;
    font-family: "Anton", sans-serif;
}

.txt-container h1 {
    height: 8rem;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    font-size: 3rem;
    color: #D4B260;
}

h1#txt-hidden {
    display: none;
}

/* Content Card */
.container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1em;
    width: 100%;
    justify-content: center;
    margin: 20px auto 40px auto;
}

.card {
    width: 255px;
    color: #fff;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    aspect-ratio: 3/4;
    border-radius: 1px !important;
    border: none !important;
}

.card h2,
.card p {
    position: relative;
    z-index: 2;
}

/* Content in Card */
.content-card {
    width: 100%;
    height: 32%;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: right;
    border-radius: 0 0 1px 1px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.5);
}

.content-card:hover {
    height: 100%;
    border-radius: 1px;
}

.content-card strong {
    font-size: 1.2rem;
    text-align: left;
    display: -webkit-box; 
    display: block;
    -webkit-line-clamp: 1; /* Number of lines to show */ 
    line-clamp: 1;
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    text-overflow: ellipsis;
    white-space: wrap; /* Keeps text on a single line */
}

.content-card p {
    margin: 0.5rem 0;
    display: none;
    font-size: 1rem;
}

.content-card:hover p {
    text-align: left;
    display: -webkit-box; 
    display: flex;
    -webkit-line-clamp: 1; /* Number of lines to show */ 
    line-clamp: 1; /* Number of lines to show */ 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    text-overflow: ellipsis;
    white-space: wrap; /* Keeps text on a single line */
}

.content-card:hover button {
    display: flex;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.content-card a {
    text-decoration: none;
}

.content-card button {
    display: none;
    position: static;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    border: 1px #fff solid;
    border-radius: 18px;
    color: #fff;
    background: transparent
}

.content-card button:hover {
    border-color: #D4B260;
    background-color: #D4B260;
}

/* next prev btn */
section.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
}

div.next-btn-container {
    width: 100%;
    padding: 2rem 0 5rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.next-btn-container button {
    width: 2.2rem;
    height: 2.2rem;
    color: #fff;
    background-color: #000;
    border: none;
}

.next-btn-container button:hover {
    border: 1px #fff solid;
    transform: scale(1.05);
    transition: 0.3s ease;
}

.next-btn-container button.active {
    background-color: #D4B260;
}

button#prevBtn,
button#nextBtn {
    width: 6rem;
    height: 2.2rem;
}

button a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}

.page-link {
    padding: 0;
    border: none;
    background-color: none;
}