/*
 Theme Name: Organic Spa
 Theme URI: https://organicspa.sa
 Description: Single-page theme for Organic Spa services list (final).
 Author: Hassan
 Version: 1.2
 Text Domain: organicspa-theme
*/

html,
        body {
            scrollbar-width: thin;
            scrollbar-color: green black;
        }

        html::-webkit-scrollbar,
        body::-webkit-scrollbar {
            width: 4px;
        }

        html::-webkit-scrollbar-thumb,
        body::-webkit-scrollbar-thumb {
            background-color: green;
            border-radius: 75px;
        }

        html::-webkit-scrollbar-track,
        body::-webkit-scrollbar-track {
            background-color: black;
        }

        body {
            font-family: 'Play', sans-serif;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
            background: url('4.jpg') no-repeat center center fixed;
            background-size: cover;
            height: 100%;
            width: 100%;
        }

/* Slider Container */
.slider-container {
    margin-top: 19px;
    overflow: hidden; /* Hides overflow and disables scrolling */
    width: 178vh;
    height: 35px; /* Adjustable height */
    display: flex;
	object-fit: contain;
    align-items: center; /* Centers content vertically */
}

/* Slider Content */
.slider {
    animation: scroll 350s linear infinite;
    white-space: nowrap;
    align-items: center; /* Ensures slider text is vertically centered */
}

/* Slider Items */
.slider span {
    color: #ffffff;
    font-size: 19px; /* Font size for desktop */
    padding: 0 25px; /* Spacing between items */
    display: inline-block;
    text-align: center; /* Ensures text alignment is clean */
    
}

/* Responsive Design */



