/* ============================================
   Skyrider Gaming Arena - Pure HTML Version
   Clean CSS without WordPress/Elementor dependencies
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1B1B29;
    --secondary-color: #7A4FF4;
    --text-color: #FFFFFF;
    --text-secondary: #D1D5DB;
    --accent-color: #F026ED;
    --container-width: 1440px;
    --content-width: 1230px;
    --spacing-unit: 1rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow-x: hidden;
}

/* Red Hat Display Font for All Headings */
h1, h2, h3, h4, h5, h6,
.hero-title, .hero-subtitle, .hero-tagline,
.section-title,
.service-title, .service-heading,
.party-heading, .party-title,
.gallery-heading,
.offer-content h5, .offer-content h6,
.testimonial-card h4, .author-name,
.contact-details h3,
.page-title, .page-subtitle,
.why-title, .value-title,
.service-description h2,
.feature-item h3,
.cta-content h2,
.blog-post-title,
.party-heading,
.gallery-heading {
    font-family: "Red Hat Display", Sans-serif;
}

/* Red Rose Font for All Subheadings/Descriptions and Links */
.section-description,
.party-caption,
.gallery-caption,
.testimonial-text,
.testimonial-content p,
.offer-content p,
.service-description,
.contact-details p,
.page-description,
.feature-item p,
.cta-content p,
.blog-post-excerpt,
.stats-item p,
.instagram-description,
.party-content p,
.gallery-content p,
.about-description,
.why-description,
.value-description,
.hero-tagline,
a,
.nav-link,
.footer-menu a,
.footer-menu li a,
.contact-details a,
.btn-primary,
.btn-secondary,
button,
input[type="submit"],
input[type="button"] {
    font-family: "Red Rose", Sans-serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Content Container for specific sections (1230px max-width) */
.content-container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background-color: rgba(27, 27, 41, 0.95); */
    background-color: transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.3s ease;
    height: 110px;
}
.site-header.scrolled {
    background-color: rgba(27, 27, 41, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    flex: 0 0 auto;
}

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

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-item.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    list-style: none;
    min-width: 150px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: rgba(122, 79, 244, 0.2);
    color: var(--secondary-color);
}

.header-cta {
    flex: 0 0 auto;
}

.btn-book-appointment {
    display: inline-block;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}


/* Hero Section */
.hero-section {
    position: relative;
    /* min-height: 100vh; */
    /* display: flex; */
    /* align-items: center; */
    justify-content: center;
    /* overflow: hidden; */
    padding: 212px 0px 72px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-desktop {
    display: block;
}

.hero-video-mobile {
    display: none;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 27, 41, 0.3);
    mix-blend-mode: color-dodge;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-color);
    /* margin-top: 144px; */
}

.hero-snippet {
    font-family: "Red Hat Display", Sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #FF2ACD;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1.2s ease;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 3rem;
    font-weight: 400;
    animation: fadeInUp 1.4s ease;
    line-height: 1.2;
}

/* Video Section */
.video-section {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
}

.video-background {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 657px;
}

.section-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 160px auto 0px;
    display: block;
    max-height: 676px;
    border: 1px solid #fff;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* gap: 2rem; */
    text-align: center;
}

/*about page*/
.about-page-header .page-header-left {
    max-width: 590px;
}

