html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* CSS Reset & Core */
:root {
    --primary-beige: #FFFCF2;
    --accent-purple: #6b1a87;
    --accent-gold: #b0941e;
    --accent-gold-light: rgba(152, 120, 168, 0.27);
    --onzs-dark: #161616;
    --accent-red: var(--accent-purple);
    /* Neon Glows */
    --neon-purple: 0 0 5px #fff, 0 0 10px #6b1a87, 0 0 15px #6b1a87, 0 0 20px #6b1a87;
    --neon-gold: 0 0 5px #fff, 0 0 10px #b0941e, 0 0 15px #b0941e;
}

footer {
    background: linear-gradient(180deg, #b0941e 0%, #161616 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: linear-gradient(180deg, #FFFCF2 0%, rgb(186, 181, 166) 100%);
    background-color: var(--onzs-dark);
    color: var(--onzs-dark);
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* FV Section - 2 Column Layout */
.fv-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(180deg, #b0941e 0%, #161616 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0 60px;
}

/* 星空の背景のスタイル */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* 星のスタイル */
.star {
    position: absolute;
    display: block;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: twinkle 5s infinite;
}

/* 星がキラキラ光るアニメーション */
@keyframes twinkle {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.fv-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    /* 35:65 ratio for spacious left, dense right */
    gap: 80px;
    align-items: center;
}

/* Left Column - Spacious with breathing room */
.fv-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 600px;
    padding-left: 20px;
}

/* Background Decorations */
.fv-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.fv-deco {
    position: absolute;
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
    display: none;
}

.fv-deco.show {
    opacity: 0.45;
}

/* Decoration positioning based on reference image */
/* fv_01.png - upper center-right area */
.fv-deco-01 {
    top: 8%;
    right: 15%;
    width: clamp(150px, 28%, 220px);
}

/* fv_02.png - large circle at bottom left */
.fv-deco-02 {
    bottom: 0%;
    left: -15%;
    width: clamp(200px, 50%, 320px);
}

/* fv_03.png - center bottom */
.fv-deco-03 {
    bottom: 12%;
    left: 45%;
    transform: translateX(-50%);
    width: clamp(180px, 42%, 300px);
}

/* fv_04.png - center right */
.fv-deco-04 {
    top: 28%;
    right: 10%;
    width: clamp(120px, 22%, 180px);
}

/* fv_05.png - right side */
.fv-deco-05 {
    top: 32%;
    right: -8%;
    width: clamp(160px, 32%, 240px);
}

.fv-left-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    text-align: left;
}

.fv-catch,
.fv-sub,
.fv-logo,
.fv-read-more {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fv-catch.is-active,
.fv-sub.is-active,
.fv-logo.is-active {
    opacity: 1;
    --opacity: 1;
    --translate-y: 0;
}

.fv-read-more.is-visible {
    opacity: 1;
}

.char {
    display: inline-block;
    opacity: var(--opacity, 0);
    transform: translateY(var(--translate-y, 15px));
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1),
        transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: calc(0.04s * var(--char-index));
    white-space: pre;
}

.fv-catch {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    line-height: 1.75;
    color: #fff;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.fv-catch-line {
    display: block;
}

.fv-catch-line:nth-child(2) {
    white-space: nowrap;
}

.fv-sub {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.fv-logo {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2em;
    margin-bottom: 2.8rem;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.4), 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.fv-logo-line {
    display: block;
}

@media (max-width: 1024px) {
    .fv-logo-line {
        display: inline;
    }

    .fv-logo-line:first-child::after {
        content: "\00a0";
        /* Non-breaking space on mobile */
    }
}

.fv-logo .char {
    transition-delay: calc(0.06s * var(--char-index));
}

/* Read More - Fixed at bottom left of text block */
.fv-read-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.fv-read-more-line {
    width: 1px;
    height: 0;
    background-color: #fff;
}

.fv-read-more-line.animate {
    animation: lineGrow 1.2s ease-out forwards;
}

@keyframes lineGrow {
    from {
        height: 0;
    }

    to {
        height: 70px;
    }
}

.fv-read-more-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: lowercase;
}

/* Right Column - Dense image grid with "chunk" feeling */
.fv-right {
    position: relative;
    width: 100%;
    height: 100%;
    align-items: stretch;
}

.fv-image-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 160px 280px 180px;
    /* Increased heights to fill vertical space */
    gap: 15px;
    /* Increased gap slightly for clarity */
    width: 100%;
    align-self: center;
}

/* Animated Border Styles */
.fv-grid-border {
    position: absolute;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}

/* Individual Border Colors and Glows - Neon Theme (Stronger Glow) */
.fv-grid-1 .fv-grid-border {
    background-color: #b0941e;
    box-shadow: 0 0 15px #b0941e, 0 0 10px #b0941e, 0 0 5px #fff;
}

