/* ===========================================
   Arabian Bistro Premium Maintenance Page
=========================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    /* Browser Theme */
    color-scheme: dark;

    /* Brand Colors */
    --primary:#06B8B0;
    --secondary:#02343F;
    --accent:#FADA50;

    /* Supporting Colors */
    --accent-light:#FFE57A;
    --accent-dark:#C8A800;

    --white:#FFFFFF;
    --text:#F8F8F8;
    --text-light:#D9D9D9;

    /* Background */
    --bg-dark:#01151B;
    --bg:#022D36;
    --bg-light:#054650;

    /* Glass Effect */
    --glass:rgba(255,255,255,.08);
    --glass-border:rgba(255,255,255,.15);

    /* Shadows */
    --shadow:rgba(0,0,0,.45);
    --gold-glow:rgba(250,218,80,.45);

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:linear-gradient(
        -45deg,
        #01161D,
        #012F37,
        #014D4E,
        #032A2D
    );

    background-size:400% 400%;
    animation:gradientMove 15s ease infinite;

    overflow-x:hidden;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
    color:var(--text);

}  /* <-- THIS CLOSING BRACE IS REQUIRED */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:linear-gradient(-45deg,
#01161d,
#012f37,
#014d4e,
#032a2d);

background-size:400% 400%;

animation:gradientMove 15s ease infinite;

overflow-x:hidden;

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

position:relative;

color:var(--text);

}


/* Animated Gradient */

@keyframes gradientMove{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}

/* ===========================================
   GOLD PARTICLES
=========================================== */

.background-animation{

position:fixed;

width:100%;

height:100%;

top:0;

left:0;

overflow:hidden;

z-index:-1;

}

.background-animation span{

position:absolute;

display:block;

width:6px;

height:6px;

background:var(--gold-light);

border-radius:50%;

box-shadow:

0 0 8px var(--gold-light),

0 0 15px var(--gold-light);

animation:particle 18s linear infinite;

opacity:.8;

}

.background-animation span:nth-child(1){

left:8%;

animation-delay:0s;

animation-duration:18s;

}

.background-animation span:nth-child(2){

left:22%;

animation-delay:3s;

animation-duration:20s;

}

.background-animation span:nth-child(3){

left:45%;

animation-delay:6s;

animation-duration:24s;

}

.background-animation span:nth-child(4){

left:65%;

animation-delay:1s;

animation-duration:19s;

}

.background-animation span:nth-child(5){

left:82%;

animation-delay:4s;

animation-duration:23s;

}

.background-animation span:nth-child(6){

left:95%;

animation-delay:8s;

animation-duration:21s;

}

@keyframes particle{

0%{

transform:translateY(100vh) scale(.4);

opacity:0;

}

20%{

opacity:1;

}

80%{

opacity:1;

}

100%{

transform:translateY(-100px) scale(1.2);

opacity:0;

}

}

/* ===========================================
   MAIN SECTION
=========================================== */

.maintenance-section{

width:100%;

display:flex;

justify-content:center;

align-items:center;

padding:50px 20px;

}

/* ===========================================
   GLASS CARD
=========================================== */

.maintenance-card{

position:relative;

width:100%;

max-width:700px;

padding:50px;

background:var(--glass);

border:1px solid rgba(255,255,255,.15);

backdrop-filter:blur(2px);

border-radius:30px;

text-align:center;

box-shadow:

0 20px 60px rgba(0,0,0,.45);

z-index:5;

}

/* Golden Glow */

.maintenance-card::before{

content:"";

position:absolute;

width:180px;

height:180px;

background:rgba(212,175,55,.18);

filter:blur(90px);

top:-60px;

left:-60px;

z-index:-1;

}

/* ===========================================
   LOGO
=========================================== */

.logo{

display:flex;

justify-content:center;

margin-bottom:25px;

}

.logo img{

width:150px;

height:150px;

object-fit:contain;

border-radius:50%;

background:#fff;

padding:15px;

animation:logoGlow 1.5s ease-in-out infinite alternate;

}

@keyframes logoGlow {

    from {
        box-shadow: 0 0 10px var(--accent);
    }

    to {
        box-shadow: 0 0 10px var(--accent );
    }

}

/* ===========================================
   FLOATING MANDI
=========================================== */

.mandi-animation{

position:fixed;

right:3%;

bottom:6%;

width:340px;

z-index:2;

pointer-events:none;

animation:floatMandi 6s ease-in-out infinite;

transform-style:preserve-3d;

}

.mandi-animation img{

width:100%;

filter:drop-shadow(0 25px 35px rgba(0,0,0,.45));

}

