:root {
    --beige: #F9F6F0;       
    --sage: #A8C3B3;        
    --sage-dark: #8FAD9C;   
    --soft-gray: #F4F5F3;   
    --text-dark: #4A4A4A;   
    --white: #FFFFFF;       
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background-color: var(--beige);
    overflow-x: hidden; 
    overflow-y: auto;   
}

.fixed-header {
    position: fixed; top: 0; left: 0; width: 100%; padding: 20px 40px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 100; background-color: rgba(249, 246, 240, 0.9); backdrop-filter: blur(8px); 
}

.logo { font-size: 1.5rem; font-weight: 600; }

.language-switch button {
    background: none; border: none; font-family: inherit; font-size: 1rem;
    color: var(--text-dark); cursor: pointer; opacity: 0.5; transition: opacity 0.3s;
}
.language-switch button.active { opacity: 1; font-weight: 600; }

.panel {
    width: 100%; display: flex; justify-content: center; align-items: center;
    padding: 100px 40px 80px; 
}
.content-box { max-width: 1000px; width: 100%; text-align: center; }

h1 { font-size: 3.5rem; margin-bottom: 20px; font-weight: 600; }
h2 { font-size: 2.5rem; margin-bottom: 30px; font-weight: 400; }
p { font-size: 1.2rem; line-height: 1.6; }

.hero-panel { 
    min-height: 75vh; background-image: url('hero-bg.jpg'); 
    background-size: cover; background-position: center;
    background-color: rgba(249, 246, 240, 0.85); background-blend-mode: overlay; 
}
.pastel-green-panel { background-color: var(--sage); color: var(--white); }
.contact-panel { background-color: var(--soft-gray); }

/* İletişim bölümü için yan yana dizilim */
.double-col { display: flex; gap: 40px; text-align: left; }

/* Takvim ve saatler için alt alta ferah dizilim */
.stacked-layout {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Saatler ve takvim arasındaki nefes alma boşluğu */
    text-align: center;
    width: 100%;
}

/* Buluşma saatlerini yan yana şık kartlar halinde gösterme */
.schedule-list { 
    list-style: none; 
    display: flex; 
    flex-direction: row; 
    justify-content: center; 
    flex-wrap: wrap; 
    gap: 30px; 
    font-size: 1.1rem; 
}

.schedule-list li {
    background-color: rgba(255, 255, 255, 0.15); /* Hafif saydam modern kart görünümü */
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.schedule-list strong { 
    color: var(--beige); 
    font-size: 1.3rem; 
    display: block; 
    margin-bottom: 10px; 
}

/* Elfsight widget'ı için genişletilmiş, sınırları kaldırılmış alan */
.calendar-section {
    background-color: var(--soft-gray);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    color: var(--text-dark);
    width: 100%;
}

.calendar-section h2 { margin-bottom: 25px; }

/* İletişim Ekranı */
.form-section, .map-section { flex: 1; }
form { display: flex; flex-direction: column; gap: 15px; }
input, textarea {
    padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: inherit;
    background-color: var(--white); 
}
button[type="submit"] {
    padding: 15px; background-color: var(--sage); color: var(--white); border: none;
    border-radius: 8px; font-size: 1.1rem; cursor: pointer; transition: background 0.3s;
}
button[type="submit"]:hover { background-color: var(--sage-dark); }

.map-section iframe {
    width: 100%; height: 100%; min-height: 300px; border-radius: 12px;
    background-color: var(--white); box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}