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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    font-family: "Inter", sans-serif !important;
}

p {
    font-size: 15px;
    line-height: 24px;
    color: #4c4c4c;
}

#tags ul,
#posts ul {
    margin-left: 30px;
}
#posts ul li::marker {
    color: #2f4b26;
}
.container-custom {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
}

.top-header {
    background-color: #2f4b26;
    padding: 18px 0px;
    color: white;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 300ms ease;
    background-color: whitesmoke;
}

.navbar {

    background-color: white;
    margin-bottom: 0px;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    width: 80px;
    height: 82px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loc-mail {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 300;
}

.loc-mail a i {
    font-size: 20px;
}

.call-social {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}

.social-links a {
    font-size: 22px;
    font-weight: 300;
}

.call-us a {
    font-size: 16px;
    font-weight: 300;
}

/* Desktop Menu */
.desktop-menu {
    display: none;
    align-items: center;
    gap: 24px;
}

.desktop-menu.active {
    display: flex;
}

.social-links {
    display: flex;
    gap: 10px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    transition: color 200ms;
    font-size: 15px;
    text-transform: uppercase;
}


.desktop-buttons {
    display: none;
    align-items: center;
    gap: 16px;
}

.desktop-buttons.active {
    display: flex;
}

.btn-book-now {
    background-color: #ff6913;
    padding: 13px 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 200ms;
    color: white;
    letter-spacing: 1px;
}

.btn-book-now:hover {
    background-color: #ff6913;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 60;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: black;
    transition: all 300ms ease;
}


.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    display: block;
    font-weight: 500;

    text-decoration: none;
    transition: color 200ms;
}

.mobile-nav-link:hover {
    color: var(--primary-600);
}

.mobile-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 8px 0;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-600);
    font-weight: 500;
    font-size: 14px;
    transition: color 200ms;
}

.mobile-contact-link:hover {
    color: #b91c1c;
}

.mobile-contact-link.whatsapp {
    background-color: #25d366;
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    justify-content: center;
}

.mobile-contact-link.whatsapp:hover {
    background-color: #1eaa5f;
}

.btn-book-now-mobile {
    background-color: var(--primary-600);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
    transition: background-color 200ms;
}

.btn-book-now-mobile:hover {
    background-color: #b91c1c;
}

/* Responsive Design */
@media (min-width: 1024px) {

    .desktop-menu,
    .desktop-buttons {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: flex;
    }
}



/* Section Titles & Links */
.section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    text-decoration: none;
    color: var(--gray-300);
    font-size: 14px;
    transition: color 200ms;
}

.footer-links li a:hover {
    color: var(--primary-400);
}

/* Event Types */
.event-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-list li {
    color: var(--gray-300);
    font-size: 14px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--primary-400);
}

.contact-item p,
.contact-item a {
    color: var(--gray-300);
    font-size: 14px;
    text-decoration: none;
    transition: color 200ms;
}

.contact-item a:hover {
    color: var(--primary-400);
}

footer.footer {
    padding: 0px 20px;
}

.footer-container {
    background-color: #2f4b26;
    border-radius: 20px;
    padding: 50px;
    position: relative;
    z-index: 1;

    &::after {
        content: "";
        position: absolute;
        bottom: -10px;
        right: 0;
        width: 120px;
        height: 120px;
        z-index: -1;
        background-image: url(https://www.anandvardhanresorts.com/bg1.png);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
}

footer .logo-address {
    text-align: center;
}

footer .logo-address .strong {
    font-size: 18px;
    color: white;
    font-weight: 500;
    margin-top: 20px;
}

footer .logo-address p {
    font-size: 16px;
    color: white;
    font-weight: 200;
    margin-bottom: 20px;
}

footer .logo-address .footer-social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

footer .logo-address .footer-social-links a {
    color: white;
    font-size: 25px;
}





footer .links h2 {
    color: white;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}



footer .links p a {
    color: white;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 300;
    margin-bottom: 8px;
    display: inline-block;
}

footer .copyright-footer {
    text-align: center;
    font-size: 16px;
    padding: 20px 0px;
    color: #343434;
}

.banner-section {
    width: 100%;
    height: 75vh;
    background-image: url(../img/banner.webp);
    background-size: cover;
    background-position: top;
    margin-top: 152px;
}

a.commerce-blog-link.inline-block.h7.md-mb4 {
    font-size: 14px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.h7,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 24px;
}

.ampstart-headerbar {
    height: auto;
    padding: 3px 40px;
    border: none;
}

.ampstart-headerbar+:not(amp-sidebar),
.ampstart-headerbar+amp-sidebar+*,
.main {margin-top: 4rem;}

.main.blog-detail {
    margin-top: 16rem;
}
input.ampstart-btn.ampstart-input.mt2.user-valid.valid {
    font-size: 16px;
    padding: 10px;
}

a.ampstart-btn.ampstart-btn-secondary.inline-block.h7.pt3.mt4.md-mb4 {
    font-size: 13px;
}

.slide img.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
}

.slider-img .carousel.slide .carousel-inner .item img,
.commerce-blog-wrapper .carousel.slide .carousel-inner .item img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.commerce-blog-wrapper .mt3 .mb5.a-tag h1, .commerce-blog-wrapper .mt3 .mb5.a-tag h2, .commerce-blog-wrapper .mt3 .mb5.a-tag h1, .commerce-blog-wrapper .mt3 .mb5.a-tag h3, .commerce-blog-wrapper .mt3 .mb5.a-tag h1, .commerce-blog-wrapper .mt3 .mb5.a-tag h4, .commerce-blog-wrapper .mt3 .mb5.a-tag h1, .commerce-blog-wrapper .mt3 .mb5.a-tag h5, .commerce-blog-wrapper .mt3 .mb5.a-tag h1, .commerce-blog-wrapper .mt3 .mb5.a-tag h6 {
    margin: 25px 0 15px;
    font-family: inherit;
    color: #2f4b26;
}
.commerce-blog-wrapper .mt3 .mb5.a-tag p a {
    color: #4c4c4c;
}
.commerce-blog-wrapper .mt3 h1.h3 {
    color: #2f4b26;
}
@media screen and (max-width: 991px) {
    .loc-mail a, .call-us a {font-size: 0px;}
    .loc-mail a i, .call-us a i {font-size: 20px;}
}
@media screen and (max-width: 767px) {
    .top-header .row {display: flex;}
    article.md-col-6.px2.slider-img {margin-bottom: 50px;}
    .footer-container {padding: 30px 2px;}
    .footer-container .col-sm-6.col-md-3 {margin-bottom: 35px;}
    footer .links p a {font-size: 16px;letter-spacing: normal;font-weight: 300;margin-bottom: 0;}

    h1.h2.col-12.center {font-size: 16px;}
    a.my0.mx-auto {
        float: left;
        text-align: right;
        margin: inherit;
        width: 100%;
    }
    .ampstart-headerbar .ampstart-navbar-trigger {font-size: 2.38rem;}

    i-amphtml-sizer {
        padding-top: 38.2222%;
    }

    .ampstart-headerbar {
        padding: 10px 15px;
        flex-direction: row-reverse;
        justify-content: space-between;
        display: flex;
    }

    .ampstart-headerbar a.my0.mx-auto {
        width: auto;
    }
}