:root {
    --background-color: #fefffe;
    --text-color: #132738;
    --accent-color: #132738;
    --transition-speed: 0.3s;
    --animation-duration: 1.2s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Background gradient effect */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(19, 39, 56, 0.03) 0%, rgba(19, 39, 56, 0) 70%);
    z-index: -1;
}

/* Grid pattern removed as requested */

/* Globe Icon removed as requested */

.language-selector {
    position: absolute;
    top: 20px;
    right: 30px;
    display: flex;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1.5s forwards;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--text-color);
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-speed);
    border-radius: 4px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(19, 39, 56, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.lang-btn:hover, .lang-btn.active {
    background-color: var(--accent-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(19, 39, 56, 0.1);
}

.lang-btn:hover::before {
    left: 0;
}

.container {
    max-width: 1200px;
    width: 90%;
    padding: 50px 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.logo {
    position: relative;
}

/* Line under logo removed as requested */

/* Logo underline removed as requested */

.logo h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.logo span {
    font-weight: 400;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

/* Line to the left of logo removed as requested */

.message {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Europe Map Animation */
.europe-map-animation {
    position: relative;
    height: 180px;
    margin-top: 20px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1.5s ease-out 1.8s forwards;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.europe-map-svg {
    width: 250px !important;
    max-width: 250px !important;
    max-height: 160px !important;
    display: block;
}

.floating-svg {
    animation: mapFloat 3s ease-in-out infinite;
    transition: all 0.5s ease-in-out;
    /* Glow efektini SVG'den kaldırıldı, path'lere uygulanacak */
}

/* Glow efekti sadece path'lere uygulanacak */
.s0 {
    filter: drop-shadow(0 5px 10px rgba(19, 39, 56, 0.15));
}

.floating-svg-hover {
    transform: translateY(-5px);
    /* Hover durumunda filter kaldırıldı, sadece path'lere uygulanacak */
}

.europe-map-svg:hover .s0 {
    filter: drop-shadow(0 8px 12px rgba(19, 39, 56, 0.2));
    transition: filter 0.5s ease-in-out;
}

.coming-soon {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.description {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.8s forwards;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.social-icon {
    color: var(--text-color);
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 1;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes lineExpand {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes borderFadeIn {
    from {
        height: 0;
    }
    to {
        height: 100%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 1500;
    }
    60% {
        stroke-dashoffset: 0;
        filter: drop-shadow(0 0 5px rgba(227, 10, 23, 0.7));
    }
    100% {
        stroke-dashoffset: 0;
        filter: drop-shadow(0 0 3px rgba(227, 10, 23, 0.4));
    }
}

@keyframes pointAppear {
    0% {
        opacity: 0;
        transform: scale(0);
        filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }
    70% {
        opacity: 1;
        transform: scale(1.3);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    }
    85% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
    }
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
        stroke-width: 1.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
        stroke-width: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
        stroke-width: 1.5;
    }
}

@keyframes mapFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Overlay Animation for Page Load with centered logo */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #132738; /* Blue background */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(0);
    animation: slideUp 1.2s cubic-bezier(0.77, 0, 0.175, 1) 1.5s forwards;
}

.overlay-logo {
    width: 150px;
    height: auto;
    opacity: 1;
    transform: translateY(0);
    animation: logoMove 1.2s cubic-bezier(0.77, 0, 0.175, 1) 1.5s forwards;
    z-index: 1001;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}

@keyframes logoMove {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-300px);
        opacity: 0.7;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
    }

    .coming-soon {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .language-selector {
        top: 10px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 2rem;
    }

    .coming-soon {
        font-size: 1.5rem;
    }
}
