@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: 14px;
    line-height: normal;
}
#tags ul,#posts ul{

    margin-left: 30px;

}
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

header {
    position: relative;
    z-index: 50;
    background-color: whitesmoke;
}

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

.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: 16px 0; */
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    /* width: 160px; */
    height: auto;
    flex-shrink: 0;
}

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

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

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

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


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

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

.btn-book-now {
    background-color: #d8b415;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 200ms;
    color: white;
}

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

/* 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(13px);
}

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

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

/* 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;
    }
}



footer.footer {
    background-color: var(--secondary-900);
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    padding: 64px 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Logo & Company Info */
.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    position: relative;
    width: 100%;
    /* height: 32px; */
    display: inline-block;
    flex-shrink: 0;
}

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

.company-description {
    color: var(--gray-300);
    line-height: 1.5;
    font-size: 14px;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-800);
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    transition: background-color 200ms;
    font-size: 18px;
    font-weight: bold;
}

.social-icon:hover {
    background-color: var(--primary-600);
}

/* Section Titles & Links */
.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #cf1f25 !important;
}

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

.footer-links li a {
    text-decoration: none;
    color: #cf1f25 !important;
    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: #cf1f25 !important;
    font-size: 14px;
    text-decoration: none;
    transition: color 200ms;
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--secondary-800);
    padding: 24px 0 15px 0px;
    background-color: #9e151a !important;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.copyright {
    color: white;
    font-size: 14px;
}

.copyright a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color 200ms;
}

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

.footer-policies {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    z-index: 50;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 0;
    }

    .footer-section {
        border-bottom: 1px solid var(--secondary-800);
        padding-bottom: 24px;
    }

    .footer-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
    }

    .footer-policies {
        flex-direction: column;
        gap: 12px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-policies {
        justify-content: flex-end;
    }
}
.banner-section {
    width: 100%;
    height: 100vh;
    background-image: url(https://maplebear.kz/assets/images/18-banner.webp);
    object-fit: cover;
    object-position: center;
}
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, h7 {font-size: 24px;}
.ampstart-headerbar {height: auto;padding: 3px 40px;border: none;}
.ampstart-headerbar+:not(amp-sidebar), .ampstart-headerbar+amp-sidebar+*, .main {margin-top: 5.9rem;}
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: 300px;width: 100%;object-fit: cover;object-position: center;}
@media screen and (max-width: 767px){
    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;}
}