/* FONTS */

/* Anisha font */
/* @font-face {
  font-family: 'Anisha';
  src: url('fonts/anisha-bold.woff2') format('opentype');
  font-weight: normal;
  font-style: normal;
} */

/* Times New Roman */
/* @font-face {
  font-family: 'Times New Roman';
  src: local('Times New Roman'), url('https://example.com/fonts/times-new-roman.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
} */

/* Garamond */
/* @font-face {
    font-family: 'Garamond';
    src: local('Garamond'), url('https://example.com/fonts/garamond.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  } */

/* Default body font */

/* Georgia */
@font-face {
    font-family: 'Georgia';
    src: local('Georgia'), url('https://example.com/fonts/georgia.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

/* Default body font */
body {
    font-family: 'Georgia', serif;
}

header {
    padding: 20px 0;
}

#hero {
    background-color: #f2f2f2;
    margin-top: 0;
    padding-top: 0;
}

.index_container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
}

.carousel-inner {
    width: 100%;
    padding-top: 66px;
    height: 600px;
}

.carousel-item {
    position: relative;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 767px) {
    .carousel-inner {
        height: 400px;
    }

    #imageCarousel .carousel-item img {
        height: 400px;
        object-fit: contain;
    }
}

.navbar,
.navbar-light .navbar-nav .nav-link,
.home-link {
    font-family: 'Georgia', sans-serif;
    color: #000000 !important;
}

/* Navbar specific styles */
.navbar {
    background: #ffffff;
}

/* Navbar brand and company name styles */
.navbar-brand img {
    max-height: 40px;
    width: auto;
    margin-right: 10px;
}

.company-name {
    margin-right: 20px;
}

/* Navbar toggler styles */
.navbar-toggler {
    color: rgb(0, 0, 0);
    background-color: transparent;
    border: none;
}

/* Styling for navbar links */
.navbar-nav .nav-item .nav-link {
    text-decoration: none;
    transition: border-bottom 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    border-bottom: 1px solid;
}

.btn-primary.view_product {
    background-color: #FEE47A;
    color: #000;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary.view_product:hover,
.btn-primary.view_product:focus {
    background-color: #FECC00;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary.view_product:active {
    background-color: #FEE47A;
    transform: translateY(1px);
}

.contact {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact__form textarea {
    resize: vertical;
}

.contact__form input[type="submit"] {
    background-color: #FEE47A;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact__form input[type="submit"]:hover {
    background-color: #FECC00;
}

.site-footer {
    background: #000000;
    color: white;
    font-size: small;
}

.site-footer a {
    color: #ffffff;
}

.footer-contact p {
    margin-bottom: 5px;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.bottom {
    padding-top: 10px;
    border-top: 1px solid #444;
}

#company-description {
    background-color: #f5f5f5;
}

#company-description .carousel-inner img {
    border-radius: 5px;
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.contact-card-pop {
    max-width: 100%;
}

.contact-card-pop h5 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-card-pop .form-group {
    margin-bottom: 20px;
}

.contact-card-pop .btn-wrap {
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-card-pop {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .contact-card-pop .form-group {
        margin-bottom: 15px;
    }

    .contact-card-pop .btn-wrap {
        margin-top: 20px;
    }
}

/* Styling for combined contact and map section */
.contact-section {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.contact-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-card,
.map-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 100%;
}

.map-card iframe {
    border-radius: 5px;
    width: 100%;
    height: 300px;
}

.room-section {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.room-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.room-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px);
    margin-bottom: 20px;
}

.room-card h5 {
    text-align: center;
    margin-bottom: 15px;
}

.room-carousel {
    width: 100%;
    height: 200px;
}

.room-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .room-card {
        width: 100%;
    }

    .contact-container {
        padding: 20px;
    }
}


.fade-in {
    animation: fadeIn 2s ease-in;
}
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}