@keyframes floatMandi{

0%{

transform:

translateY(0)

rotateY(0deg);

}

25%{

transform:

translateY(-15px)

rotateY(8deg);

}

50%{

transform:

translateY(-25px)

rotateY(0deg);

}

75%{

transform:

translateY(-15px)

rotateY(-8deg);

}

100%{

transform:

translateY(0)

rotateY(0deg);

}

}

/* ===========================================
   BADGE
=========================================== */

.badge{

display:inline-block;

padding:10px 24px;

border-radius:50px;

background:var(--gold);

color:#222;

font-weight:600;

margin-bottom:20px;

letter-spacing:.5px;

}

/* ===========================================
   HEADING
=========================================== */

h1{

font-size:42px;

font-weight:700;

color:#fff;

margin-bottom:18px;

}

p{

font-size:18px;

line-height:1.8;

color:#f0f0f0;

margin-bottom:35px;

}
/* ===========================================
   LOADER
=========================================== */

.loader{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:35px 0;
}

.loader span{
    width:14px;
    height:14px;
    border-radius:50%;
    background:var(--gold);
    box-shadow:0 0 10px var(--gold-light);
    animation:loading 1.4s infinite ease-in-out;
}

.loader span:nth-child(2){
    animation-delay:.2s;
}

.loader span:nth-child(3){
    animation-delay:.4s;
}

@keyframes loading{

    0%,80%,100%{
        transform:scale(.5);
        opacity:.4;
    }

    40%{
        transform:scale(1.4);
        opacity:1;
    }

}

/* ===========================================
   BUTTON AREA
=========================================== */

.buttons{

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
    margin-top:20px;

}

.btn{

    min-width:180px;

    padding:16px 26px;

    border-radius:60px;

    text-decoration:none;

    color:#fff;

    font-weight:600;

    letter-spacing:.5px;

    transition:.35s;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    position:relative;

    overflow:hidden;

}

/* WhatsApp */

.whatsapp{

background:#25D366;

box-shadow:0 10px 30px rgba(37,211,102,.35);

}

/* Call */

.call{

background:#25D366;

box-shadow:0 10px 30px rgba(15,139,255,.35);

}

/* Email */

.email{

background:#25D366;

box-shadow:0 10px 30px rgba(211,84,0,.35);

}

/* Maps */

.maps{

background:#25D366;

box-shadow:0 10px 30px rgba(212,175,55,.45);

}

.btn:hover{

transform:translateY(-6px);

filter:brightness(1.05);

}

/* ===========================================
   SOCIAL ICONS
=========================================== */

.social{

margin-top:40px;

display:flex;

justify-content:center;

gap:18px;

}

.social a{

width:52px;

height:52px;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:22px;

color:#fff;

background:rgba(255,255,255,.08);

backdrop-filter:blur(12px);

transition:.35s;

border:1px solid rgba(255,255,255,.1);

}

.social a:hover{

background:var(--gold);

color:#222;

transform:translateY(-8px) rotate(360deg);

box-shadow:0 0 20px var(--gold-light);

}

/* Footer */

.footer{
    margin-top:40px;
    text-align:center;
    color:#d9d9d9;
    font-size:15px;
}

.footer p{
    margin:8px 0;
}

.footer-tagline{
    color:#FFD76A;
    font-weight:500;
    letter-spacing:.5px;
}

.footer-divider{
    width:80px;
    height:2px;
    background:#D4AF37;
    margin:18px auto;
    border-radius:10px;
}

.footer-credit{
    font-size:14px;
    color:#bdbdbd;
}

.footer-credit a{
    color:#FFD76A;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-credit a:hover{
    color:#ffffff;
}

.footer-social{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:35px;
}

.footer-social a{
    width:52px;
    height:52px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#FFD76A;
    font-size:18px;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#D4AF37;
    color:#012B36;
    transform:translateY(-5px);
}

/* ===========================================
   FLOATING WHATSAPP
=========================================== */

.floating-whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:68px;

height:68px;

background:#25D366;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

color:#fff;

text-decoration:none;

box-shadow:

0 10px 35px rgba(37,211,102,.45);

z-index:999;

animation:pulse 2s infinite;

transition:.3s;

}

.floating-whatsapp:hover{

transform:scale(1.12);

}

@keyframes pulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.6);

}

