/* =====================================
   Top Pro Vision — Global Dark Theme
   tpv-style.css
   ===================================== */

:root {
    --bg: #111;
    --fg: #f5f5f5;
    --gold: #ffd700;
    --muted: #999;
}

/* GLOBAL */
body {
    background: var(--bg);
    color: var(--fg);
    font-family: 'Segoe UI', Tahoma, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--gold);
}
a:hover { text-decoration: underline; }

/* LANGUAGE TOGGLE */
.t-en, .t-ar, .t-fr { display:none; }
.lang-en .t-en { display:inline; }
.lang-ar .t-ar { display:inline; }
.lang-fr .t-fr { display:inline; }

/* =====================================
   NAVBAR
   ===================================== */
.navbar {
    background: #000 !important;
    border-bottom: 1px solid #222;
}
.navbar-brand img {
    height: 64px;
    width: auto;
}
.navbar-brand span {
    font-size: 1.5rem;
    font-weight: 700;
}
.navbar-nav .nav-link {
    font-weight: 600;
    padding: 10px 15px;
    font-size: 1rem;
}
.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

/* MOBILE NAVBAR */
@media (max-width:768px){
    .navbar-brand img { height: 50px; }
    .navbar-brand span { font-size: 1.2rem; }
}

/* =====================================
   SLIDER
   ===================================== */
.carousel-item {
    height: 100vh;
    position: relative;
}
.carousel-item img.desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-item img.mobile {
    display: none;
}
.carousel-caption {
    bottom: 18%;
    text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}
.carousel-caption h1 {
    font-size: 2.8rem;
    font-weight: 800;
}
.carousel-caption p {
    font-size: 1.25rem;
}

/* Mobile Slider */
@media (max-width:768px){
    .carousel-item { height:auto; }
    .carousel-item img.desktop { display:none; }
    .carousel-item img.mobile {
        display:block;
        width:100%;
        height:auto;
    }
    .carousel-caption {
        position: static;
        padding: 15px;
        text-align: start;
    }
    .carousel-caption h1 { font-size: 1.8rem; }
}

/* =====================================
   QUICK SECTIONS / CARDS
   ===================================== */
section {
    padding: 60px 0;
}
h2, h3 {
    font-weight: 800;
    color: var(--gold);
}
.card {
    background: #000;
    border: 1px solid #222;
    border-radius: 10px;
}
.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.card .btn-warning {
    background: var(--gold);
    border: none;
    color: #000;
}

/* =====================================
   CONTACT FORM
   ===================================== */
.bg-black { background:#000; }

.form-control, .form-select {
    background:#0f0f0f;
    color:#fff;
    border:1px solid #333;
    padding: .75rem;
}
.form-control::placeholder { color:#888; }
textarea { resize: none; }

/* =====================================
   FOOTER
   ===================================== */
html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* الغلاف الرئيسي للمحتوى */
.page-wrap {
    flex: 1 0 auto;
}

/* الفوتر دائمًا في الأسفل */
.tpv-footer {
    flex-shrink: 0;
    background:#000;
    color:#fff;
    padding:20px 0;
    border-top:1px solid #222;
}

/* نفس تنسيق الروابط القديم */
.tpv-footer a {
    color:#ffd700;
    text-decoration:none;
    font-weight:500;
}
.tpv-footer a:hover {
    color:#fff;
    text-decoration:underline;
}
.social-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    
    /* المنطقة كلها قابلة للضغط */
    padding: 10px;
    
    /* تكبير الحجم */
    font-size: 1.8rem;
    
    /* تباين عالي */
    color: #ffd700 !important;
    font-weight: 700;
    
    /* رؤية أسهل */
    letter-spacing: 1px;

    /* مساحة بين الأيقونة والاسم */
    gap: 10px;
    
    transition: 0.2s;
}

.social-big i {
    font-size: 4.5rem; /* أيقونة كبيرة جداً */
}

.social-big span {
    font-size: 1rem; /* نص كبير */
}

.social-big:hover {
    transform: scale(1.15);
    color: #ffffff !important;
}


/* =====================================
   RTL FIXES
   ===================================== */
[dir="rtl"] .carousel-caption { text-align: right; }
