/* DENTEROL - Çok Yakında Sayfası CSS */

/* Değişkenler */
:root {
    --primary-blue: #00838F;
    --light-blue: #E3F2FD;
    --accent-teal: #4DD0E1;
    --clean-white: #FFFFFF;
    --soft-gray: #F5F5F5;
    --text-dark: #2C3E50;
    --success-green: #4CAF50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--clean-white) 0%, var(--light-blue) 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2rem 0;
}

/* Language Switcher */
.language-switcher {
    position: absolute;
    top: 45px;
    right: 325px;
    display: flex;
    background: var(--clean-white);
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0, 131, 143, 0.2);
    z-index: 1000;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 131, 143, 0.1);
}

.lang-option {
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    position: relative;
}

.lang-option.active {
    background: var(--primary-blue);
    color: white;
}

.lang-option:hover:not(.active) {
    background: var(--light-blue);
    color: var(--primary-blue);
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clean-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 1s ease-in-out 2s forwards;
}

.loading-tooth {
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
}

.loading-tooth-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Particle Effects */
.particle {
    position: absolute;
    pointer-events: none;
    opacity: 0.3;
    z-index: 1;
}

.particle-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: opacity(0.7);
}

.particle-1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.particle-2 {
    top: 20%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.particle-3 {
    bottom: 20%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

.particle-4 {
    bottom: 30%;
    right: 10%;
    animation: float 9s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Main Container */
.main-container {
    text-align: center;
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 131, 143, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: slideInUp 1s ease-out 2.5s forwards;
    z-index: 2;
    position: relative;
}

/* Logo Section */
.logo-section {
    margin-bottom: 1rem;
}

.main-logo {
    width: 300px;
    height: auto;
    margin-bottom: 1rem;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
}

.logo-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Rotating Tooth Animation - Moved higher */
.tooth-animation {
    margin: 1.5rem 0;
    /* Reduced from 3rem 0 */
}

.tooth-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    /* Reduced from 1.5rem */
    background: var(--clean-white);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 131, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-tooth-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: rotateTeeth 4s linear infinite;
    filter: drop-shadow(0 0 15px rgba(0, 131, 143, 0.2));
}

.tooth-text {
    color: var(--text-dark);
}

.tooth-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.tooth-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Social Media */
.social-section {
    margin: 2rem 0;
    /* Reduced from 3rem 0 */
}

.social-section h4 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.social-btn:hover::before {
    transform: translateX(100%);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.instagram {
    background: linear-gradient(45deg, #E4405F, #C13584);
}

.facebook {
    background: linear-gradient(45deg, #3B5998, #8B9DC3);
}

.maps {
    background: linear-gradient(45deg, #34A853, #4285F4);
}

/* Contact Info */
.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-blue);
    border-radius: 15px;
}

.contact-info p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.contact-info a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateTeeth {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        max-width: 700px;
        padding: 2rem;
    }

    .main-logo {
        width: 280px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 1rem 0;
    }

    .language-switcher {
        top: 250px;
        right: 20px;
        box-shadow: 0 5px 20px rgba(0, 131, 143, 0.25);
    }

    .lang-option {
        padding: 10px 16px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .main-container {
        width: 95%;
        padding: 1.5rem;
        max-width: none;
    }

    .main-logo {
        width: 250px;
    }

    .tooth-icon {
        width: 100px;
        height: 100px;
    }

    .rotating-tooth-img {
        width: 60px;
        height: 60px;
    }

    .tooth-text h3 {
        font-size: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 0.5rem 0;
    }

    .language-switcher {
        top: 25px;
        right: 15px;
        box-shadow: 0 4px 15px rgba(0, 131, 143, 0.3);
    }

    .lang-option {
        padding: 8px 12px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .main-container {
        width: 98%;
        padding: 1rem;
        margin: 0.5rem auto;
    }

    .main-logo {
        width: 200px;
    }

    .tooth-text h3 {
        font-size: 1.3rem;
    }

    .tooth-text p {
        font-size: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }
}

@media (min-width: 1400px) {
    .main-container {
        max-width: 900px;
        padding: 3rem;
    }

    .main-logo {
        width: 350px;
    }

    .tooth-icon {
        width: 140px;
        height: 140px;
    }

    .rotating-tooth-img {
        width: 100px;
        height: 100px;
    }

    .tooth-text h3 {
        font-size: 2rem;
    }

    .tooth-text p {
        font-size: 1.2rem;
    }
}