.fv-grid-2 .fv-grid-border {
    background-color: #987844;
    box-shadow: 0 0 15px rgba(152, 120, 68, 0.6), 0 0 10px rgba(152, 120, 68, 0.4), 0 0 5px #fff;
}

.fv-grid-3 .fv-grid-border {
    background-color: #fffcf2;
    box-shadow: 0 0 15px rgba(255, 252, 242, 1), 0 0 10px rgba(255, 252, 242, 0.8), 0 0 5px #fff;
}

.fv-grid-4 .fv-grid-border {
    background-color: #4a2657;
    box-shadow: 0 0 15px #4a2657, 0 0 10px #4a2657, 0 0 5px #fff;
}

.fv-grid-5 .fv-grid-border {
    background-color: #b0941e;
    box-shadow: 0 0 15px #b0941e, 0 0 10px #b0941e, 0 0 5px #fff;
}

.fv-grid-6 .fv-grid-border {
    background-color: #4a2657;
    box-shadow: 0 0 15px #4a2657, 0 0 10px #4a2657, 0 0 5px #fff;
}

.fv-grid-7 .fv-grid-border {
    background-color: #fffcf2;
    box-shadow: 0 0 15px rgba(255, 252, 242, 1), 0 0 10px rgba(255, 252, 242, 0.8), 0 0 5px #fff;
}

.border-top,
.border-bottom {
    width: calc(100% - 16px);
    height: 2px;
}

.border-right,
.border-left {
    height: calc(100% - 16px);
    width: 2px;
}

.border-top {
    top: 0;
    right: 0;
}

.border-right {
    top: 0;
    right: 0;
}

.border-bottom {
    bottom: 0;
    left: 0;
}

.border-left {
    bottom: 0;
    left: 0;
}



.fv-grid-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    padding: 8px;
    /* Inner spacing for border */
}

/* Animated Border Styles inside each item */
/* Animation trigger per item */
.fv-grid-item.show .fv-grid-border {
    opacity: 1;
}

