/*
Theme Name:     Theratio Child
Theme URI:      http://wpdemo.archiwp.com/theratio/
Description:    Make your modifications to [Parent Theme] in this child theme.
Author:         Oceanthemes
Author URI:     http://oceanthemes.net/
Version:        1.0
Template:       theratio
*/

@import url("../theratio/style.css");
 
/* =Theme customization starts here
------------------------------------------------------- */

li{
    list-style: none;
}

.entry-summary li {
    list-style: initial;
}
.elementor-widget .elementor-icon-list-icon svg {
    height: var(--e-icon-list-icon-size, 1em);
    width: var(--e-icon-list-icon-size, 1em);
}

 .splash-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0a0a0a;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            overflow: hidden;
        }

        .splash-screen.hidden {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1);
        }

        /* Mimari Çizgiler */
        .arch-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .line {
            position: absolute;
            background: #333;
            opacity: 0;
        }

        .line-1 {
            top: 20%;
            left: 0;
            width: 0;
            height: 2px;
            animation: growRight 1.2s ease forwards 0.3s;
        }

        .line-2 {
            top: 0;
            right: 15%;
            width: 2px;
            height: 0;
            animation: growDown 1.2s ease forwards 0.5s;
        }

        .line-3 {
            bottom: 30%;
            right: 0;
            width: 0;
            height: 2px;
            animation: growLeft 1.2s ease forwards 0.7s;
        }

        .line-4 {
            bottom: 0;
            left: 25%;
            width: 2px;
            height: 0;
            animation: growUp 1.2s ease forwards 0.9s;
        }

        /* Logo Container */
        .logo-container {
            text-align: center;
            z-index: 10;
            position: relative;
            padding: 40px;
        }

        .logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 40px;
            position: relative;
            opacity: 0;
            animation: fadeInScale 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.8s;
        }

        .logo-square {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 2px solid #fff;
            transform: rotate(45deg);
        }

        .logo-square::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70%;
            height: 70%;
            border: 1px solid #fff;
        }

        .logo-inner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(-45deg);
            font-size: 24px;
            color: #fff;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .company-name {
            font-size: 4rem;
            font-weight: 300;
            color: #fff;
            letter-spacing: 8px;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInUp 1s ease forwards 1.2s;
            position: relative;
            overflow: hidden;
        }

        .company-name::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: #fff;
            transform: scaleX(0);
            transform-origin: left;
            animation: lineReveal 1.5s ease forwards 2s;
        }

        .company-tagline {
            font-size: 1.1rem;
            color: #aaa;
            font-weight: 300;
            letter-spacing: 4px;
            opacity: 0;
            animation: fadeIn 1s ease forwards 1.5s;
        }

        /* Yükleme Çubuğu */
        .loading-container {
            width: 300px;
            margin-top: 60px;
            z-index: 10;
            opacity: 0;
            animation: fadeIn 1s ease forwards 1.8s;
        }

        .loading-bar {
            width: 100%;
            height: 1px;
            background-color: #333;
            overflow: hidden;
        }

        .loading-progress {
            height: 100%;
            width: 0%;
            background-color: #fff;
            transition: width 0.4s ease;
        }

        .loading-text {
            color: #666;
            text-align: center;
            margin-top: 15px;
            font-size: 0.9rem;
            letter-spacing: 2px;
            font-weight: 300;
        }

        /* Mimari Noktalar */
        .arch-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #fff;
            border-radius: 50%;
            opacity: 0;
            animation: dotFadeIn 0.5s ease forwards;
        }

        /* Animasyonlar */
        @keyframes fadeInScale {
            0% {
                opacity: 0;
                transform: scale(0.8);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

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

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

        @keyframes growRight {
            0% {
                width: 0;
                opacity: 1;
            }
            100% {
                width: 100%;
                opacity: 1;
            }
        }

        @keyframes growLeft {
            0% {
                width: 0;
                opacity: 1;
            }
            100% {
                width: 100%;
                opacity: 1;
            }
        }

        @keyframes growDown {
            0% {
                height: 0;
                opacity: 1;
            }
            100% {
                height: 40%;
                opacity: 1;
            }
        }

        @keyframes growUp {
            0% {
                height: 0;
                opacity: 1;
            }
            100% {
                height: 40%;
                opacity: 1;
            }
        }

        @keyframes lineReveal {
            0% {
                transform: scaleX(0);
            }
            100% {
                transform: scaleX(1);
            }
        }

        @keyframes dotFadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 0.6;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .company-name {
                font-size: 2.5rem;
                letter-spacing: 4px;
            }
            
            .logo {
                width: 100px;
                height: 100px;
            }
            
            .loading-container {
                width: 250px;
            }
        }