﻿
@font-face {
    font-family: 'FFShamelSansBook';
    src: url('../fonts/FF Shamel Family Sans One Book.ttf') format('truetype');
    font-size:10pt;
    font-weight: normal;
    font-style: normal;
}

 استخدم الخط في جميع العناصر 
body {
    font-family: 'FFShamelSansBook', Arial, sans-serif;
}

 
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-size:20pt;
    font-family: 'FFShamelSansBook', 'Segoe UI', Tahoma, sans-serif;
    background: #fff;
    direction: rtl;
}

    
.video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.75);
}


.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 0;
}

.top-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 130px;
    z-index: 2;
}

.top-nav a.cta {
    margin-inline-start: 40px; 
    background-color: #7b1010;    
    color: #fff;             
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;        
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.top-nav a.cta:hover {
    background-color: #600102;  
    transform: scale(2.07);  
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.nav-logo img {
    width: 150px;
    height:70px;
}

.nav-links {
    display: flex;
    gap: 25px;
    direction: rtl;
    font-size:small;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    font-family: 'FFShamelSansBook', 'Segoe UI', Tahoma, sans-serif;
}

.nav-links a:hover {
    color: #aaa496;
}

/*.nav-links a.cta {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 18px;
}*/


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 42px;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    font-family: 'FFShamelSansBook', 'Segoe UI', Tahoma, sans-serif;
}

.hero-content .tagline {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}


.site-footer {
    background-color: #7b1010;
    color: #f8f8f8;
    text-align: center;
    padding: 20px 0;
    font-family: 'FFShamelSansBook', 'Segoe UI', Tahoma, sans-serif;
}




