h1 {
    font-family: "lora", serif;
    margin-top: 150px;
}

h2 {
    font-family: "lora", serif;
}

p {
    font-family: "lora", serif;
    text-align: center;
}

.heading-section {
    margin-top: 150px;
    margin-bottom: 150px;
}

.local-h1 {
    margin-top: 80px;
    font-family: "lora", serif;
}

.heading-paragraph {
    font-family: "lora", serif;
    color: #666666;
    padding-top: 10px;
}

.attraction-box {
    margin-bottom: 100px;
}

.learn-more {
    font-family: "lora", serif;
    display: inline-flex;
    /* Use flexbox to center the content */
    align-items: center;
    /* Vertically center the content */
    width: 50%;
    height: 50px;
    border-color: #222222;
    /* Set the border color */
    background-color: #222222;
    /* Set the button background color */
    margin-left: auto;
    margin-right: auto;
}

.learn-more:hover {
    background-color: #FF8484;
    border-color: #FF8484;
}

.learn-more-color {
    font-family: "lora", serif;
    display: inline-flex;
    /* Use flexbox to center the content */
    align-items: center;
    /* Vertically center the content */
    width: 50%;
    height: 50px;
    border-color: #FF8484;
    /* Set the border color */
    background-color: #FF8484;
    /* Set the button background color */
    margin-left: auto;
    margin-right: auto;
}

.learn-more-color:hover {
    background-color: #ec7474;
    border-color: #ec7474;
}

.btn {
    color: white
}

.btn:hover {
    color: black;
}


.card {
    border: none;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    /* Ensure images do not exceed card boundaries */
    height: 400px;
    /* Set a fixed square height for the cards */
    display: flex;
    /* Align contents vertically */
    flex-direction: column;
    /* Align contents vertically */
    justify-content: space-between;
    /* Add space between title/text and button */
}

.card-img-top {
    height: 100%;
    /* Set the image height to 100% of the card height */
    object-fit: cover;
    /* Maintain aspect ratio and fill the square */
}

.card-title {
    font-family: "lora", serif;
    font-weight: bold;
    margin-bottom: 0;
    margin-top: 5px;
}

.card-text {
    font-family: "lora", serif;
    color: #666666;
    padding-top: 20px;
    padding-bottom: 10px;
    overflow: hidden;
    /* Hide any overflowing text */
    text-overflow: ellipsis;
    /* Add ellipsis for text that overflows */
}

.card-section {
    margin-bottom: 100px;
}

.col-md-4 {
    flex-basis: 33.3333%;
    max-width: 33.3333%;
}


.row {
    margin: 0px 0px 100px 0px;
}


.hero-section {
    margin-bottom: 50px;
    background-color: #f9f9f9;
}

.text-secondary {
    line-height: 30px;
    width: 80%;
    margin-right: auto;
    padding-bottom: 150px;
}

.img-fluid {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: #222222 1px solid;
}

.card-title {
    color: #222222;
    font-family: 'lora', serif;
}

.card-text {
    color: #666666;
    font-family: 'lora', serif;
}

.btn-back-to-top{
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    background-color: #222222;
}

.btn-back-to-top:hover{
    background-color: #FF8484;
    border-color: #FF8484;
}

.color {
    background-color: #2e2e2e;
    color: white;
}

.thumbnail img {
    height: 200px;
    /* Set the desired height for the images */
    object-fit: cover;
    /* Maintain aspect ratio and fill the available space */
}

.bg-color {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Responsive adjustments for cards */
@media (max-width: 1000px) {
    .col-md-4 {
        flex-basis: 50%;
        max-width: 50%;
    }
}

@media (max-width: 770px) {
    .col-md-4 {
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    h2 {
        margin-top: 50px;
    }
}


@media (max-width: 1000px) {
    .justify-content-md-between.justify-content-center {
        justify-content: center !important;
    }

    .col-md-6.d-none.d-md-block {
        display: none !important;
    }

    h1 {
        width: 100%;
        text-align: center;
    }

    .text-secondary {
        width: 100%;
        text-align: center;
    }

}