/* Gündüz modu varsayılan stiller */
:root {
    --day-bg: #f5f8ff;
    --day-text: #2c3e50;
    --day-accent: #4a90e2;
    --day-light: #e3f2fd;
    --day-hover: #5c9ce6;
    
    --night-dark: #0a192f;
    --night-accent-dark: #112240;
    --night-text: #8892b0;
    --night-accent: #1e3c72;
    --night-neon: #4a90e2;

    /* Gündüz modu renkleri */
    --day-gradient: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    --day-text-gradient: linear-gradient(45deg, #2b5876 0%, #4e4376 100%);
    --day-accent-gradient: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    --day-hover-gradient: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);
    
    /* Gece modu renkleri */
    --night-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    --night-text-gradient: linear-gradient(to right, #8e9eab 0%, #eef2f3 100%);
    --night-accent-gradient: linear-gradient(to right, #396afc 0%, #2948ff 100%);
    --night-neon-gradient: linear-gradient(120deg, #4a90e2 0%, #67b26f 100%);
}

body {
    transition: all 0.3s ease;
    cursor: none !important;
    transform-origin: center center;
    min-height: 100vh;
    overflow-x: hidden;
}

body.day-mode {
    background-color: var(--day-bg);
    color: var(--day-text);
}

body.night-mode {
    background-color: var(--night-dark);
    color: var(--night-text);
}

/* Gece modu stilleri */
.night-mode {
    background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
}

.night-mode .header {
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.95) 0%, rgba(17, 34, 64, 0.95) 100%);
    box-shadow: 0 2px 15px rgba(74, 144, 226, 0.2);
}

.night-mode .main-menu ul li a {
    color: var(--night-text);
}

.night-mode .pattern_2 {
    background: none !important;
}

.night-mode .footer_wp {
    background-color: var(--night-accent-dark);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

.main-menu ul li a {
    color: #ff9f43 !important;
    transition: color 0.3s ease;
}

.main-menu ul li a:hover {
    color: #ff7f00 !important;
}

.main-menu ul li.active a {
    color: #ffa502 !important;
}

.main-menu.show ul li a {
    color: #ff9f43 !important;
}

.main-menu ul ul li a {
    color: #ff9f43 !important;
}

.main-menu.sticky .main-menu ul li a {
    color: #ff9f43 !important;
}

.pattern_2 {
    background: none !important;
}

.footer_wp {
    background-color: var(--accent-dark);
    border: 1px solid rgba(246, 36, 13, 0.2);
}

.call_section {
    background-blend-mode: overlay;
    background-color: rgba(26, 26, 26, 0.8);
}

#banners_grid li .short_info {
    background: rgba(0, 0, 0, 0.8);
}

.box_1 {
    background-color: var(--accent-dark);
    border: 1px solid var(--accent-color);
}

.btn_1 {
    background: var(--day-accent-gradient);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    transition: all 0.3s ease;
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 5px var(--neon-glow),
            0 0 10px var(--neon-glow),
            0 0 20px var(--neon-glow);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

.main_title h2 {
    color: var(--text-light);
    animation: neonFlicker 3s infinite;
}

.owl-carousel .owl-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

/* Sosyal medya ikonları için yeni stil */
#social_media {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

#social_media a {
    position: relative;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

#social_media a::before {
    content: attr(data-title);
    position: absolute;
    right: 50px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#social_media a:hover {
    transform: translateX(-5px);
    background: var(--night-neon);
}

#social_media a:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Gece modu stilleri */
.night-mode #social_media a {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.night-mode #social_media a:hover {
    background: var(--night-neon);
    box-shadow: 0 0 15px var(--night-neon);
}

/* Gündüz modu stilleri */
.day-mode #social_media a {
    background: rgba(0, 0, 0, 0.1);
    color: var(--day-text);
}

.day-mode #social_media a:hover {
    background: var(--day-accent);
    color: white;
}

footer {
    background-color: var(--night-accent-dark) !important;
    border-top: 1px solid var(--night-neon);
}

