/* ============================================
   BIOSPA - Coming Soon Page
   Modern Enterprise Design
   ============================================ */

/* CSS Variables - Brand Colors */
:root {
    --color-navy: #00528D;
    --color-navy-dark: #003d6a;
    --color-navy-light: #0068b3;
    --color-orange: #F29103;
    --color-orange-light: #ffab33;
    --color-white: #ffffff;
    --color-gray-light: #f8f9fa;
    --color-text: #2c3e50;
    --color-text-muted: #6c757d;

    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

    --shadow-soft: 0 4px 20px rgba(0, 82, 141, 0.15);
    --shadow-glow: 0 0 40px rgba(242, 145, 3, 0.3);

    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    background-color: var(--color-navy);
}

/* Animated Gradient Background */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg,
            #ffffff 0%,
            #f8fafc 35%,
            #e8f4fc 60%,
            #c5dff0 85%,
            var(--color-navy-light) 100%);
    background-size: 300% 300%;
    animation: gradientFlow 8s ease infinite;
    z-index: -2;
}

.background-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 90%, rgba(0, 82, 141, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(242, 145, 3, 0.06) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

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

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

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Main Container */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    width: 100%;
    z-index: 1;
}

/* Logo */
.logo-wrapper {
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s ease-out;
}

.logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-soft));
    transition: var(--transition-smooth);
    animation: logoGlow 4s ease-in-out infinite alternate;
}

.logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(var(--shadow-glow));
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 4px 20px rgba(0, 82, 141, 0.2));
    }

    100% {
        filter: drop-shadow(0 4px 30px rgba(242, 145, 3, 0.25));
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

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

/* Content */
.content {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Services */
.services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.service {
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--color-orange);
    font-weight: 600;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.service:hover {
    color: var(--color-orange-light);
    text-shadow: 0 0 10px rgba(242, 145, 3, 0.5);
}

.separator {
    color: var(--color-navy);
    opacity: 0.3;
    font-weight: 300;
}

/* Divider */
.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
    margin: 1.5rem 0 2rem;
    animation: fadeIn 1s ease-out 0.7s both;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Contact */
.contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1.5rem 0.75rem 2.75rem;
    min-width: 280px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 82, 141, 0.15);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 141, 0.25);
}

.contact-item .icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    color: var(--color-orange);
    transition: var(--transition-smooth);
}

.contact-item:hover .icon {
    color: var(--color-orange-light);
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    padding: 2rem 1.5rem;
    margin-top: auto;
    text-align: center;
    background: rgba(0, 82, 141, 0.03);
    border-top: 1px solid rgba(0, 82, 141, 0.08);
    animation: fadeIn 1s ease-out 1.1s both;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-company {
    font-size: 0.95rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.footer-info {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-separator {
    margin: 0 0.5rem;
    opacity: 0.4;
}

.footer-copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 82, 141, 0.08);
}

.footer-copyright p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.3px;
    margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        max-width: 260px;
    }

    .logo-wrapper {
        margin-bottom: 2rem;
    }

    .content {
        margin-bottom: 1.5rem;
    }

    .services {
        gap: 0.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 1rem;
    }

    .logo {
        max-width: 220px;
    }

    .logo-wrapper {
        margin-bottom: 1.5rem;
    }

    .subtitle br {
        display: none;
    }

    .services {
        flex-direction: row;
        gap: 0.4rem;
    }

    .separator {
        display: inline;
    }

    .contact {
        width: 100%;
        padding: 0 0.5rem;
    }

    .contact-item {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
    }

    .footer {
        padding: 1rem;
        position: relative;
        margin-top: 2rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .logo {
        max-width: 180px;
    }

    .service {
        font-size: 0.8rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .background-gradient {
        animation: none;
        background-position: 50% 50%;
    }

    .background-gradient::before {
        animation: none;
        opacity: 0.75;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --color-navy: #001f3f;
        --color-orange: #ff8c00;
    }

    .subtitle {
        color: var(--color-white);
    }

    .footer p {
        color: rgba(255, 255, 255, 0.7);
    }
}