body {
    font-family: "Urbanist", sans-serif;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Marcellus', serif;
}

a{
    text-decoration: none;
    color: #000;
}

.top-bar {
    background: #262433;
    color: #fff;
    font-size: 1rem;
    padding: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
    margin: auto 15px auto 0;
    text-decoration: none;
}

.top-bar i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

.theme-i {
    color: #e6614e;
}

.navbar {
    background: #fff;
}

.navbar-brand img {
    width: 220px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #262433;
}

.navbar-nav .nav-link:hover {
    color: #e6614e;
}

.banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.main-title {
    position: absolute;
    top: 22%;
    left: 10%;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .main-title {
        font-size: 2rem;
        left: 5%;
        top: 10%;
    }
}

.about-section {
    background: #fff;
    padding: 60px 0;
}

.about-section .heading-icon img {
    width: 60px;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #e6614e;
}

.animation-btn {
    background: #e6614e !important;
    color: #fff;
    border: none;
    animation: zoomInOut 1s infinite;
}

@keyframes zoomInOut {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.feature-list {
    margin-bottom: 32px;
}

.feature-list .list-group-item {
    border: none;
    background: transparent;
    font-size: 1.20rem;
    color: #23212a;
    padding-left: 0;
    display: flex;
    align-items: center;
}

.feature-list .list-group-item i {
    color: #e7584a;
    font-size: 1.2rem;
    margin-right: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e6614e;
    margin-bottom: 35px;
    text-align: center;
}

.owl-theme .item img {
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
    width: 100%;
}

.contact-section {
    padding: 60px 0;
    color: #fff;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* height: 100vh; */
    z-index: 0;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 58, 58, 0.4);
    z-index: 1;
}

.contact-section>* {
    position: relative;
    z-index: 2;
}

.contact-section .contact-title {
    font-size: 4rem;
    font-weight: 300;
}

.contact-section h2 {
    color: #fff;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
}

.contact-form label {
    color: #fff;
    font-weight: 600;
}

.contact-form .btn {
    background: #e6614e;
    border: none;
}

.amenities-section {
    background: #f9f9f9;
    /* padding: 60px 0; */
}

.amenities-section h2 {
    color: #e6614e;
    font-weight: 700;
}

.location-section img {
    width: 100%;
    border-radius: 16px;
    margin-top: 20px;
}

.footer {
    background: #0c2647;
    color: #fff;
    padding: 50px 0 10px 0;
}

.footer-logo img {
    width: 180px;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: #f2a65a;
}

.footer-icon {
    width: 40px;
    height: 40px;
    background: #d18b48;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    font-size: 1.2rem;
}

.btn-custom {
    background: #c99363;
    color: #fff;
    border: none;
}

.btn-custom:hover {
    background: #b37f52;
    color: #ccc !important;
}

.social-icons a {
    font-size: 24px;
    margin-right: 15px;
    color: #fff;
}

.social-icons a:hover {
    color: #f2a65a;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    margin-top: 20px;
    color: #ccc;
}

.blog-card {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    /* overflow: hidden; */
}

.blog-img {
    position: relative;
}

.blog-img img {
    width: 100%;
    height: auto;
}

.blog-card .date-circle {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 0.4rem solid #e74c3c;
    border-radius: 50%;
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
    color: #e74c3c;
}

.blog-card .date-circle span {
    display: block;
    font-size: 14px;
}

.blog-card .card-body {
    position: relative;
}

.read-btn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    width: 90%;
    padding: 10px 20px;
    background: #2c2c38;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}

.read-btn:hover {
    background: #1a1a24;
}

.blog-detail-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-detail-card .date-circle {
    position: absolute;
    bottom: -30px;
    right: 5%;
    background: white;
    border: 0.4rem solid #e74c3c;
    border-radius: 50%;
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
    color: #e74c3c;
    transition: all 0.3s ease;
}

.blog-detail-card .date-circle:hover {
    background: #e74c3c;
    color: white;
    transform: scale(1.1);
}

.blog-detail-card .date-circle span {
    display: block;
    font-size: 14px;
}

.blog-detail-card .card-body {
    position: relative;
}

.recent-posts {
    background: #faf5ef;
    padding: 20px;
    transition: background 0.3s ease;
}

.recent-posts:hover {
    background: #f4ede6;
}

.recent-posts h4 {
    font-weight: lighter;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.recent-posts h4::after {
    content: "";
    display: block;
    width: 25%;
    height: 2px;
    background-color: #e6614e;
    margin-top: 5px;
    transition: width 0.3s ease;
}

.recent-posts h4:hover::after {
    width: 50%;
}

.post-item {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    transition: transform 0.3s ease;
}

.post-item:hover {
    transform: translateX(5px);
}

.post-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.post-item img:hover {
    transform: scale(1.05);
}