footer .footer_wp {
    background-color: var(--night-dark);
    border: 1px solid rgba(74, 144, 226, 0.2);
}

footer p, 
footer h3, 
footer ul li {
    color: var(--night-text);
}

/* Sosyal medya ikonları için neon efekti */
.follow_us ul li a {
    color: var(--night-accent);
    text-shadow: 0 0 10px var(--night-neon);
    transition: all 0.3s ease;
}

.follow_us ul li a:hover {
    color: var(--night-neon);
    transform: scale(1.1);
    text-shadow: 
        0 0 5px var(--night-neon),
        0 0 10px var(--night-neon),
        0 0 20px var(--night-neon);
}

/* Footer içindeki sosyal medya ikonları için özel stil */
#social_media a {
    color: var(--night-neon);
    text-shadow: 0 0 10px var(--night-accent);
    transition: all 0.3s ease;
}

#social_media a:hover {
    color: var(--night-neon);
    transform: scale(1.1);
    text-shadow: 
        0 0 5px var(--night-accent),
        0 0 10px var(--night-neon),
        0 0 20px var(--night-accent-dark);
}

/* Tema göstergesi */
#theme-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

.night-mode #theme-indicator {
    color: var(--night-text);
    border: 1px solid var(--night-accent);
    background-color: rgba(26, 26, 26, 0.9);
}

.day-mode #theme-indicator {
    color: var(--day-text);
    border: 1px solid var(--day-accent);
    background-color: rgba(255, 255, 255, 0.9);
}

/* Geçiş animasyonları */
.night-mode, .day-mode {
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Mod göstergesi için yeni stiller */
.time-info {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    border-radius: 15px;
    font-size: 14px;
    z-index: 9999;
    transition: all 0.3s ease;
    min-width: 200px;
    backdrop-filter: blur(8px);
}

.time-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    margin-bottom: 10px;
}

.business-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.business-status i {
    font-size: 18px;
}

.mode-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 10px;
    transition: all 0.5s ease;
}

