@import url('vars.css');

/* Genel Mobil İçerik Stilleri */
.mobile-content {
    flex: 1;
    overflow-y: auto;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Scrollbar'ı gizle (içerik için) */
.mobile-content::-webkit-scrollbar {
    display: none;
}

.mobile-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Ortak Padding ve Marginler */
.p-20 {
    padding: 20px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.text-center {
    text-align: center;
}

/* Global Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin: 0;
    font-weight: 500;
}

p {
    margin: 0;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Şeffaf Kart (Glassmorphism) */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
}

/* Butonlar */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #b38f26);
    color: var(--bg-darker);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    border: 1px solid var(--border-light);
}

/* Form Elemanları */
.input-group {
    margin-bottom: 16px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    padding-left: 4px;
}

.input-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    box-sizing: border-box;
    transition: var(--transition-fast);
}

.input-control:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Bottom Navigation Bar */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 10px 25px;
    /* iOS için altta ekstra boşluk */
    background: rgba(26, 26, 62, 0.85);
    /* --bg-dark */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-light);
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.nav-item i {
    font-size: 1.4rem;
}

.nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

.nav-item.active {
    color: var(--accent-gold);
}

.nav-item:hover {
    color: var(--text-main);
}