/*
Theme Name: Cocotoy Eğitim
Theme URI: https://cocotoyegitim.com
Author: Manus AI
Author URI: https://manus.im
Description: Cocotoy Eğitim için efektli ve sade bir ana sayfa özelliklerine sahip profesyonel WordPress teması. Tailwind CSS, Three.js ve GSAP entegrasyonu içerir.
Version: 2.0 Pro
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-background, custom-colors, custom-header, custom-menu, featured-images, full-width-template, one-column, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready
Text Domain: cocotoy-theme
*/

/* index.html'deki özel stiller buraya eklenecek */
:root {
    --primary: #FF6B35; /* Vibrant Orange */
    --secondary: #4ECDC4; /* Turquoise */
    --accent: #FFD93D; /* Sunny Yellow */
    --bg: #FFFFFF; /* White Background */
    --text: #2C3E50; /* Deep Slate */
    --card-bg: #FFFFFF;
    --footer-bg: #2C3E50;
    --footer-text: #ECEFF1;
}
body { 
    font-family: 'Inter', sans-serif; 
    background-color: var(--bg); 
    color: var(--text); 
    overflow-x: hidden; 
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* --- UI ELEMENTLERİ --- */
#webgl-canvas { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none; }
.content-layer { position: relative; z-index: 10; }

/* Geçiş Animasyonları */
.hidden-section { display: none; opacity: 0; transition: opacity 0.4s ease; }
.visible-section { display: block; opacity: 1; animation: fadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Ürün Kartı */
.product-card { 
    background: var(--card-bg); 
    border: 2px solid #F0F0F0; 
    border-radius: 20px; 
    transition: all 0.3s ease; 
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.product-card:hover { 
    border-color: var(--primary); 
    box-shadow: 0 16px 32px rgba(255, 107, 53, 0.15); 
    transform: translateY(-8px); 
}

/* Product Detail Modal */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

/* WhatsApp Float */
.whatsapp-float { 
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; 
    background: #25d366; color: #fff; border-radius: 50%; z-index: 100; 
    display: flex; align-items: center; justify-content: center; font-size: 32px; 
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.whatsapp-float:hover { transform: scale(1.1) rotate(15deg); }

.form-input { 
    width: 100%; padding: 14px; border: 2px solid #E8E8E8; border-radius: 12px; margin-bottom: 16px; 
    background: rgba(255,255,255,0.95); transition: 0.3s; font-family: 'Poppins', sans-serif;
}
.form-input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1); }

/* Footer */
footer { background-color: var(--footer-bg); color: var(--footer-text); }
footer a:hover { color: var(--primary); transition: 0.3s; }

/* Plugin: Snow Effect */
.snowflake { position: fixed; top: -10px; color: #cbd5e1; font-size: 1em; font-family: Arial; text-shadow: 0 0 1px #000; z-index: 9999; user-select: none; cursor: default; animation-name: snowflakes-fall, snowflakes-shake; animation-duration: 10s, 3s; animation-timing-function: linear, ease-in-out; animation-iteration-count: infinite, infinite; pointer-events: none; }
@keyframes snowflakes-fall { 0% { top: -10% } 100% { top: 100% } }
@keyframes snowflakes-shake { 0% { transform: translateX(0px) } 50% { transform: translateX(80px) } 100% { transform: translateX(0px) } }