/* Gündüz modu göstergesi */
.day-mode .time-info {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.day-mode .mode-indicator {
    background: var(--day-accent-gradient);
    box-shadow: 
        0 4px 15px rgba(79, 172, 254, 0.2),
        inset 0 0 10px rgba(255, 255, 255, 0.5);
}

.day-mode .mode-indicator i {
    color: #ff8c00;
    font-size: 20px;
    animation: sunRotate 10s linear infinite;
}

@keyframes sunRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Gece modu göstergesi */
.night-mode .time-info {
    background: rgba(26, 26, 26, 0.9);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.night-mode .mode-indicator {
    background: var(--night-gradient);
    box-shadow: 
        0 4px 15px rgba(30, 60, 114, 0.3),
        inset 0 0 10px rgba(74, 144, 226, 0.2);
}

.night-mode .mode-indicator i {
    color: #fff;
    font-size: 20px;
    animation: moonGlow 2s ease-in-out infinite;
}

@keyframes moonGlow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

/* Saat göstergesi */
.current-time {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.day-mode .current-time {
    color: #333;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.night-mode .current-time {
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

/* Mod bilgisi animasyonu */
.mode-info {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Yazı alanını düzenle */
.home_intro {
    background: transparent;
}

/* Gece/gündüz moduna göre metin renkleri */
.night-mode .home_intro .main_title h2 {
    color: var(--night-text);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.day-mode .home_intro .main_title h2 {
    color: var(--day-text);
}

/* Yazı stilleri - eski haline dönüş */
.home_intro p {
    opacity: 1;
    transform: none;
    animation: none;
    color: var(--day-text);
}

.home_intro h2 {
    opacity: 1;
    transform: none;
    animation: none;
}

/* Hover efektlerini kaldır */
.home_intro p:hover {
    transform: none;
    transition: none;
}

/* Vurgu efektlerini kaldır */
.highlight {
    position: static;
    display: inline;
    color: inherit;
    animation: none;
}

/* Gece/gündüz moduna göre basit renk değişimi */
.night-mode .home_intro p {
    color: var(--night-text);
}

.day-mode .home_intro p {
    color: var(--day-text);
}

/* Yağmur efektlerini daha belirgin yap */
.rain-drop {
    position: fixed;
    pointer-events: none;
    animation: rain-fall linear infinite;
    opacity: 0;
    will-change: transform, opacity;
    transform: translateZ(0);
    filter: drop-shadow(0 0 5px currentColor);
    z-index: 1001;
}

/* Gece modu için ay ikonu stili */
.night-mode .rain-drop {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 10px rgba(74, 144, 226, 0.6),
        0 0 20px rgba(41, 72, 255, 0.4),
        0 0 30px rgba(57, 106, 252, 0.3);
    filter: drop-shadow(0 0 8px rgba(74, 144, 226, 0.5));
}

/* Gündüz modu için güneş ikonu stili */
.day-mode .rain-drop {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 
        0 0 10px rgba(79, 172, 254, 0.6),
        0 0 20px rgba(0, 242, 254, 0.4),
        0 0 30px rgba(161, 196, 253, 0.3);
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.5));
}

/* Ana başlık animasyonları */
.main_title h2 {
    animation: slideInDown 1s ease-out;
}

.home_intro p {
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

/* Her paragraf için kademeli animasyon */
.home_intro p:nth-child(1) { animation-delay: 0.2s; }
.home_intro p:nth-child(2) { animation-delay: 0.4s; }
.home_intro p:nth-child(3) { animation-delay: 0.6s; }
.home_intro p:nth-child(4) { animation-delay: 0.8s; }

/* Menü öğeleri animasyonu */
.main-menu ul li {
    animation: fadeInRight 0.5s ease-out;
    animation-fill-mode: both;
}

.main-menu ul li:nth-child(1) { animation-delay: 0.1s; }
.main-menu ul li:nth-child(2) { animation-delay: 0.2s; }
.main-menu ul li:nth-child(3) { animation-delay: 0.3s; }
.main-menu ul li:nth-child(4) { animation-delay: 0.4s; }

/* Logo animasyonu */
.logo_normal {
    animation: fadeIn 1s ease-out;
}

/* Sosyal medya ikonları animasyonu */
#social_media a {
    animation: fadeInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

#social_media a:nth-child(1) { animation-delay: 0.2s; }
#social_media a:nth-child(2) { animation-delay: 0.4s; }
#social_media a:nth-child(3) { animation-delay: 0.6s; }

/* Animasyon keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buton hover animasyonları */
.btn_1 {
    transition: all 0.3s ease;
}

.btn_1:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Resim ve video animasyonları */
.grid figure {
    animation: scaleIn 0.8s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Sayfa yüklenme animasyonu */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--night-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: #fff;
}

.loader-content i {
    font-size: 50px;
    color: var(--night-neon);
    margin-bottom: 20px;
    animation: loaderSpin 2s linear infinite;
}

.loader-content p {
    font-size: 18px;
    margin-top: 10px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes loaderPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* İmleç stilleri - Yeni tasarım */
body {
    cursor: none !important;
}

/* Tıklanabilir öğeler için özel imleç */
a, button, [data-zoom], .btn_1, input, select, .owl-carousel {
    cursor: none !important;
}

/* Ana imleç */
.custom-cursor {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: exclusion;
}

/* Takipçi imleç */
.custom-cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: 
        transform 0.6s ease,
        width 0.3s ease,
        height 0.3s ease,
        border 0.3s ease;
    transform: translate(-50%, -50%);
}

/* Hover durumları */
.cursor-hover {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Link hover durumunda */
a:hover ~ .custom-cursor-follower,
button:hover ~ .custom-cursor-follower,
[data-zoom]:hover ~ .custom-cursor-follower {
    width: 40px;
    height: 40px;
    border-color: var(--night-neon);
    border-width: 2px;
}

/* Gece/Gündüz moduna göre imleç renkleri */
.night-mode .custom-cursor-follower {
    border-color: rgba(74, 144, 226, 0.6);
}

.day-mode .custom-cursor-follower {
    border-color: rgba(44, 62, 80, 0.6);
}

/* Tıklama durumu */
.custom-cursor.clicking {
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--night-neon);
}

.custom-cursor-follower.clicking {
    transform: translate(-50%, -50%) scale(0.8);
}

/* İkon animasyonları */
.business-status i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Durum geçiş animasyonu */
.business-status {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* İmleç idle durumu */
.custom-cursor.cursor-idle {
    width: 12px;
    height: 12px;
    background: var(--night-neon);
    animation: cursorPulse 1.5s ease-in-out infinite;
}

.custom-cursor-follower.cursor-idle {
    width: 50px;
    height: 50px;
    border-width: 2px;
    border-color: var(--night-neon);
    opacity: 0.3;
    animation: followerPulse 1.5s ease-in-out infinite;
}

@keyframes cursorPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }
}

@keyframes followerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
}

/* Gece/gündüz moduna göre idle renkleri */
.night-mode .custom-cursor.cursor-idle {
    background: var(--night-neon);
    box-shadow: 0 0 15px var(--night-neon);
}

.day-mode .custom-cursor.cursor-idle {
    background: var(--day-accent);
    box-shadow: 0 0 15px var(--day-accent);
}

/* Zoom efekti için stiller */
body {
    transform-origin: center center;
    min-height: 100vh;
    overflow-x: hidden;
}

#zoom-indicator {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 9999;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.night-mode #zoom-indicator {
    background: rgba(74, 144, 226, 0.8);
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.day-mode #zoom-indicator {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Zoom sırasında smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Zoom yapılabilir elementler için stil */
[data-zoomable] {
    transition: transform 0.3s ease;
}

[data-zoomable]:hover {
    transform: scale(1.05);
}

#background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
    opacity: 0.8;
}

/* Gece modunda video opacity'si */
.night-mode #background-video {
    opacity: 0.6;
    filter: brightness(0.7);
}

/* Gündüz modunda video opacity'si */
.day-mode #background-video {
    opacity: 0.8;
    filter: brightness(1);
}