.fv-grid-item.show .border-top,
.fv-grid-item.show .border-bottom {
    animation: stroke-width-item 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fv-grid-item.show .border-right,
.fv-grid-item.show .border-left {
    animation: stroke-height-item 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes stroke-width-item {
    0% {
        width: 0;
        opacity: 1;
    }

    100% {
        width: calc(100% - 16px);
        opacity: 1;
    }
}

@keyframes stroke-height-item {
    0% {
        height: 0;
        opacity: 1;
    }

    100% {
        height: calc(100% - 16px);
        opacity: 1;
    }
}

.fv-grid-item.show {
    opacity: 1;
    transform: translateY(0);
}

.about-img-container {
    position: relative;
    padding: 10px;
}

.about-img-container .fv-grid-border {
    background-color: #b0941e;
    box-shadow: 0 0 15px #b0941e, 0 0 10px #b0941e, 0 0 5px #fff;
}

.about-img-container.is-visible .fv-grid-border {
    opacity: 1;
}

.about-img-container.is-visible .border-top,
.about-img-container.is-visible .border-bottom {
    animation: stroke-width-item 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-img-container.is-visible .border-right,
.about-img-container.is-visible .border-left {
    animation: stroke-height-item 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fv-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Grid Layout Pattern (matching reference image) */
/* Grid structure: 
   Row 1 (140px): [empty] [grid-1: food_06 small] [grid-2: food_05 tall - row 1-3]
   Row 2 (240px): [grid-3: food_04 wide - col 1-2] [grid-2 continues]
   Row 3 (160px): [grid-4: food_01] [grid-5: food_02] [grid-6: food_03]
*/

/* Top left (newly added) - food_07 */
.fv-grid-7 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* Top center - small image (food_06) */
.fv-grid-1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

/* Right side - tall image spanning 2 rows (food_05) */
.fv-grid-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

/* Middle - wide image (food_04) */
.fv-grid-3 {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

/* Bottom row - 3 equal images */
.fv-grid-4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.fv-grid-5 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.fv-grid-6 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

/* PC - Ensure image grid fits within container */
@media (min-width: 1025px) {
    .fv-right {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .fv-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }

    .fv-left {
        min-height: auto;
        justify-content: center;
        padding-left: 0;
    }

    .fv-left-content {
        max-width: 100%;
        text-align: center;
    }

    /* Show decorations on mobile but adjust sizes */
    .fv-decorations {
        display: block;
        opacity: 0.6;
        /* Slightly lighter on mobile */
    }

    .fv-deco-01 {
        width: 100px;
        top: 5%;
        right: 5%;
    }

    .fv-deco-02 {
        width: 150px;
        bottom: -5%;
        left: -10%;
    }

    .fv-deco-03 {
        width: 140px;
        bottom: 10%;
        left: 50%;
    }

    .fv-deco-04 {
        width: 80px;
        top: 20%;
        right: 0%;
    }

    .fv-deco-05 {
        width: 120px;
        top: 25%;
        right: -5%;
    }

    .fv-catch {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
        margin-bottom: 1rem;
    }

    .fv-sub {
        margin-bottom: 2rem;
    }

    .fv-logo {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 2rem;
    }

    .fv-read-more {
        align-items: center;
        margin: 0 auto;
    }

    .fv-right {
        min-height: 500px;
    }

    .fv-image-grid {
        min-height: 500px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fv-section {
        padding: 80px 0 40px;
    }

    .fv-container {
        padding: 0 20px;
        gap: 30px;
    }

    .fv-left {
        padding: 0;
    }

    .fv-catch {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .fv-sub {
        font-size: 0.85rem;
    }

    .fv-logo {
        font-size: 2.5rem;
    }

    .fv-read-more-line.animate {
        animation: lineGrowMobile 1.2s ease-out forwards;
    }

    @keyframes lineGrowMobile {
        from {
            height: 0;
        }

        to {
            height: 50px;
        }
    }

    .fv-read-more-text {
        font-size: 0.8rem;
    }

    .fv-right {
        min-height: 400px;
    }

    .fv-image-grid {
        min-height: 400px;
        gap: 8px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .fv-catch {
        font-size: 1.1rem;
    }

    .fv-logo {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .fv-right {
        min-height: 350px;
    }

    .fv-image-grid {
        min-height: 350px;
        gap: 6px;
    }
}

/* CTA & Reservation */
.reservation-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--onzs-dark);
}

@media (max-width: 768px) {
    .reservation-title {
        font-size: 1.8rem;
    }
}

/* Menu Course Card */
.course-menu-card {
    background:
        radial-gradient(circle at 90% 10%, #FFF9E6, transparent 50%),
        radial-gradient(circle at 10% 90%, #FFF9E6, transparent 50%),
        #FFF;
}

/* About Section Customization */
#gallery {
    background: linear-gradient(180deg, #161616 0%, #D3CFC1 100%);
    color: #fff;
}

#gallery .section-title h2 {
    color: #fff;
}

#gallery .swiper-button-next,
#gallery .swiper-button-prev {
    color: #fff !important;
}

#gallery p,
#gallery a {
    color: #fff;
    border-color: #fff;
}

/* Cast Section Styling */
#cast {
    background-color: #161616;
    color: #fff;
    position: relative;
}

#cast .section-title h2 {
    color: #fff;
}

#cast .bg-primary-beige {
    background-color: #fff9e629;
    /* Updated to requested color */
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

#cast p,
#cast h3 {
    color: #fff;
}

#cast a {
    color: #fff;
    border-color: #fff;
}

#about {
    position: relative;
    color: white !important;
}

#about .section-title h2,
#about p,
#about span {
    color: white !important;
}

#about .section-title h2::after {
    background: white !important;
}

img {
    border-radius: 0 !important;
    box-shadow: none !important;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--onzs-dark) !important;
}

.section-title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.section-title h2 {
    color: #f8f9fa;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 40px;
    height: 1px;
    background: var(--accent-gold);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--accent-gold);
}

.section-title h2 {
    text-shadow: 0 0 5px rgba(107, 26, 135, 0.2);
    letter-spacing: 0.2em;
}

/* Neon Utilites */
.neon-text-purple {
    text-shadow: var(--neon-purple);
}

.neon-text-gold {
    text-shadow: var(--neon-gold);
}

.neon-border-purple {
    box-shadow: 0 0 15px #6b1a87;
    border-color: #6b1a87;
}

.logo a {
    text-shadow: 0 0 8px rgba(107, 26, 135, 0.4);
    transition: text-shadow 0.3s ease;
}

.logo a:hover {
    text-shadow: var(--neon-purple);
}

.gallery-swiper .swiper-slide {
    width: 300px;
}

@media (max-width: 768px) {
    .gallery-swiper .swiper-slide {
        width: 80%;
    }
}

#back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.menu-link:hover::after {
    width: 100%;
}

main {
    padding-bottom: 72px;
}

@media (min-width: 768px) {
    main {
        padding-bottom: 0;
    }
}

/* Scroll Animation */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}



/* ==========================================================================
   Gallery Modal (Lightbox)
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    cursor: zoom-out;
    padding: 20px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active img {
    transform: scale(1);
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
    transition: transform 0.2s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__close:hover {
    transform: scale(1.1);
}

.gallery-item img {
    cursor: pointer;
}

/* Map height on mobile */
@media (max-width: 768px) {
    #access iframe {
        min-height: 550px !important;
    }
}

.review-content-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none;
    transition: opacity 0.3s;
}

