/* --- INDEX SAYFASI KUSURSUZ ORANTI VE TEMA STİLLERİ --- */

/* Ana Ekran Kapsayıcısı */
.welcome-wrapper {
    max-width: 410px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 18px 30px 18px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Üst Kontrol Barı (Hakkımızda & Dil) */
.top-controls-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.about-info-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(242, 183, 5, 0.4);
    color: var(--logo-yellow, #f2b705);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s ease;
}

.about-info-btn:active {
    transform: scale(0.92);
}

.lang-selector {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 6px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    padding: 5px 12px;
    border-radius: 14px;
    color: #888888;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: all 0.25s ease;
}

.lang-btn.active {
    background: var(--logo-red, #a61214);
    color: #ffffff;
}

/* Marka / Hero Alanı */
.brand-hero {
    text-align: center;
    margin-bottom: 25px;
}

.main-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 14px auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
}

.brand-hero h1 {
    font-size: 25px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.brand-hero .subtitle {
    font-size: 11px;
    font-weight: 800;
    color: var(--logo-yellow, #f2b705);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Aksiyon Butonları Alanı */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--logo-red, #a61214);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(166, 18, 20, 0.35);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.3);
}

/* --- KAMPANYA SLIDER KARTI & HATALI YAZI DÜZELTMESİ --- */
.welcome-campaign-slider {
    position: relative;
    background: #181818;
    border: 1px solid #282828;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 4px;
    touch-action: pan-y;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.welcome-slider-item {
    min-width: 100%;
    display: none;
}

.welcome-slider-item.active {
    display: block;
}

.slider-item-inner {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
}

.slider-item-inner img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.slider-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}

/* ⚠️ HATALI OLAN KAMPANYA ROZETİNİN CANLI VE NET STİLİ */
.slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(242, 183, 5, 0.15);
    color: var(--logo-yellow, #f2b705);
    border: 1px solid rgba(242, 183, 5, 0.3);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.slider-item-info h4 {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin: 2px 0;
    line-height: 1.3;
}

.slider-price {
    color: var(--logo-yellow, #f2b705);
    font-weight: 900;
    font-size: 15px;
    margin-top: 2px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding-bottom: 10px;
}

.slider-dots .dot {
    width: 6px;
    height: 6px;
    background: #444444;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--logo-yellow, #f2b705);
    width: 16px;
    border-radius: 10px;
}

/* Ajans İmza Footer */
.agency-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 11px;
    color: #666666;
    font-weight: 600;
}

/* Alt Butonlar İkili Grid Alanı */
.secondary-buttons-grid {
    display: flex;
    gap: 10px;
    width: 100%;
}

.secondary-buttons-grid .btn {
    flex: 1;
    padding: 13px 10px;
    font-size: 14px;
    white-space: nowrap;
}

/* Garson Çağır Buton Stili */
.btn-waiter-call {
    background: #22c55e;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.btn-waiter-call:active {
    transform: scale(0.98);
}

/* Garson Çağır Modal (Pop-up) Stili */
.waiter-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.waiter-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.waiter-modal-card {
    background: #181818;
    border: 1px solid #282828;
    border-radius: 20px;
    width: 100%;
    max-width: 360px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.waiter-modal-card h3 {
    color: var(--logo-yellow, #f2b705);
    font-size: 18px;
    margin-bottom: 15px;
}

.waiter-modal-card input {
    width: 100%;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.waiter-modal-card .btn-submit-call {
    width: 100%;
    background: #22c55e;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
}