@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: "Bebas Neue", sans-serif;
}

html, body {
    height: auto;
    min-height: 100vh;
}
main {
    min-height: calc(100vh - 498px);
}
h1 {
    font-size: 70px;
}
h2 {
    font-size: 70px;
}
body {
    font-family: "Inter", sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    overflow-x: hidden;
}
.text-primary {
    color: #8ba646 !important;
}
.btn {
    border-radius: 50px;
    padding: 10px 20px;
}
.btn:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}
.bg-primary,
.btn-primary {
    background-color: #8ba646 !important;
    border-color: #8ba646 !important;
}.bg-secondary,
.btn-secondary {
    background-color: #F1F5DA !important
}

.bg-white-gradient-top {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1));
}

.nav-container .row {
    height: 150px;
    font-size: 25px;
}
.nav-container .header-call {
    border-radius: 50%;
    height: 65px;
    width: 65px;
    top: 40px;
    right: calc(25vw - 25px);
}
.nav-container .header-call i {
    padding-top: 10px;
    padding-left: 25px;
    width: 65px;
    height: 65px;
    font-size: 20px;
    line-height: 2.4;
}

.custom-navbar-bg {
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.navbar-nav .nav-link {
    color: #4a4a4a;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 10px;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #8da45f;
}

.logo-img {
    height: 50px;
    width: auto;
}


.phone-info {
    background-color: #8da45f;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.phone-info p {
    font-size: 14px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .navbar-brand {
        margin-right: 0;
    }

    .phone-info {
        display: none !important;
    }
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    height: calc(100vh - 147px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 181px);
    }
}
@media (max-width: 500px) {
    .hero-section {
        height: calc(100vh - 205px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* opacity-50 */
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.hero-title {
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInFromUp 1s ease-out forwards;
}

.hero-subtitle {
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-out forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.hero-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* shadow-lg */
    transition: all 0.3s ease-in-out;
}

.hero-button:hover {
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
}
.scroll-indicator-span {
    animation: scrollBounce 1.2s infinite;
}
.scroll-indicator i {
    font-size: 32px;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.7; }
}

.fadeInStart {
    animation: fadeInFromUp 1s ease-out forwards;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem; /* md:text-7xl */
    }
    .hero-subtitle {
        font-size: 1.5rem; /* md:text-2xl */
    }
}

 .carousel-item {
    padding: 20px 0;
}

.blog-card {
    overflow: hidden;
    height: 100%;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 1rem;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.blog-card-text {
    color: #666;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* Keyframe Animations */
@keyframes fadeInFromUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    animation-timeline: view(65% 10%);

    animation-name: fadeIn;
    animation-fill-mode: both;
    animation-duration: 1ms;
    animation-timing-function: ease;
}

@keyframes fromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.fromLeft {
    animation-timeline: view(block 65% 10%);
    position: relative;

    animation-name: fromLeft;
    animation-fill-mode: both;
    animation-duration: 1ms;
    animation-timing-function: ease;
}

@keyframes fromRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.fromRight {
    animation-timeline: view(block 65% 10%);
    position: relative;

    animation-name: fromRight;
    animation-fill-mode: both;
    animation-duration: 1ms;
    animation-timing-function: ease;
}

.feature-icon {
    width: 4rem; /* w-16 */
    height: 4rem; /* h-16 */
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

.room-card .card-body ul {
    list-style-type: disc;
    list-style-position: inside;
    color: #6c757d;
}

.social-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
}

.map-container {
    height: 24rem;
}

.text-content h2 {
    color: #1B1F0E;
    font-size: 70px;
}
.text-content p {
    color: #555;
    margin-bottom: 15px;
}
.text-content p.subheading {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    line-height: 130%;
    font-size: 32px;
    color: #8AA546;
    margin-bottom: 25px;
}

.image-gallery {
    padding: 15px;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative
}
.image-gallery .row {
    height: 100%;
}
.image-gallery .image-gallery-square {
    content: "";
    border: 4px solid #8AA546;

    width: calc(100% - 200px);
    height: calc(100% - 20px);

    left: 100px;
    right: 100px;
    bottom: 10px;
    top: 10px;

    position: absolute;
}

.image-gallery img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.image-gallery .img-container {
    height: 100%;
    position: relative;
    top: 55%;
    transform: translate(0, -50%);
}
.image-gallery .img-container .img-1,
.image-gallery .img-container .img-2 {
    height: 45%;
}
.image-gallery .img-container .img-1 {
    margin-top: -12.5px;
}
.image-gallery .img-container .img-2 {
    margin-top: 25px;
}

.image-gallery .img-3 {
    position: relative;
    top: 50%;
    height: 75%;
    transform: translate(0, -50%);
}

@media (max-width: 1199px) {
    .image-gallery .img-3 {
        height: 89%;
        margin-top: -6px;
    }
}

.about-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.about-image,
.about-image-wrapper .about-image {
    position: relative;
    height: 120%;
    width: 100%;
    left: 0px;
    border: 25px solid white;
}

@media (max-width: 990px) {
    .about-image {
        height: 400px;
        border: 15px solid white;
    }
}

.blog-image {
    position: relative;
    height: 100%;
    width: 98%;
    box-shadow: -32px 32px 0px 0px #8AA546;
    background-size: cover;
}

#guestbookCarousel, 
#guestbookCarousel .carousel-inner {
    position: relative;
}
#guestbookCarousel .carousel-item { 
    margin-top: 50px;
    height: 300px;
}
#guestbookCarousel .carousel-item .carousel-caption {
    height: 100%;
}

#guestbookCarousel .carousel-item p {
    font-size: 25px;
}
#guestbookCarousel .carousel-item h5 {
    font-size: 27px;
}

#mapSection iframe {
    width: 100%;
    border: none;
}
.activities-image {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}
@media (max-width: 992px) {
    .activities-image {
        height: 300px;
    }
}