body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
}
.page-title {
    font-family: 'Fredoka One', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 1px; 
    color:#333 !important;
}

.card {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Florida card background */
.card-body.florida {
}

/* Ensuring the image is centered and doesn't stretch */
.card-body.florida::before {
    content: "";
    background-image: url("images/FLBookCover20.png");
    background-size: cover; /* Ensure the image covers the area */
    background-position: center; /* Center the image */
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px; /* Apply rounded corners to the image */
}
    .card-body.texas::before {
        content: "";
        background-image: url("images/TXBookCover.png");
        background-size: cover; /* Ensure the image covers the area */
        background-position: center; /* Center the image */
        background-repeat: no-repeat;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 10px; /* Apply rounded corners to the image */
    }

.card-body.newyork::before {
    content: "";
    background-image: url("images/NYBookCover.png");
    background-size: cover; /* Ensure the image covers the area */
    background-position: center; /* Center the image */
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px; /* Apply rounded corners to the image */
}

.card-body.california::before {
    content: "";
    background-image: url("images/CABookCover.png");
    background-size: cover; /* Ensure the image covers the area */
    background-position: center; /* Center the image */
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px; /* Apply rounded corners to the image */
}

/* Card body for the button */
.card-body {
    background-color: transparent;
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 128.57%; /* Set a padding-top based on 7:9 aspect ratio (or your image's ratio) */
    justify-content: space-between;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* gray overlay */
    display: block; 
    border-radius: 10px;  
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

footer {
    width: 100%; 
    text-align: center; 
    padding: 20px 0; 
    color: #333; 
}

footer p {
    margin: 0; 
}

.btn-primary {
    border-radius: 10px;
    border: 2px solid #777;
    background-color: #fff;
    color: #333;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #efefef; 
    border-color: #999;
    color: #333;
}