.review-content-wrapper[style*="max-height: none"]::after {
    opacity: 0;
}

/* Service Decorative Text Overlay */
.service-deco-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(107, 26, 135, 0.4);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    line-height: 1.2;
}

.service-deco-text.is-visible {
    opacity: 1;
    --opacity: 1;
    --translate-y: 0;
}

.service-deco-text .char {
    display: inline-block;
    opacity: var(--opacity, 0);
    transform: translateY(var(--translate-y, 15px));
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1),
        transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: calc(0.04s * var(--char-index));
    white-space: pre;
}

/* =========================
   POINT 01 (Service) 専用
   ========================= */

/* 既存の flicker-label を “単語として読める” 間に調整 */
.flicker-label {
    display: flex;
    align-items: center;
    gap: 15px;
    /* 枠がなくなったので少し詰め気味に */
    letter-spacing: 0;
    font-family: 'Cormorant Garamond', serif;
    /* フォント変更 */
    font-size: 44px;
    /* セリフ体に合わせて少し調整 */
    width: fit-content;
    position: relative;
    isolation: isolate;
    margin-bottom: 2rem;
    overflow: visible;
}

/* 左側：POINT（バラけすぎない） */
.flicker-word {
    display: inline-flex;
    gap: .15em;
    /* セリフ体に合わせて間隔を少しタイトに */
}

.flicker-word span {
    color: #f1f1f1;
    opacity: .3;
    /* セリフ体の細い線を補うため少し不透明度アップ */
    animation: flickerLG 2s linear reverse infinite;
}

/* 右側：01（枠なし・光のみ） */
.flicker-num {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: visible;
    /* 枠と背景を削除 */
    background: none;
    border: none;
    backdrop-filter: none;
}

/* 01 の文字 */
.flicker-num span {
    color: #fff;
    opacity: 1;
    font-weight: 600;
    letter-spacing: .05em;
}

/* 01 背後のにじみ（2層） */
.flicker-num::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, .45) 0%,
            rgba(255, 255, 255, .15) 35%,
            rgba(255, 255, 255, 0) 70%);
    filter: blur(14px);
    opacity: .8;
    z-index: -2;
    pointer-events: none;
}

.flicker-num::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, .4) 0%,
            rgba(255, 255, 255, 0) 62%);
    filter: blur(6px);
    opacity: .9;
    z-index: -1;
    pointer-events: none;
}

/* Service Section Darkening for Neon Visibility */
#service {
    background: #161616 !important;
    color: #fff !important;
}

#service .section-title h2 {
    color: #fff !important;
}

#service p,
#service h3 {
    color: rgba(255, 255, 255, 0.9) !important;
}

@keyframes flickerI {
    0% {
        opacity: 0.4;
    }

    5% {
        opacity: 0.5;
    }

    10% {
        opacity: 0.6;
    }

    15% {
        opacity: 0.85;
    }

    25% {
        opacity: 0.5;
    }

    30% {
        opacity: 1;
    }

    35% {
        opacity: 0.1;
    }

    40% {
        opacity: 0.25;
    }

    45% {
        opacity: 0.5;
    }

    60% {
        opacity: 1;
    }

    70% {
        opacity: 0.85;
    }

    80% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes flickerLG {
    0% {
        opacity: 0.19;
    }

    5% {
        opacity: 0.2;
    }

    10% {
        opacity: 0.25;
    }

    15% {
        opacity: 0.35;
    }

    25% {
        opacity: 0.2;
    }

    30% {
        opacity: 0.4;
    }

    35% {
        opacity: 0.1;
    }

    40% {
        opacity: 0.25;
    }

    45% {
        opacity: 0.2;
    }

    60% {
        opacity: 0.4;
    }

    70% {
        opacity: 0.35;
    }

    80% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.4;
    }
}

@keyframes flickerH {

    5% {
        opacity: 0.2;
    }

    10% {
        opacity: 0.12;
    }

    15% {
        opacity: 0.2;
    }

    25% {
        opacity: 0.15;
    }

    30% {
        opacity: 0.4;
    }

    35% {
        opacity: 0.05;
    }

    40% {
        opacity: 0.12;
    }

    45% {
        opacity: 0.15;
    }

    60% {
        opacity: 0.3;
    }

    70% {
        opacity: 0.2;
    }

    80% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.18;
    }

    100% {
        opacity: 0.3;
    }
}

/* Group Stores Section Styling */
#group {
    background-color: #161616;
    color: #fff;
    position: relative;
}

#group .section-title h2 {
    color: #fff;
}

/* Q&A Section Styling */
#qa {
    background: linear-gradient(180deg, #161616 0%, #cfcbbd 100%);
    position: relative;
    /* Ensure stars are visible */
}

#qa .section-title h2 {
    color: #fff;
}