/* About Page - Sticky Section */
.about-sticky-section {
    width: 100%;
    background: var(--primary-color, #1B1B29);
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.about-sticky-list {
    position: relative;
    width: 100%;
    /* max-width: 1100px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-sticky-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
    position: relative;
    background: none;
}

.about-sticky-image {
    /* flex: 1 1 50%; */
    /* display: flex; */
    justify-content: center;
    /* align-items: center; */
    /* max-width: 520px; */
    width: 100%;
    /* flex-shrink: 0; */
}

.about-sticky-image img {
    width: 100%;
    /* max-width: 420px; */
    /* max-height: 420px; */
    object-fit: cover;
    /* border-radius: 24px; */
    box-shadow: 0 10px 32px rgba(60, 18, 168, 0.12);
    background: #170f2c;
}

.about-sticky-text {
    /* flex: 1 1 50%; */
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding: 0 1.5rem; */
}

.about-sticky-text.center {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    transform: translateY(-100%);
    padding: 1rem 2rem 2rem;
}
.party-sticky-section .about-sticky-text.center{
    transform: translateY(0%);
}

.about-sticky-text h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0px;
    font-family: "Red Hat Display", Sans-serif;
    font-weight: 700;
}

.about-sticky-text p {
    color: var(--text-secondary, #D1D5DB);
    font-size: 1.18rem;
    line-height: 1.7;
    max-width: 450px;
    margin: 0px;
    font-family: "Red Rose", Sans-serif;
    font-weight: 400;
}

/* Sticky Scroll Effect */
.about-sticky-item {
    position: sticky;
    top: 80px; /* adjust so header is not overlapped */
    background: #28283e;
    z-index: 2;
}


.stat-item {
    padding: 0px;
    white-space: nowrap;
}

.stat-number {
    font-size: 62px;
    font-weight: 900;
    color: var(--secondary-color);
    /* margin-bottom: 0.5rem; */
    background: linear-gradient(180deg, #FFFFFF 0%, #7A4FF4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    font-family: Red Rose;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}

.stat-plus {
    color: var(--secondary-color);
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: "Red Hat Display", Sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 36px;
    line-height: 128%;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}
#gallery .section-title {
    margin-bottom: 0px;
}
.section-description {
    font-family: "Red Rose", Sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 38px;
    line-height: 50px;
    letter-spacing: 0;
    text-align: center;
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 10px 30px rgba(122, 79, 244, 0.3); */
}

/* .service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
} */

.service-image img {
    width: auto !important;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(0.9);
}

.service-content {
    padding: 0;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
}

.service-description {
    line-height: 1.3;
    font-family: "Red Rose", Sans-serif;
    font-size: 14px;
    font-weight: 400;
}

/* Owl Carousel Styles */
.services-carousel,
.offers-carousel,
.testimonials-carousel {
    margin-top: 2rem;
    position: relative;
}

.services-carousel .service-card,
.offers-carousel .offer-card {
    /* margin: 0 10px; */
}

.testimonials-carousel .testimonial-card {
    margin: 0;
}

.testimonials-carousel .owl-item {
    display: flex;
    height: auto;
}

.testimonials-carousel .owl-item .testimonial-card {
    width: 100%;
    height: 361.470703125px;
}

/* Testimonials Carousel - Default Styles */
.testimonials-carousel {
    position: relative;
    overflow: visible;
    width: 100%;
    margin: 0 auto;
}

.testimonials-carousel .owl-stage-outer {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    padding: 20px 0;
}

/* Hide default owl-nav buttons for testimonials (using custom arrows instead) */
.testimonials-section .owl-nav {
    display: none !important;
}

/* Custom Blue Circle Arrows for Testimonials */
.testimonials-carousel .owl-stage-outer::before,
.testimonials-carousel .owl-stage-outer::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    opacity: 1;
    background-color: #7A4FF4;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

.testimonials-carousel .owl-stage-outer::before {
    left: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.testimonials-carousel .owl-stage-outer::after {
    right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.testimonials-carousel .owl-stage-outer:hover::before,
.testimonials-carousel .owl-stage-outer:hover::after {
    background-color: #357ABD;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.5);
}

/* Fade effect for left and right cards - matching live site */
.testimonials-carousel .owl-item {
    transition: all 0.4s ease;
    opacity: 0.5;
    transform: scale(0.85);
}

.testimonials-carousel .owl-item.center {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.testimonials-carousel .owl-item:not(.center) {
    opacity: 0.4;
    transform: scale(0.85);
}

.testimonials-carousel .owl-stage {
    display: flex;
    align-items: center;
}


/* Custom Blue Circle Arrows for Services and Offers */
.services-carousel .owl-stage-outer,
.offers-carousel .owl-stage-outer {
    position: relative;
    cursor: pointer;
}

.services-carousel .owl-stage-outer::before,
.services-carousel .owl-stage-outer::after,
.offers-carousel .owl-stage-outer::before,
.offers-carousel .owl-stage-outer::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    opacity: 1;
    background-color: #7A4FF4;
    border-radius: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
}

.services-carousel .owl-stage-outer::before,
.offers-carousel .owl-stage-outer::before {
    left: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.services-carousel .owl-stage-outer::after,
.offers-carousel .owl-stage-outer::after {
    right: 35px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}
#offers .offers-carousel .owl-stage-outer::before{
    left: 0px;
}
#offers .offers-carousel .owl-stage-outer::after{
    right: 12px;
}

.services-carousel .owl-stage-outer:hover::before,
.services-carousel .owl-stage-outer:hover::after,
.offers-carousel .owl-stage-outer:hover::before,
.offers-carousel .owl-stage-outer:hover::after {
    background-color: #7A4FF4;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.5);
}

/* Owl Carousel Navigation */
.owl-nav {
    text-align: center;
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.owl-nav button {
    background-color: var(--secondary-color) !important;
    color: var(--text-color) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 24px;
    line-height: 1;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.owl-nav button:hover {
    background-color: var(--accent-color) !important;
    transform: scale(1.1);
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
}

/* Hide default owl-nav buttons for services and offers (using custom arrows instead) */
.services-section .owl-nav,
.offers-section .owl-nav {
    display: none !important;
}

.testimonials-section .owl-nav button.owl-prev {
    left: 20px;
}

.testimonials-section .owl-nav button.owl-next {
    right: 20px;
}

.owl-nav-prev,
.owl-nav-next {
    display: inline-block;
    width: 100%;
    height: 100%;
    line-height: 40px;
}

/* Owl Carousel Dots */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3) !important;
    margin: 0 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-dots button.owl-dot.active {
    background-color: var(--secondary-color) !important;
    width: 30px;
    border-radius: 6px;
}

.owl-dots button.owl-dot:hover {
    background-color: var(--secondary-color) !important;
}

/* Hide dots for services and offers sections */
.services-section .owl-dots,
.offers-section .owl-dots {
    display: none !important;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo-wrapper {
    flex: 0 0 auto;
}

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

.footer-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.footer-item {
    position: relative;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link:hover,
.footer-link.active {
    color: var(--secondary-color);
}

.footer-item.has-dropdown {
    position: relative;
}

.footer-dropdown-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: var(--primary-color);
    list-style: none;
    min-width: 150px;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-item.has-dropdown:hover .footer-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.footer-dropdown-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-dropdown-link:hover {
    background-color: rgba(122, 79, 244, 0.2);
    color: var(--secondary-color);
}

.dropdown-icon {
    font-size: 0.7em;
    margin-left: 0.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-item.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.footer-social {
    flex: 0 0 auto;
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link img {
    width: 60px;
    height: 60px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-link:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-family: "Red Rose", Sans-serif;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Offers Section */
.offers-section {
    padding: 4rem 0;
    background-color: #7A4FF4;
}

.offers-header {
    text-align: center;
    margin-bottom: 0rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Fallback grid layout when carousel is not loaded */
.offers-grid:not(.owl-carousel) {
    display: grid;
}

.offer-card {
    background: url('https://anviwebsolution.com/test/wp-content/uploads/2025/12/bgimage_games-removebg-preview.png') no-repeat left center;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    background-size: contain;
    width: 367px;
    height: 104px;
    opacity: 1;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding-left: 40px;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-image {
    /* width: 100%; */
    /* height: 150px; */
    overflow: hidden;
    /* background-color: rgba(122, 79, 244, 0.2); */
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px dashed #999;
    height: 70%;
    padding: 0px 12px 0px 0px;
    flex-shrink: 0;
    display: none;
}

.offer-image img {
    /* max-width: 80%; */
    /* max-height: 80%; */
    /* object-fit: contain; */
    width: 92px;
    height: 25px;
    top: 40px;
    left: 23px;
    opacity: 1;
}

.offer-content {
    /* padding: 1.5rem; */
    /* text-align: center; */
}

.offer-content h5 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    font-family: Red Rose;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
}

.offer-content h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
    font-family: Red Rose;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
}

.offer-content p {
    font-size: 0.9rem;
    color: #000;
    line-height: 1.5;
    font-family: Red Hat Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
}

/* Party Section */
.party-section {
    padding: 7rem 0 4rem;
    background-color: var(--primary-color);
}

.party-content {
    text-align: left;
    margin-bottom: 0px;
}

.party-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Party Grid with Zoom Effect - Same as Gallery */
.party-grid-zoom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 620px;
    margin-top: 3rem;
}

.party-item-large {
    grid-row: 1 / span 2;
    grid-column: 1;
}

/* Wrapper for 4 smaller images in 2x2 grid */
.party-tiles-wrapper {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.party-type-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background-color: rgba(122, 79, 244, 0.1);
}

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

.party-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.party-type-card:hover .party-image-wrapper img {
    transform: scale(1.15);
}

/* Party Content Overlay - Same as Gallery */
.party-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(27, 27, 41, 0.95) 0%, rgba(27, 27, 41, 0.85) 70%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    z-index: 3;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.party-content {
    color: var(--text-color);
}

.party-heading {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Red Rose", sans-serif;
}

.party-caption {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Party Hover States */
.party-type-card:hover .party-content-overlay {
    padding-bottom: 2rem;
    background: linear-gradient(to top, rgba(27, 27, 41, 0.98) 0%, rgba(27, 27, 41, 0.9) 70%, transparent 100%);
}

.party-type-card:hover .party-heading {
    margin-bottom: 0.75rem;
}

.party-type-card:hover .party-caption {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
    margin-top: 0.5rem;
}
.party-type-card.party-item-large {
    height: 620px;
    width: 100%;
}

.party-type-card {
    height: 300px;
    width: 100%;
    border: 1px solid #fff;
    border-radius: 0;
}

/* Dining Section */
.dining-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dining-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.dining-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dining-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 27, 41, 0.4);
}

.dining-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 7rem 0 4rem;
    background-color: var(--primary-color);
    overflow: visible;
}

.testimonials-section .container {
    position: relative;
    max-width: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-section .section-header {
    margin-bottom: 0rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Fallback grid layout when carousel is not loaded */
.testimonials-grid:not(.owl-carousel) {
    display: grid;
}

.testimonial-card {
    background-color: #2A2A3E;
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease;
    height: 361.470703125px;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

.testimonials-carousel .testimonial-card.item {
    height: 361.470703125px;
    width: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 2px 4px rgba(122, 79, 244, 0.2); */
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    /* font-style: italic; */
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    /* width: 50px; */
    height: 33px;
    /* border-radius: 50%; */
    /* overflow: hidden; */
    /* flex-shrink: 0; */
    margin-bottom: 30px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery-section {
    padding: 7rem 0 4rem;
    background-color: var(--primary-color);
}

.gallery-section .section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery with Zoom Effect - Masonry Layout */
.gallery-grid-zoom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 600px;
}

.gallery-item-zoom {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background-color: rgba(122, 79, 244, 0.1);
}

.gallery-item-large {
    grid-column: 1;
    grid-row: 1 / span 2;
}

/* Wrapper for 4 smaller images in 2x2 grid */
.gallery-tiles-wrapper {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

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

.gallery-item-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Content Overlay - Heading and Caption */
.gallery-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(27, 27, 41, 0.95) 0%, rgba(27, 27, 41, 0.85) 70%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    z-index: 3;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-content {
    color: var(--text-color);
}

.gallery-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-caption {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover States */
.gallery-item-zoom:hover .gallery-content-overlay {
    padding-bottom: 2rem;
    background: linear-gradient(to top, rgba(27, 27, 41, 0.98) 0%, rgba(27, 27, 41, 0.9) 70%, transparent 100%);
}

.gallery-item-zoom:hover .gallery-heading {
    margin-bottom: 0.75rem;
}

.gallery-item-zoom:hover .gallery-caption {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
    margin-top: 0.5rem;
}

/* Large item specific styling */
.gallery-item-large .gallery-content-overlay {
    padding: 2.5rem 2rem 2rem;
}

.gallery-item-large .gallery-heading {
    font-size: 2rem;
    font-weight: 700;
}

.gallery-item-large .gallery-caption {
    font-size: 1.1rem;
}

.gallery-item-large:hover .gallery-content-overlay {
    padding-bottom: 2.5rem;
}

.gallery-item-large:hover .gallery-caption {
    max-height: 120px;
}

.gallery-item-zoom:hover img {
    transform: scale(1.15);
}

/* UniteGallery Style Slider */
.ug-gallery-wrapper {
    width: 100%;
    margin-top: 2rem;
}

.ug-slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background-color: rgba(27, 27, 41, 0.5);
    margin-bottom: 2rem;
}

.ug-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.ug-slide {
    min-width: 100%;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ug-slide.active {
    opacity: 1;
    position: relative;
}

.ug-slide img {
    height: 100%;
    object-fit: cover;
}

.ug-slide.active img {
    width: auto;
    max-width: 100%;
}

.ug-slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(122, 79, 244, 0.8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
}

.ug-slider-control:hover {
    background-color: rgba(122, 79, 244, 1);
    transform: translateY(-50%) scale(1.1);
}

.ug-arrow-left {
    left: 20px;
}

.ug-arrow-right {
    right: 20px;
}

/* Strip Panel */
.ug-strip-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
    background-color: transparent;
}

.ug-strip-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgba(122, 79, 244, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ug-strip-arrow:hover {
    background-color: rgba(122, 79, 244, 1);
    transform: scale(1.1);
}

.ug-strip-arrow-tip {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.ug-thumbs-strip {
    flex: 1;
    overflow: hidden;
    height: 70px;
    position: relative;
}

.ug-thumbs-strip-inner {
    display: flex;
    gap: 12px;
    height: 100%;
    transition: transform 0.5s ease;
    width: max-content;
}

.ug-thumb {
    width: 100px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.ug-thumb:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.ug-thumb.active {
    opacity: 1;
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.ug-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10000;
    line-height: 1;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Instagram Section */
.instagram-section {
    padding: 7rem 0 4rem;
    background-color: var(--primary-color);
    text-align: center;
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.instagram-icon img {
    width: 50px;
    height: 50px;
}

.instagram-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-instagram {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.4);
}

/* Contact Section */
.contact-section {
    padding: 7rem 0 4rem;
    background-color: var(--primary-color);
}

.contact-wrapper {
    display: flex;
    grid-template-columns: 58% 40%;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-map {
    width: 100%;
    height: 400px;
    border: 1px solid white;
    /* border-radius: 8px; */
    overflow: hidden;
    /* width: 830; */
    height: 382px;
    top: 3px;
    left: 4px;
    angle: 0 deg;
    opacity: 1;
}

.contact-info {
    border: 1px solid white;
    /* border-radius: 8px; */
    padding: 2rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 343;
    height: 382;
    top: 2px;
    left: 879px;
    opacity: 1;
    padding: 24px 22px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(122, 79, 244, 0.2);
    border-radius: 8px;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(39.6deg, #7A4FF4 -68.31%, #F026ED 98.92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Red Rose;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 22px;
    letter-spacing: 0%;
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-family: Red Rose;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 22px;
    letter-spacing: 0%;
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Get in Touch Form Section */
.get-in-touch-section {
    padding: 7rem 0 4rem;
    background-color: #2A2A3E;
}

.form-wrapper {
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    align-items: normal;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 150px;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: #0F0F14;
    border: 1px solid #fff;
    border-radius: 4px;
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    font-family: Red Rose;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder {
    color: var(--text-secondary);
}

.form-submit {
    flex: 0 0 auto;
}

.btn-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.btn-submit:hover {
    transform: scale(1.1);
}

.btn-submit img {
    height: 46px;
    width: auto;
}

/* Appointment form messages */
.appointment-form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: Red Rose, sans-serif;
}
.appointment-form-error {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.5);
    color: #fca5a5;
}

/* Appointment success (inline - replaces form) */
.appointment-success-inline {
    background: linear-gradient(145deg, #2A2A3E 0%, #1B1B29 100%);
    border: 1px solid rgba(122, 79, 244, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    animation: appointmentInlineFadeIn 0.4s ease;
}
@keyframes appointmentInlineFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Legacy overlay (kept for animation reuse) */
.appointment-success-card {
    background: linear-gradient(145deg, #2A2A3E 0%, #1B1B29 100%);
    border: 1px solid rgba(122, 79, 244, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: appointmentCardSlideIn 0.4s ease;
}
@keyframes appointmentCardSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.appointment-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(122, 79, 244, 0.3) 0%, rgba(240, 38, 237, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}
.appointment-success-icon svg {
    width: 40px;
    height: 40px;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: appointmentCheckDraw 0.5s ease 0.2s forwards;
}
@keyframes appointmentCheckDraw {
    to { stroke-dashoffset: 0; }
}
.appointment-success-title {
    font-family: "Red Hat Display", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}
.appointment-success-message {
    font-family: Red Rose, sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.appointment-success-close {
    font-family: Red Rose, sans-serif;
    padding: 0.6rem 1.5rem;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
}
.appointment-success-close:hover {
    background: #8b5cf6;
    transform: translateY(-1px);
}

.appointment-success-inline .appointment-success-icon,
.appointment-success-inline .appointment-success-title,
.appointment-success-inline .appointment-success-message {
    margin-bottom: 1rem;
}
.appointment-success-inline .appointment-success-message:last-child {
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    padding: 212px 0 2rem;
    background-color: var(--primary-color);
    text-align: center;
}

/* About page small label above heading */
.page-header .page-description:first-child {
    text-align: left;
    margin: 0 0 0.5rem 0;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.page-header-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    margin-top: 1.5rem;
}

.page-header-left,
.page-header-right {
    flex: 0 0 auto;
}

.page-header-left {
    text-align: left;
}

.page-header-right {
    text-align: left;
}

.page-header-right .page-description {
    width: 443px;
    min-height: 192px;
    opacity: 1;
}

/* Bowling, Arcade, VR, Vending, Party - Hero (background image only) */
.bowling-page-header,
.arcade-page-header,
.vr-page-header,
.vending-page-header{
    padding: 0;
    min-height: 1000px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Bowling Page - Customer's Moments */
.bowling-moments-section {
    padding: 7rem 0 4rem;
    background-color: var(--primary-color);
}

.bowling-moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.moment-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

/* Bowling-specific tweaks */
/* .bowling-why-section {
    padding-top: 0;
} */

/* .bowling-offers-section {
    padding-top: 0;
} */

/* .bowling-services-section {
    padding-top: 0;
} */

/* Arcade, VR, Vending - fallback background images (inline style overrides when set in admin) */
.arcade-page-header {
    position: relative;
    background-image: url('../img/arcade-hero.jpg');
}
.vr-page-header {
    position: relative;
    background-image: url('../img/vr-hero.jpg');
}
.vending-page-header {
    position: relative;
    background-image: url('../img/vending-hero.jpg');
}

/* Page Hero Content - centered title/subtitle with padding like home sections */
.page-hero-content {
    padding: 7rem 0 7rem;
    text-align: center;
    background-color: var(--primary-color);
}
.page-hero-content .page-title,
.page-hero-content .page-subtitle,
.page-hero-content .page-description {
    margin-left: auto;
    margin-right: auto;
}
.page-hero-content .page-description {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary, #b8b8d1);
}


/* Party Page Header */
/* Party - fallback background (inline style overrides when set in admin) */
.party-page-header {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/party-hero.jpg');
    display: flex;
    justify-content: center;
    align-items: center;
}

.party-page-header .page-hero-content {
    width: 100%;
    max-width: 775px;
    margin: -200px auto 0;
    padding: 2rem 1.5rem;
    background: transparent;
    text-align: center;
}

.party-page-header .page-hero-content .content-container {
    max-width: 100%;
    padding: 0;
}

.page-title {
    font-family: "Red Hat Display", Sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: 72px;
    line-height: 79px;
    letter-spacing: 0;
    vertical-align: middle;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 24px;
    line-height: 32px;
    color: var(--text-secondary);
}

/* Why Skyrider Section */
.why-skyrider-section {
    padding: 7rem 0 4rem;
    background-color: #7a4ff4;
}

.why-skyrider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.why-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.why-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mission & Vision Sections */
.mission-section,
.vision-section {
    padding: 7rem 0 4rem;
    background-color: var(--primary-color);
}

.mission-content,
.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text,
.vision-text {
    padding: 2rem 0;
}

.mission-text p,
.vision-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-image,
.vision-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.mission-image img,
.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values-section {
    padding: 7rem 0 4rem;
    background-color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 79, 244, 0.2);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    background: linear-gradient(39.6deg, #7A4FF4 -68.31%, #F026ED 98.92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Service Pages Styles */
.service-hero {
    padding: 7rem 0 4rem;
    background-color: var(--primary-color);
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}


.service-description h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(39.6deg, #7A4FF4 -68.31%, #F026ED 98.92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-features-section {
    padding: 7rem 0 4rem;
    background-color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 79, 244, 0.2);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    background: linear-gradient(39.6deg, #7A4FF4 -68.31%, #F026ED 98.92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.service-cta {
    padding: 4rem 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(39.6deg, #7A4FF4 -68.31%, #F026ED 98.92%);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(122, 79, 244, 0.4);
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 79, 244, 0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--accent-color);
}

.page-header.party-page-header p.page-description {
    text-align: center;
}
.blog-page .page-header {
    text-align: left;
    font-style: Black;
}

.blog-page h1.page-title {
    font-size: 72px;
    line-height: 82px;
}
.about-page-header-content {
    padding: 0rem 0px 0px;
    max-width: 80%;
    margin: 12rem auto;
}
.about-page-header-content-top {
    padding: 0rem 0px 0px;
    max-width: 80%;
    margin: 0 auto;
}

.about-page .section-description {
    margin: 0px 0px 2rem 0px;
    font-size: 20px;
    line-height: 36px;
}



/** My css starts here */
h2.hero-subtitle {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
}

h3.hero-tagline {
    font-size: 60px;
    font-weight: 900;
    font-family: 'Red Hat Display';
    line-height: 89px;
}
.dining-content h2.section-title {
    font-family: Red Hat Display;
    font-weight: 900;
    font-style: Black;
    font-size: 100px;
    line-height: 100px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
}
section#bowling-offers , section#offers{
    background-color: #2a2a3e;
}
/* .owl-carousel .owl-item img{
    width: 92px;
} */
/** My css ends here */



/*===========Media Query=============== */
/* Tablet Media Query */
@media (min-width: 768px) and (max-width: 1024px) {
    .bowling-page-header,
    .arcade-page-header,
    .vr-page-header,
    .vending-page-header,
    .party-page-header {
        min-height: 400px;
    }
    /* Header: same visual order as mobile (for when hamburger is shown on tablet) */
  .header-content {
    gap: 0.75rem;
    justify-content: flex-start;
  }

  .mobile-menu-toggle {
    order: 1;
  }

  .logo-wrapper {
    order: 2;
  }

  .header-cta {
    order: 3;
    margin-left: auto;
  }

  .main-navigation {
    order: 4;
    flex: 0 0 auto;
  }

  /* Contact map height same as contact box */
  .contact-wrapper {
    align-items: stretch;
  }

  .contact-map,
  .contact-info {
    height: auto;
    min-height: 382px;
  }

  /* Hide arrows for Services (Ultimate Gaming) and Offers sliders */
  .services-carousel .owl-stage-outer::before,
  .services-carousel .owl-stage-outer::after,
  .offers-carousel .owl-stage-outer::before,
  .offers-carousel .owl-stage-outer::after {
    display: none !important;
  }

  /* Hero tablet typography */
  h2.hero-subtitle {
    font-weight: 900;
    font-size: 60px;
    line-height: 1;
  }

  h3.hero-tagline {
    font-weight: 900;
    font-size: 50px;
    line-height: 1;
  }

  /* Second video section */
  .section-video {
    margin: 100px auto 0px;
    max-width: 712px;
    height: 438px;
    width: 100%;
  }

  /* Stats */
  .stat-number {
    font-size: 24px;
    line-height: 1.6;
  }

  .stat-label {
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Section headings */
  .section-title {
    font-size: 36px;
    line-height: 1.28;
  }

  .dining-content h2.section-title {
    font-weight: 900;
    font-size: 50px;
    line-height: 50px;
  }

  .dining-section {
    min-height: 468px;
  }

  /* Testimonials text */
  .testimonial-text {
    font-family: "Red Rose", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    font-style: normal;
    text-align: center;
  }

  /* Get in touch form - keep desktop-like row layout on tablet */
  .form-row {
    flex-direction: row;
  }

  .form-group,
  .form-submit {
    width: auto;
    text-align: left;
  }
  .about-page-header .video-background , .hero-section .video-background{
    height: 100%;
  }
  .page-header-right .page-description {
        width: 100%;
  }
  section#customers-moments {
     min-height: 468px;
  } 
    .about-sticky-image,
    .about-sticky-text {
        max-width: 100%;
        padding: 0;
    }

    .about-sticky-image img {
        /* max-width: 320px; */
        max-height: 320px;
    }   
}

/*===========Media Query End=============== */



/*===========Media Query=============== */
/* Mobile Menu Styles */
@media (min-width: 320px) and (max-width: 767px) {
    /* Header: hamburger extreme left, logo next, CTA right */
    .header-content {
        gap: 0.75rem;
        justify-content: flex-start;
    }

    .mobile-menu-toggle {
        order: 1;
    }

    .logo-wrapper {
        order: 2;
    }

    .header-cta {
        order: 3;
        margin-left: auto;
    }

    .main-navigation {
        order: 4;
        flex: 0 0 auto;
    }

    /* Hide arrows for Services (Ultimate Gaming) and Offers sliders */
    .services-carousel .owl-stage-outer::before,
    .services-carousel .owl-stage-outer::after,
    .offers-carousel .owl-stage-outer::before,
    .offers-carousel .owl-stage-outer::after {
        display: none !important;
    }
    h2.hero-subtitle {
        font-size: 32px;
    }

    p.hero-snippet {
        font-size: 16px;
    }

    h3.hero-tagline {
        font-size: 32px;
    }

    .logo-wrapper {
        display: none;
    }

    .party-item-large {
        min-height: auto;
    }

    .party-tiles-wrapper {
        height: auto;
        grid-template-rows: auto auto;
    }

    section#dining {
        height: 210px;
        min-height: auto;
    }

    .dining-content h2.section-title {
        font-size: 42px;
        line-height: 1.2;
    }
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
    }
    header#header {height: 74px;}
    section#hero {
        padding: 120px 0px 20px;
    }

    h3.hero-tagline {
        line-height: 1.2;
        font-size: 28px;
    }

    video.section-video {
        margin: 60px 0px 40px;
        width: 100%;
        height: 194px;
    }
    h2.section-title {
        font-size: 24px;
    }

    p.section-description {
        font-size: 12px;
        line-height: 1.3;
        margin: 2rem 0px;
    }

    section#stats,
    .instagram-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stat-item {
        white-space: normal;
    }
    .instagram-header {
        flex-direction: column;
    }


    .party-content-overlay {
        padding: 12px;
    }

    .party-content {
        margin: 0px;
    }

    h3.party-heading {
        font-size: 14px;
    }

    p.party-caption {
        font-size: 12px;
    }


    .party-tiles-wrapper {
        min-height: auto;
    }
    .testimonial-card.item {
        padding: 32px 16px;
    }

    p.testimonial-text {
        font-size: 16px;
    }    
    .about-page-header .video-background , .hero-section .video-background{
        height: 100%;
    }
    .page-header-right .page-description {
        width: 100%;
    }
    section#customers-moments {
        min-height: 468px;
    }
    .hero-video-desktop {
        display: none;
    }
    
    .hero-video-mobile {
        display: block;
    }

    .about-sticky-section {
        padding: 0;
    }

    .about-sticky-item {
        padding: 0 0.5rem;
        min-height: 100%;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .about-sticky-text h3 {
        font-size: 1.3rem;
    }

    .about-sticky-image img {
        max-width: 98vw;
        max-height: 400px;
    }
    .bowling-page-header,
    .arcade-page-header,
    .vr-page-header,
    .vending-page-header,
    .party-page-header {
        min-height: 220px;
    }
    .page-header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-header-left,
    .page-header-right {
        width: 100%;
    }
  
    
    /* Hide testimonials arrows on tablet and mobile */
    .testimonials-carousel .owl-stage-outer::before,
    .testimonials-carousel .owl-stage-outer::after {
        display: none !important;
    }
    

    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .party-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-submit {
        width: 100%;
        text-align: center;
    }
    /* Hide testimonials arrows on mobile */
    .testimonials-carousel .owl-stage-outer::before,
    .testimonials-carousel .owl-stage-outer::after {
        display: none !important;
    }
    
    /* Hide footer navigation menu on mobile */
    .footer-navigation {
        display: none !important;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .party-types-grid {
        grid-template-columns: 1fr;
    }
    
    .party-grid-zoom {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .party-item-large {
        grid-row: auto;
        grid-column: 1;
        min-height: 300px;
    }
    
    .party-tiles-wrapper {
        grid-column: 1;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: 500px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ug-slider-wrapper {
        height: 300px;
    }
    
    .ug-slider-control {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .ug-arrow-left {
        left: 10px;
    }
    
    .ug-arrow-right {
        right: 10px;
    }
    
    /* Hide strip arrows on mobile; strip is finger-scrollable */
    .ug-strip-arrow {
        display: none !important;
    }
    
    .ug-thumb {
        width: 80px;
        height: 60px;
    }
    
    .ug-thumbs-strip {
        height: 60px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .gallery-grid-zoom {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .gallery-item-large {
        grid-row: auto;
        grid-column: 1;
        min-height: 300px;
    }
    
    .gallery-tiles-wrapper {
        grid-column: 1;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: 500px;
    }
    
    .gallery-item-zoom {
        min-height: 250px;
    }
    
    .gallery-content-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-heading {
        font-size: 1.25rem;
    }
    
    .gallery-caption {
        font-size: 0.85rem;
    }
    
    .gallery-item-large .gallery-content-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .gallery-item-large .gallery-heading {
        font-size: 1.75rem;
    }
    
    .gallery-item-large .gallery-caption {
        font-size: 1rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .page-title, .blog-page h1.page-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .mission-content,
    .vision-content {
        grid-template-columns: 1fr;
    }
    
    .mission-image,
    .vision-image {
        height: 300px;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
    }
    
    /* .service-image {
        height: 300px;
    } */
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    /* Owl Carousel Navigation - Mobile */
    .services-section .owl-nav button.owl-prev,
    .offers-section .owl-nav button.owl-prev {
        left: 10px;
    }
    
    .services-section .owl-nav button.owl-next,
    .offers-section .owl-nav button.owl-next {
        right: 10px;
    }
    
    .testimonials-section .owl-nav button.owl-prev {
        left: 10px;
    }
    
    .testimonials-section .owl-nav button.owl-next {
        right: 10px;
    }
    
    .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    .owl-nav {
        display: none;
    }
    .offer-image{
        display: none;
    }
    .offer-card{
        width: auto;
        padding-left: 35px;
        background: #fff;
    }
    .offer-card:before, .offer-card:after {
        content: "";
        display: inline-block;
        width: 24px;
        height: 24px;
        border-radius: 100px;
        position: absolute;
        left: -6px;
        top: 39%;
        background: #7a4ff4;
    }
    
    .offer-card:after {
        left: auto;
        right: -6px;
    }
    .party-type-card.party-item-large{
        height: 324px;
    }
    .party-type-card{
        height: 242px;
    }
    .page-header{
        padding: 120px 0 2rem;
    }
}

/*=======Media Query MObile END=======*/

/*===========Media Query=============== */
/* common for mobile and tablet */
@media (min-width: 320px) and (max-width: 1024px) {
    .main-navigation {
        display: none;
    }    
    /* Hide footer navigation menu on tablet and mobile */
    .footer-navigation {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: block;
    }  
    .main-navigation.mobile-menu-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .main-navigation.mobile-menu-open .nav-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation.mobile-menu-open .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation.mobile-menu-open .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
    }
    
    .main-navigation.mobile-menu-open .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(122, 79, 244, 0.1);
        margin-top: 0;
        padding-left: 1rem;
    }
    .party-page-header .page-hero-content{
        margin: 0 auto 4rem;
    }
    .page-header-content {
        flex-direction: column;
        gap: 0rem;
    }
    .about-page-header-content{
        gap: 0rem;
        width: 100%;
    }
    
    .about-page-header-content-top {
        max-width: 100%;
    }
    .about-sticky-item {
        flex-direction: column;
        min-height: auto;
        /* gap: 2rem; */
    }
    .about-sticky-text.center {
        transform: translateY(0%);
    }
}

/*===========Media Query End=============== */  