﻿/* Centralized CSS extracted from HTML files in the way2go workspace.
   This file consolidates inline <style> blocks from all HTML pages.

   Note: Each block appended below is preceded by a comment indicating
   the source HTML file and a short description of what was moved.
*/

/* --- START: styles collected from HTML files --- */

/* ---- FROM: iletisim.html ---- */
:root {
            --bg-dark-purple: #12072b;
            --card-glass: rgba(30, 15, 65, 0.65);
            --border-glass: rgba(255, 255, 255, 0.1);
            --text-white: #ffffff;
            --text-muted: #c7bce0;
            --brand-orange: #FCA440;
            --brand-purple: #6825DB;
            --brand-green: #CBD83B;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Outfit', sans-serif; }
        html { scroll-behavior: smooth; overflow-x: hidden; }

        body {
            background-color: var(--bg-dark-purple);
            background-image: radial-gradient(circle at 50% 5%, #2a1161 0%, var(--bg-dark-purple) 70%);
            background-attachment: fixed;
            color: var(--text-white);
            overflow-x: hidden;
        }

        img { max-width: 100%; height: auto; }

        .glass-card {
            background: var(--card-glass);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--border-glass);
            color: var(--text-white);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border-radius: 20px;
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
            will-change: opacity, transform;
        }

        .scroll-reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .thegem-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            transition: all 0.4s ease;
        }

        .thegem-header.scrolled {
            height: 80px;
            background: rgba(18, 7, 43, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .thegem-header-container {
            width: 100%;
            max-width: 1400px;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .custom-logo-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .custom-logo-icon {
            height: 40px;
            width: auto;
            object-fit: contain;
            display: block;
        }

        .custom-logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        .custom-logo-text span { color: var(--brand-orange); }

        .pill-nav-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }

        .pill-nav-link {
            background-color: rgba(255, 255, 255, 0.12);
            color: #ffffff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 10px 22px;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
            border: 1px solid rgba(255, 255, 255, 0.18);
        }

        .pill-nav-link:hover,
        .pill-nav-link.active {
            background: rgba(255, 255, 255, 0.25);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .portal-pill-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            color: #ffffff;
            text-decoration: none;
            transition: 0.3s;
        }

        .portal-pill-btn:hover {
            background: #ffffff;
            color: var(--brand-purple);
            transform: translateY(-2px);
        }

        .lang-toggle-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            padding: 0;
            cursor: pointer;
            transition: 0.3s;
        }

        .lang-toggle-btn:hover {
            background: #ffffff;
            transform: translateY(-2px);
        }

        .lang-toggle-btn .lang-flag-img {
            width: 26px;
            height: 18px;
            object-fit: cover;
            border-radius: 3px;
            flex-shrink: 0;
        }

        .pill-outline-btn {
            background-color: transparent;
            color: #ffffff;
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .pill-outline-btn:hover {
            background: #ffffff;
            color: #111;
        }

        .thegem-nav-item-has-dropdown {
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            height: 90px;
        }

        .thegem-nav-item-has-dropdown > a {
            pointer-events: auto;
            cursor: pointer;
        }

        .thegem-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: rgba(25, 10, 45, 0.95);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1050;
            padding: 20px;
            cursor: default;
        }

        .thegem-nav-item-has-dropdown:hover .thegem-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-header {
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 5px;
            font-size: 0.65rem;
            font-weight: 800;
            color: var(--brand-orange);
            text-transform: uppercase;
            letter-spacing: 1px;
            grid-column: 1 / -1;
        }

        .dropdown-link {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-muted);
            text-decoration: none;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .dropdown-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
        }

        .grid-cols-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .grid-cols-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .dropdown-link img {
            width: 20px;
            height: 14px;
            object-fit: cover;
            border-radius: 3px;
            flex-shrink: 0;
        }

        .exam-icon-box {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.exam-icon-box img {
            width: 36px !important;
            height: 36px !important;
            max-width: none !important;
            object-fit: contain;
            border-radius: 0 !important;
        }

.dropdown-link:has(.exam-icon-box) {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    gap: 14px;
}

        .thegem-mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #ffffff;
        }

        .mobile-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s;
        }

        .mobile-backdrop.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: var(--bg-dark-purple);
            border-left: 1px solid var(--border-glass);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            transition: right 0.4s;
            overflow-y: auto;
        }

        .mobile-menu-overlay.active { right: 0; }

        .mob-header {
            display: flex;
            justify-content: space-between;
            padding: 25px 30px;
            border-bottom: 1px solid var(--border-glass);
        }

        .close-mob-menu {
            font-size: 1.5rem;
            cursor: pointer;
            color: #fff;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .close-mob-menu:hover {
            background: #ef4444;
            color: #fff;
        }

        .mob-menu-body {
            padding: 16px 26px;
            flex: 1;
        }

        .mob-nav-item {
            display: flex;
            justify-content: space-between;
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
            padding: 18px 0;
            border-bottom: 1px solid var(--border-glass);
            text-decoration: none;
            transition: 0.3s;
        }

        .mob-nav-item:hover { color: var(--brand-orange); }

        .mob-nav-item-with-toggle {
            align-items: center;
            gap: 12px;
        }

        .mob-nav-link {
            color: inherit;
            text-decoration: none;
        }

        .mob-nav-link-main {
            flex: 1;
        }

        .mob-nav-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border: none;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border-radius: 50%;
            cursor: pointer;
        /* --- END: styles collected from HTML files --- */

/* Ne olduğuna not: Bu dosya, tüm HTML içindeki inline CSS kodlarını tek
   bir yerde toplar. Düzenleme yaparken ilgili HTML dosyasında hangi
   kısmın taşındığını anlamak için yukarıdaki kaynak yorumlarını kullan. */
