/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }
html, body { height:100%; }
body {
  font-family:Arial,sans-serif;
  background:#f3f4f6;
  color:#333;
  line-height:1.6;
}
html { scroll-behavior:smooth; }

/* Navbar */
.header {
  background:#fff;
  height:80px;
  position:fixed; top:0; left:0; right:0;
  box-shadow:0 2px 4px rgba(0,0,0,0.1);
  z-index:1000;
}
.header .container {
  display:flex; align-items:center; justify-content:space-between;
  height:100%; padding:0 30px;
}
.logo-kontainer { display:flex; align-items:center; text-decoration:none; color:inherit; }
.logo { width:40px; margin-right:10px; }
.logo-metin h1 { font-size:20px; }
.logo-metin p  { font-size:12px; color:gray; }

/* Profil dropdown */
.account-icon {
  width:35px; height:35px;
  border:1px solid #8550D9; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:.2s;
}
.account-icon:hover { background:#0ebedd; border-color:#0ebedd; }
.account-icon i { color:#8550D9; font-size:20px; transition:.2s; }
.account-icon:hover i { color:#fff; }
.account-menu {
  list-style:none;
  position:absolute; top:100%; right:30px;
  background:#fff; border:1px solid #ccc; border-radius:6px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  display:none; width:180px; z-index:1001;
}
.account-menu.visible { display:block; }
.account-menu a.account-link { text-decoration:none; color:inherit; display:block; }
.account-menu li {
  padding:10px 15px; display:flex; align-items:center; gap:8px;
  cursor:pointer; transition:.2s;
}
.account-menu li:hover { background:#f0f0f0; }

/* Ana içerik */
.meet-section {
  padding-top:120px; /* navbar yüksekliği + boşluk */
  display:flex; flex-direction:column; align-items:center;
  height:calc(100vh - 80px);
  padding-bottom: 2rem; /* alt boşluk ekledik */
}

/* Birleşik kart */
.meet-card--wrapper {
  display:flex; flex-wrap:wrap;
  background:#fff;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
  overflow:hidden;
  width:100%; max-width:800px;
  min-height: 450px;
}
/* Paneller */
.meet-panel {
  flex:1 1 300px;
  padding:1.5rem;
  text-align:center;
  display:flex; flex-direction:column; align-items:center;
  
}
/* Ayırıcı */
.meet-panel + .meet-panel {
  border-left:1px solid #e0e0e0;
}
/* İkon & Başlık */
.card-icon {
  width:150px; margin-bottom:1rem;
}
.meet-panel h3 {
  font-size:18px; color:#0ebedd;
  margin-bottom:0.5rem;
}
.panel-desc {
  font-size:14px; color:#555;
  margin-bottom:1rem;
}

/* Form */
.form-group {
  width:100%; text-align:left; margin-bottom:1rem;
}
.form-group label {
  display:block; margin-bottom:.5rem; font-weight:600;
}
.form-group input {
  width:100%; padding:.5rem;
  border:1px solid #ccc; border-radius:4px;
  transition:.2s;
}
.form-group input:focus {
  outline:none; border-color:#0ebedd;
  box-shadow:0 0 4px rgba(14,190,221,0.3);
}

/* Buton */
.btn-action {
  margin-top:.5rem;
  padding:.6rem 1.2rem;
  background:#0ebedd; color:#fff;
  border:none; border-radius:4px;
  cursor:pointer;
  display:inline-flex; align-items:center; gap:.4rem;
  transition:background .2s,transform .2s;
}
.btn-action:disabled {
  background:#ccc; cursor:not-allowed; transform:none;
}
.btn-action:not(:disabled):hover {
  background:#0aaac2; transform:translateY(-2px);
}

/* Alt bilgi */
.meet-footer {
  text-align:center;
  max-width:800px;
  margin: 3rem auto 2rem; /* üst, sağ-sol otomatik, alt 2rem */
  font-size:12px; color:#555; line-height:1.4;
}
.meet-footer p { margin-bottom:.5rem; }
.footer-links {
  display:flex; justify-content:center; gap:1rem;
  margin-bottom:.5rem;
}
.footer-links a {
  color:#0ebedd; text-decoration:none; transition:.2s;
}
.footer-links a:hover {
  text-decoration:underline;
}
.footer-copy { color:#777; }

/* Responsive */
@media (max-width: 600px) {
  .meet-panel + .meet-panel {
    border-left:none;
    border-top:1px solid #e0e0e0;
  }
}

/* Overlay ve Progress Bar Stilleri */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Yarı saydam karartma */
    z-index: 2000; /* Navbar ve diğer içeriklerin üstünde */
    justify-content: center;
    align-items: center;
}

.overlay.active {
    display: flex;
}

.progress-container {
    width: 320px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.progress-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #0ebedd, #8550D9);
    border-radius: 5px;
    animation: progress 2.5s infinite ease-in-out;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: glow 2.5s infinite ease-in-out;
}

.progress-spinner {
    font-size: 24px;
    color: #0ebedd;
}

@keyframes progress {
    0% { width: 0; }
    50% { width: 90%; }
    100% { width: 0; }
}

@keyframes glow {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

/* Toast Notification Stilleri */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000; /* Overlay ve navbar üstünde */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: #e6f7fa; /* Açık mavi arka plan */
    color: #0ebedd; /* Koyu mavi metin */
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #b3e5fc; /* Hafif mavi kenarlık */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    font-size: 13px;
    font-weight: 400; /* Daha zarif font */
    line-height: 1.5; /* Daha rahat okuma */
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateX(100%);
    animation: slideIn 0.5s ease-out forwards, slideOut 0.5s ease-in 2.5s forwards;
}

.toast i {
    font-size: 16px;
    color: #0ebedd;
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateX(100%); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideOut {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(100%); }
}

/* Responsive için Progress Bar ve Toast */
@media (max-width: 600px) {
    .progress-container {
        width: 80%;
        max-width: 280px;
        padding: 15px;
    }
    .progress-text {
        font-size: 14px;
    }
    .progress-bar {
        height: 8px;
    }
    .progress-spinner {
        font-size: 20px;
    }
    #toast-container {
        top: 10px;
        right: 10px;
        width: 90%;
        max-width: 250px;
    }
    .toast {
        font-size: 11px;
        padding: 12px 15px;
    }
    .toast i {
        font-size: 14px;
    }
}