/* OTFH CMS - Supplemental Styles (ek stiller) */
/* Bu dosya sadece mavi.css ve otfh-yellow.css tarafından karşılanmayan ek stilleri içerir */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================================
   Temel Renk Değişkenleri (OTFH sarı paleti)
   mavi.css'deki varsayılan (mavi) değerlerin
   üzerine yazılır, otfh-yellow.css bunu da tamamlar
   ========================================= */
:root {
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* =========================================
   Body & App reset
   ========================================= */
html, body {
    zoom: normal !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100vh !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
}
body {
    font-family: var(--font-body, 'Inter', sans-serif);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}
#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    flex: 1;
}

/* =========================================
   Header: hero section
   ========================================= */
header {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
}
header .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}
header > #navbar {
    position: relative;
    z-index: 10;
}

/* Hero stack (title + ip) centred inside header */
.hero-stack {
    position: absolute;
    left: 50%; top: 35%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 0 20px;
    text-align: center;
}
.hero-title-wrap img.hero-title {
    max-width: 360px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.9));
    animation: heroFloat 4s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.hero-quote {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 480px;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   IP Container
   ========================================= */
.ip-container {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(26,26,26,0.88);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 14px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.55);
    cursor: pointer;
    transition: all 0.25s ease;
}
.ip-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 42px rgba(0,0,0,0.65);
    background: rgba(26,26,26,0.97);
}
.ip-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.25s;
}
.ip-container:hover .ip-icon {
    background: var(--otfh-gold, #f0c929);
    color: #111;
}
.ip-content { text-align: left; }
.ip-content h3 {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.ip-content span {
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
}

/* =========================================
   Layout Container
   ========================================= */
.content-wrap {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* =========================================
   News Feed – Horizontal Row Cards
   ========================================= */
.news-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.news-card {
    display: flex;
    flex-direction: column;
    background: #161718;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s;
    margin-bottom: 20px;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: rgba(240, 201, 41, 0.2);
}
@media (min-width: 640px) {
    .news-card {
        flex-direction: row;
        align-items: stretch;
    }
}
.news-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}
@media (min-width: 640px) {
    .news-image-container {
        width: 280px;
        height: auto;
    }
}
.news-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.news-card:hover .news-image { transform: scale(1.05); }

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 22px;
}
.news-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #ef4444;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 6px;
    width: fit-content;
    margin-bottom: 10px;
}
.news-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.35;
    text-decoration: none;
    transition: color 0.2s;
}
.news-card:hover .news-title {
    color: var(--otfh-gold, #f0c929);
}
.news-description {
    color: #9ca3af;
    font-size: 0.88rem;
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 14px;
}
.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 10px;
}
.news-date { color: #6b7280; font-size: 0.78rem; }
.news-link {
    color: #fff;
    font-weight: 700;
    font-size: 0.83rem;
    text-decoration: none;
    transition: color 0.2s;
}
.news-link:hover { color: var(--otfh-gold, #f0c929); }

/* =========================================
   Breadcrumb
   ========================================= */
.breadcrumb-container { margin-bottom: 28px; }
.breadcrumb-box {
    background: #161718;
    border-radius: 12px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.breadcrumb-item { color: #9ca3af; font-size: 1rem; transition: color 0.2s; }
.breadcrumb-item:hover { color: #fff; }
.breadcrumb-separator { color: rgba(255,255,255,0.15); font-size: 0.75rem; }
.breadcrumb-current { color: #9ca3af; font-size: 0.9rem; font-weight: 500; }

/* =========================================
   Store Cards
   ========================================= */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}
.store-card {
    background: #161718;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}
.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.45);
    border-color: rgba(240,201,41,0.15);
}
.store-img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    background: rgba(0,0,0,0.25);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 12px;
}
.store-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.store-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.97rem;
    margin-bottom: 6px;
}
.store-price {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--otfh-gold, #f0c929);
    margin: 8px 0 14px;
}
.store-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 11px 0;
    background: var(--otfh-gold, #f0c929);
    color: #111;
    font-weight: 800;
    border-radius: 10px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.store-btn:hover { opacity: 0.85; }

/* =========================================
   Auth Pages (Login / Register)
   ========================================= */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}
.auth-card {
    background: #161718;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 40px 48px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.auth-logo {
    text-align: center;
    margin-bottom: 28px;
}
.auth-logo img { height: 64px; }
.auth-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 6px;
}
.auth-subtitle {
    color: #6b7280;
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}
.form-control:focus {
    border-color: var(--otfh-gold, #f0c929);
    background: rgba(255,255,255,0.08);
}
.form-control::placeholder { color: rgba(255,255,255,0.25); }

.btn-full {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    text-decoration: none;
}
.btn-full.btn-primary {
    background: var(--otfh-gold, #f0c929);
    color: #111;
    box-shadow: 0 4px 20px rgba(240,201,41,0.35);
}
.btn-full.btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.auth-footer {
    text-align: center;
    margin-top: 22px;
    color: #6b7280;
    font-size: 0.88rem;
}
.auth-footer a {
    color: var(--otfh-gold, #f0c929);
    font-weight: 700;
    text-decoration: none;
}

/* =========================================
   Glass Panel (genel kart)
   ========================================= */
.glass-panel {
    background: #161718;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 24px;
}

/* =========================================
   Admin Sidebar Layout
   ========================================= */
.admin-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.admin-sidebar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s;
}
.admin-menu-link:hover, .admin-menu-link.active {
    background: rgba(240,201,41,0.1);
    color: #fff;
    border-left: 3px solid var(--otfh-gold, #f0c929);
}

/* =========================================
   Alerts
   ========================================= */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.9rem;
    border-left: 4px solid;
}
.alert-success {
    background: rgba(34,197,94,0.12);
    border-color: #22c55e;
    color: #4ade80;
}
.alert-danger {
    background: rgba(239,68,68,0.12);
    border-color: #ef4444;
    color: #fca5a5;
}
.alert-info {
    background: rgba(59,130,246,0.12);
    border-color: #3b82f6;
    color: #93c5fd;
}
.alert-warning {
    background: rgba(234,179,8,0.12);
    border-color: #eab308;
    color: #fde047;
}

/* =========================================
   Buttons (standalone, not in mavi.css context)
   ========================================= */
.btn-danger {
    background: #dc2626;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
    text-decoration: none;
}
.btn-danger:hover { background: #b91c1c; }

/* =========================================
   Shopping Cart / Checkout
   ========================================= */
.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
    margin-top: 16px;
}

/* =========================================
   Footer
   ========================================= */
footer.bg-gray-100 {
    /* override mavi.css — dark.css handles the background */
}
.mobile-footer-signature {
    padding: 0;
}
@media (max-width: 768px) {
    .mobile-footer-signature {
        grid-template-columns: 1fr !important;
        gap: 12px;
        text-align: center;
    }
    .auth-card { padding: 28px 20px; }
    .admin-layout { grid-template-columns: 1fr; }
}

/* =========================================
   Utility helpers
   ========================================= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.text-gold { color: var(--otfh-gold, #f0c929); }
.hidden { display: none !important; }

/* =========================================
   OTFH Custom Adjustments
   ========================================= */

/* Prevent navbar items text from wrapping */
#navbar .nav-item {
    white-space: nowrap !important;
}

/* Team Section overrides for soft off-white background and better text contrast/spacing */
.mavibugday-team-container {
    background-color: #fafafa !important;
    padding: 60px 40px !important;
}
.mavibugday-team-info h1 {
    margin-top: 20px !important;
    color: #111213 !important;
}
.mavibugday-team-info p#memberBio {
    color: #2c3e50 !important;
    font-size: 1.1rem !important;
}
.mavibugday-team-nav-btn {
    color: #111213 !important;
}
.mavibugday-team-thumbs-container {
    margin-top: 25% !important; /* Reduce excessive margin-top on desktop */
}
@media (max-width: 835px) {
    .mavibugday-team-thumbs-container {
        margin-top: 20px !important;
    }
}

/* Footer responsive buttons */
.footer-btn {
    padding: 12px 22px !important;
    font-size: 0.95rem !important;
    border-radius: 1rem !important;
    margin: 0 !important;
}
@media (max-width: 480px) {
    .footer-btn {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        gap: 6px !important;
    }
    .footer-btn i {
        font-size: 0.85rem !important;
    }
}


