@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root { 
    --bg-body: #F4F7F6; 
    --primary-green: #1B4D3E; 
    --accent-gold: #C5A059; 
    --text-dark: #2C3E50; 
    --text-muted: #7F8C8D; 
    --text-white: #FFFFFF; 
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.05);
    --radius-md: 12px;
}

* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    text-decoration: none; list-style: none; 
    -webkit-tap-highlight-color: transparent; 
}

body { 
    background-color: var(--bg-body); 
    color: var(--text-dark); 
    font-family: 'Inter', sans-serif; 
    font-size: 16px; 
    line-height: 1.5; 
    padding-bottom: 100px; 
    -webkit-font-smoothing: antialiased; 
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--primary-green); font-weight: 700; }
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.form-control { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; background: #fff; transition: border-color 0.2s; }
.form-control:focus { border-color: var(--primary-green); outline: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: transform 0.1s, opacity 0.2s; border: none; font-size: 0.95rem; gap: 8px; user-select: none; }
.btn:active { transform: scale(0.98); }
.btn-primary { background-color: var(--primary-green); color: white; }
.btn-danger { background-color: #c0392b; color: white; }
.btn-secondary { background-color: #ecf0f1; color: #333; }
.btn-success { background-color: #27ae60; color: white; }
.btn-warning { background-color: #f39c12; color: white; }

/* --- TOAST BİLDİRİMLERİ (YENİ) --- */
#toast-container {
    position: fixed; top: 20px; right: 20px; z-index: 9999;
    display: flex; flex-direction: column; gap: 10px;
}

.toast-msg {
    min-width: 300px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex; align-items: center; gap: 12px;
    animation: slideInRight 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    border-left: 6px solid #ccc;
    font-weight: 500; color: #333;
}

.toast-msg.success { border-left-color: #27ae60; }
.toast-msg.success i { color: #27ae60; }

.toast-msg.error { border-left-color: #c0392b; }
.toast-msg.error i { color: #c0392b; }

.toast-msg.warning { border-left-color: #f39c12; }
.toast-msg.warning i { color: #f39c12; }

.toast-msg.info { border-left-color: #3498db; }
.toast-msg.info i { color: #3498db; }

.toast-msg i { font-size: 1.2rem; }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOut {
    to { opacity: 0; transform: translateY(-10px); }
}