figure video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.night-mode figure video {
    opacity: 0.8;
    filter: brightness(0.9);
}

.day-mode figure video {
    opacity: 1;
    filter: brightness(1);
}

.video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    max-width: 300px;
}

.video-container video {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px; /* Metinle hizalamak için üstten boşluk */
}

.night-mode .video-container video {
    opacity: 0.8;
    filter: brightness(0.9);
}

.day-mode .video-container video {
    opacity: 1;
    filter: brightness(1);
}

/* Hero section için responsive düzenlemeler */
.hero_single {
    background-size: cover !important;
    background-position: center center !important;
    min-height: 450px;
    width: 100%;
}

/* Mobil cihazlar için özel ayarlar */
@media (max-width: 767px) {
    .hero_single {
        min-height: 300px; /* Mobilde daha küçük yükseklik */
        background-image: url('../img/gece-doneri.jpg') !important; /* Mobilde resmi zorla göster */
        background-attachment: scroll !important; /* Mobilde daha iyi performans */
    }

    .hero_single .opacity-mask {
        background: rgba(0, 0, 0, 0.5); /* Mobilde daha koyu overlay */
    }

    /* Mobilde metin okunabilirliği için */
    .hero_single h1 {
        font-size: 28px;
        margin-top: 60px;
    }

    .hero_single p {
        font-size: 16px;
    }
}

/* Tablet cihazlar için */
@media (min-width: 768px) and (max-width: 991px) {
    .hero_single {
        min-height: 380px;
    }
}

/* Slider için responsive düzenlemeler */
.owl-carousel .owl-slide {
    height: auto;
    background-size: cover;
    background-position: center;
}

/* Mobil cihazlar için slider ayarları */
@media (max-width: 767px) {
    .owl-carousel .owl-slide {
        height: auto;
    }

    .owl-carousel .owl-slide div {
        background-size: cover;
        background-position: center;
    }
}

/* Tablet cihazlar için slider ayarları */
@media (min-width: 768px) and (max-width: 991px) {
    .owl-carousel .owl-slide {
        height: auto;
    }
} 