/* Scroll Animation */
@keyframes scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
        .arabic {
            font-family: 'Cairo', sans-serif;
            font-size: 19px;
        }

        .english {
            font-family: 'Play', sans-serif;
            font-size: 19px;
        }

        nav {
            position: relative;
            background-color: #3939393d;
            padding: 10px 0;
            text-align: center;
            font-family: 'Arial', sans-serif;
            direction: rtl;
            overflow-x: hidden;
            white-space: nowrap;
        }



        nav ul {
            display: inline-flex;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        nav ul li {
            margin: 0 15px;
            display: inline-block;
        }

        nav ul li a {
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            font-weight: bold;
            display: inline-block;
            transition: color 0.3s;
        }

        nav ul li a:hover,
        nav ul li a.active {
            color: green;
        }
   
        .sticky-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease-in-out;
        }

        section {
            padding: 100px 20px;
            margin-top: 60px;
            padding-right: 25px;
            padding-left: 25px;
            font-size: 19px;
        }

        .heading-title {
            text-align: center;
            margin-top: 100px;
            font-size: 2.5em;
        }

        .subtitle {
            text-align: center;
            font-size: 19px;
            color: #555;
        }

        .buttons-container {
            text-align: center;
            margin-top: 20px;
        }

        .buttons-container button {
            padding: 10px 20px;
            margin: 10px;
            font-size: 1em;
            cursor: pointer;
            border: none;
            background-color: #333;
            color: white;
            transition: background-color 0.3s;
        }

        .buttons-container button:hover {
            background-color: #f0a500;
        }

        .top-status-indicator {
            position: absolute;
            top: 20px;
            left: 20px;
            padding: 5px 10px;
            font-size: 0.9em;
            font-weight: bold;
            color: white;
            border-radius: 5px;
            z-index: 3000;
        }

        .bottom-status-indicator {
            position: fixed;
            bottom: 20px;
            left: 20px;
            padding: 5px 10px;
            font-size: 0.9em;
            font-weight: bold;
            color: white;
            border-radius: 5px;
            z-index: 3000;
        }

        .open-indicator {
            background-color: green;
        }

        .closed-indicator {
            background-color: red;
        }

        footer {

            color: white;
            text-align: center;
            padding: 20px;
            position: relative;
        }

        .footer-links {
            margin-top: 10px;
        }

        .footer-links a {
            color: #ffffff;
            text-decoration: none;
            margin: 0 10px;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .share-button {
            position: absolute;
            top: 10px;
            right: 10px;
            color: #ffffff;
            border: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            z-index: 3000;
            padding: 15px 15px;
            outline: none;
            border-radius: 21px;
            overflow: hidden;
        }

        .bottom-share-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 15px 15px;
            outline: none;
            border-radius: 21px;
            color: #ffffff;
            border: none;
            font-size: 16px;
            cursor: pointer;
            font-weight: bold;
            z-index: 3000;
            display: none;
            overflow: hidden;
        }

        .share-button::before,
        .bottom-share-button::before {
            content: "";
            background: linear-gradient(45deg,
                    #FF0000, #FF7300, #FFFB00, #48FF00,
                    #00FFD5, #002BFF, #FF00C8, #FF0000);
            position: absolute;
            top: -2px;
            left: -2px;
            width: calc(100% + 4px);
            height: calc(100% + 4px);
            background-size: 600%;
            z-index: -1;
            border-radius: 15px;
            filter: blur(8px);
            animation: glowing 20s linear infinite;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .share-button::after,
        .bottom-share-button::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #157b09;
            z-index: -2;
            border-radius: 15px;
        }

        .share-button:hover::before,
        .bottom-share-button:hover::before {
            opacity: 1;
        }

        .share-button:active,
        .bottom-share-button:active {
            color: #00120b;
            font-weight: bold;
        }

        .share-button:active::after,
        .bottom-share-button:active::after {
            background: transparent;
        }

        @keyframes glowing {
            0% {
                background-position: 0 0;
            }

            50% {
                background-position: 400% 0;
            }

            100% {
                background-position: 0 0;
            }
        }


        .share-box {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            border: 1px solid #ccc;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 3000;
        }

        .share-box h3 {
            margin-top: 0;
            font-size: 1.5em;
            text-align: center;
        }

        .share-icons {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .share-box .close {
            position: absolute;
            top: 10px;
            right: 10px;
            color: #333;
            font-size: 20px;
            cursor: pointer;
        }

        .share-box .close:hover {
            color: #f00;
        }

        .share-link {
            display: flex;
            align-items: center;
        }

        .share-link input {
            flex-grow: 1;
            padding: 5px;
            margin-right: 5px;
            border: 1px solid #ccc;
            border-radius: 3px;
        }

        .share-link button {
            padding: 5px;
            background: #333;
            color: white;
            border: none;
            cursor: pointer;
        }

        .item-card {
            flex: 1 1 calc(50% - 20px);
            box-sizing: border-box;
            border: 1px solid #ccc;
            padding: 25px;
            width: 400px;
            display: flex;
            gap: 15px;
            align-items: center;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .item-card {
                flex: 1 1 100%;
                box-sizing: border-box;
                border: 1px solid #ccc;
                padding: 25px;
                display: block;
                cursor: pointer;
                align-items: center;
                justify-content: center;
                text-align: center;

            }

            .body {
                font-family: 'Play', sans-serif;
                margin: 0;
                padding: 0;
                scroll-behavior: smooth;
                background: url('4.jpg') no-repeat center center fixed;
                background-size: cover;
                height: 100%;
                width: 100%;
            }

            section {
                margin-top: 25px;
                height: 100%;
                padding-right: 10px;
                padding-left: 15px;
            }
            nav {
            position: relative;
            background-color: #3939393d;
            padding: 10px 0;
            text-align: center;
            font-family: 'Arial', sans-serif;
            direction: rtl;
            overflow-x: auto;
            white-space: nowrap;
        }
            .top-status-indicator {
                top: 15px;
                margin-top: 19px;
                margin-left: 10px;
                left: 5px;
                font-size: 12px;
                padding: 5px 10px;
                border-radius: 15px;
            }

            .bottom-status-indicator {
                position: fixed;
                bottom: 20px;
                left: 5px;
                padding: 5px 10px;
                font-size: 12px;
                color: white;
                border-radius: 15px;
                z-index: 3000;
            }

            .share-button {
                top: 15px;
                right: 5px;
                font-size: 12px;
                padding: 10px 10px;
                border-radius: 15px;
            }

            .bottom-share-button {
                position: fixed;
                bottom: 20px;
                right: 5px;
                padding: 10px 10px;
                outline: none;
                border-radius: 15px;
                color: #ffffff;
                border: none;
                font-size: 12px;
                cursor: pointer;
                font-weight: bold;
                z-index: 3000;
                display: none;
                overflow: hidden;
            }

            footer .arabic {
                flex-direction: column;
                align-items: center;
            }

            footer .arabic>div {
                margin-bottom: 20px;
                width: 100%;
                text-align: center;
            }

            .column arabic {
                display: flex;
                padding-right: 5px;
            }

            .column english {
                display: flex;
                padding-left: 5px;
            }

            .icon-3d {
                margin-top: -95px;
                margin-bottom: -96px;
                font-size: 0.2rem;
                margin-right: -10px;
            }


            .body {
                font-family: 'Play', sans-serif;
                margin: 0;
                padding: 0;
                scroll-behavior: smooth;
                background: url('4.jpg') no-repeat center center fixed;
                background-size: cover;
                height: 100%;
                width: 100%;
            }


        }
        nav {
            position: relative;
            background-color: #3939393d;
            padding: 10px 0;
            text-align: center;
            font-family: 'Arial', sans-serif;
            direction: rtl;
            overflow-x: auto;
            white-space: nowrap;
        }
        @media (max-width: 912px) {
            .item-card {
                flex: 1 1 calc(50% - 20px);
                box-sizing: border-box;
                border: 1px solid #ccc;
                padding: 15px;
                display: block;
                cursor: pointer;

            }
     
            .body {
                font-family: 'Play', sans-serif;
                margin: 0;
                padding: 0;
                scroll-behavior: smooth;
                background: url('4.jpg') no-repeat center center fixed;
                background-size: cover;
                height: 100%;
                width: 100%;
            }

            section {
                margin-top: 25px;
                height: 100%;
                padding-right: 25px;
                padding-left: 25px;
            }

            .bottom-status-indicator {
                position: fixed;
                bottom: 20px;
                left: 5px;
                padding: 5px 10px;
                font-size: 12px;
                color: white;
                border-radius: 15px;
                z-index: 3000;
            }

            .share-button {
                top: 15px;
                right: 5px;
                font-size: 12px;
                padding: 10px 10px;
                border-radius: 15px;
            }

            .bottom-share-button {
                position: fixed;
                bottom: 20px;
                right: 5px;
                padding: 10px 10px;
                outline: none;
                border-radius: 15px;
                color: #ffffff;
                border: none;
                font-size: 12px;
                cursor: pointer;
                font-weight: bold;
                z-index: 3000;
                display: none;
                overflow: hidden;
            }

            footer .arabic {
                flex-direction: column;
                align-items: center;
            }

            footer .arabic>div {
                margin-bottom: 20px;
                width: 100%;
                text-align: center;
            }

            .column arabic {
                display: flex;
                padding-right: 5px;
            }

            .column english {
                display: flex;
                padding-left: 5px;
            }


            .top-status-indicator {
                top: 15px;
                margin-top: 19px;
                margin-left: 10px;
                left: 5px;
                font-size: 12px;
                padding: 5px 10px;
                border-radius: 15px;
            }

            .icon-3d {
                margin-top: -95px;
                margin-bottom: -96px;
                font-size: 0.2rem;
                margin-right: -10px;
            }


        }

        @media (max-width: 1024px) {
            .item-card {
                flex: 1 1 calc(50% - 20px);

                box-sizing: border-box;
                border: 1px solid #ccc;
                padding: 15px;
                display: block;
                cursor: pointer;

            }
   
            section {
                margin-top: 25px;
                padding-right: 25px;
                padding-left: 25px;
            }

        }

        .body {
            font-family: 'Play', sans-serif;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth;
            background: url('4.jpg') no-repeat center center fixed;
            background-size: cover;
            height: 100%;
            width: 100%;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.7);
        }

        .modal-content {
            background-color: #fff;
            margin: 10% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
            position: relative;
        }

        .close {
            position: absolute;
            top: 10px;
            right: 15px;
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

        .subtitle-flex {
            display: flex;
            padding-left: 45px;
            padding-right: 45px;
            justify-content: space-between;
            align-items: center;
            color: #ffffff;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.8;
            margin: 20px auto;
            gap: 30px;

        }

        .column {
            flex: 1;
            padding: 0 10px;
        }

        .english {
            font-size: 19px;
            text-align: left;

            direction: ltr;

        }

        .arabic {
            font-size: 19px;
            text-align: right;

            direction: rtl;

        }

        a {
            color: white;
        }

        #ksa-time {
            display: none;
            font-size: 1.5em;
            color: #ffffff;
            font-weight: bold;
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            padding: 10px;
        }

        .copyright {
            color: #029807;

            text-align: center;
            padding: 5px;

        }

        .column arabic {
            padding-right: 35px;
        }

        .column english {
            padding-left: 35px;
        }

        :root {
            --greenColor: rgb(54, 244, 111);
            --yellowColor: rgb(194, 243, 33);
        }

        .float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 10px;
            right: 20px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            z-index: 100;
        }

        .my-float {
            margin-top: 15px;
        }


        .icon-3d {
            margin-top: 15px;
            margin-bottom: -10px;
            padding: 11px;
            animation: icon3d 200ms 10;
            color: #fff;
            font-size: 2.2rem;
            cursor: pointer;
        }

        .icon-3d:hover {
            animation: icon3d 200ms infinite;
        }

        @keyframes icon3d {
            0% {
                text-shadow: 5px 4px var(--greenColor), -5px -6px var(--yellowColor);
            }

            25% {
                text-shadow: -5px -6px var(--greenColor), 5px 4px var(--yellowColor);
            }

            50% {
                text-shadow: 5px -4px var(--greenColor), -8px 4px var(--yellowColor);
            }

            75% {
                text-shadow: -8px -4px var(--greenColor), -5px -4px var(--yellowColor);
            }

            100% {
                text-shadow: -5px 0 var(--greenColor), 5px -4px var(--yellowColor);
            }
        }

        .spa {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background: #020202;
            background-size: cover;
            margin: 0;
            flex-direction: column;
            text-align: center;
            position: relative;
            z-index: 0;
        }

        .loader {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: black;
            z-index: 9999;
        }

        .logo2 {
            width: 25rem;
            height: 25rem;
            background: url('logo.png') no-repeat center;
            background-size: contain;
            border-radius: 50%;
            margin-bottom: 20px;
        }

        .loading-bar {
            width: 200px;
            height: 10px;
            background: white;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }

        .loading-bar::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 100%;
            background: #4CAF50;
            animation: load 2s linear forwards;
        }

        @keyframes load {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(0);
            }
        }
        .label {
    position: relative;
    padding: 10px 10px;
    font-size: 12px;
    border-radius: 5px;
  }

  .sale-label {
    color: white;
  }

  .discount-label {
    background-color: rgb(1, 54, 7);
    color: rgb(255, 255, 255);
  }

/* Extra fixes */
.loader {
    pointer-events: none !important;
}