70%{

box-shadow:0 0 0 18px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

/* ===========================================
   STEAM EFFECT
=========================================== */

.mandi-animation::before,
.mandi-animation::after{

content:"";

position:absolute;

width:80px;

height:80px;

border-radius:50%;

background:rgba(255,255,255,.08);

filter:blur(25px);

animation:none;

left:45%;

top:15%;

}

.mandi-animation::after{

animation-delay:3s;

left:58%;

}

@keyframes steam{

0%{

opacity:0;

transform:translateY(30px) scale(.6);

}

40%{

opacity:.4;

}

100%{

opacity:0;

transform:translateY(-100px) scale(1.6);

}

}

/* ===========================================
   CARD HOVER
=========================================== */

.maintenance-card{

transition:.4s;

}

.maintenance-card:hover{

transform:translateY(-8px);

box-shadow:

0 30px 80px rgba(0,0,0,.55);

}
/* ===========================================
   RESPONSIVE - LARGE DESKTOP
=========================================== */

@media (min-width:1400px){

.maintenance-card{
    max-width:760px;
    padding:60px;
}

.logo img{
    width:170px;
    height:170px;
}

h1{
    font-size:48px;
}

p{
    font-size:20px;
}

}


/* ===========================================
   LAPTOP
=========================================== */

@media (max-width: 768px) {
    .mandi-animation,
    .floating-logo {
        animation: none;
    }
}

/* ===========================================
   TABLET
=========================================== */

@media (max-width:992px){

body{

padding:30px 20px;

}

.maintenance-card{

padding:40px 30px;

}

.logo img{

width:130px;
height:130px;

}

h1{

font-size:34px;

}

p{

font-size:16px;

}

.btn{

min-width:160px;

}

}


/* ===========================================
   MOBILE
=========================================== */

@media (max-width:768px){

    body{
        padding:20px;
    }

    .maintenance-card{
        padding:40px 32px;
        border-radius:34px;
    }

    .logo img{
        width:100px;
        aspect-ratio:1;
        object-fit:contain;
    }

    .badge{
        font-size:13px;
        padding:8px 18px;
    }

    h1{
        font-size:28px;
        line-height:1.4;
    }

    p{
        font-size:15px;
        line-height:1.7;
    }

    .buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
        min-width:100%;
    }

    .social{
        gap:14px;
    }

    .social a{
        width:46px;
        height:46px;
        font-size:20px;
        
    }

    .floating-whatsapp{
        width:58px;
        height:58px;
        font-size:28px;
    }

}


/* ===========================================
   SMALL MOBILE
=========================================== */

@media (max-width:480px){

body{

padding:15px;

}

.maintenance-card{

padding:25px 18px;

}

.logo img{
    width:100px;
    aspect-ratio:1;
    object-fit:contain;
}

.badge{

font-size:12px;

}

h1{

font-size:24px;

}

p{

font-size:14px;

}

.loader span{

width:10px;
height:10px;

}

footer{

font-size:10px;

}

.mandi-animation{

display:none;

}

}


/* ===========================================
   LANDSCAPE PHONE
=========================================== */

@media (max-height:600px){

body{

padding:20px 15px;

}

.maintenance-card{

margin:20px;

}

.logo img{

width:90px;
height:90px;

}

.mandi-animation{

display:none;

}

}

/* ===========================================
   SCROLLBAR
=========================================== */

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-track{

background:#01161d;

}

::-webkit-scrollbar-thumb{

background:var(--dark grey);
border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--dark black);

}


/* ===========================================
   TEXT SELECTION
=========================================== */

::selection{
    background: var(--accent);
    color: var(--bg-dark);
}

/* ===========================================
   ICON ANIMATION
=========================================== */

.btn i{
    transition: transform .3s ease;
}

.btn:hover i{
    transform: rotate(-12deg) scale(1.15);
}

/* ===========================================
   LOGO HOVER
=========================================== */

.logo img{

transition:1s;

}

.logo img:hover{

transform:scale(1.08) rotate(-4deg);

}


/* ===========================================
   CARD FADE-IN
=========================================== */

.maintenance-card{

animation:fadeUp 1.2s ease;

}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(60px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/* Ripple Effect */

.btn{
    position:relative;
    overflow:hidden;
}

.ripple{
    position:absolute;
    width:12px;
    height:12px;
    background:rgba(255,255,255,.5);
    border-radius:50%;
    transform:translate(-50%,-50%);
    animation:ripple .7s linear;
}

@keyframes ripple{
    from{
        width:10px;
        height:10px;
        opacity:1;
    }
    to{
        width:320px;
        height:320px;
        opacity:0;
    }
}

/* Logo Pulse */

.pulse-logo{
    animation:logoPulse .1 s;
}

@keyframes logoPulse{
    50%{
        transform:scale(1.08);
    }
}

/* Sparkles */

.sparkle{
    position:fixed;
    width:6px;
    height:6px;
    background:#FFD700;
    border-radius:50%;
    box-shadow:0 0 12px #FFD700;
    animation:sparkleMove 6s linear forwards;
    pointer-events:none;
    z-index:0;
}

@keyframes sparkleMove{
    from{
        transform:translateY(0);
        opacity:1;
    }
    to{
        transform:translateY(-120vh);
        opacity:0;
    }
}
