*{
         margin: 0;
         padding: 0;
         box-sizing: border-box;
}
/* background*/
body{
         background-image: url("images/background.png");
         background-size: cover;
         background-position: center;
         background-repeat: no-repeat;
         min-height: 100vh;
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         padding: 20px;
         padding-top: 90px; /* مساحة للـ navbar fixed */
}
/* nav bar*/
/* nav bar*/
.navbar{
         position: fixed;
         top: 0;
         left: 0;
         right: 0;
         width: 100%;
         z-index: 1000;
         margin: 0;
         padding: 12px 5%;
         background: rgba(21, 21, 21, 0.85);
         border-bottom: 2px solid #ed1d24;
         box-shadow: 0 6px 20px rgba(0,0,0,.6);
         backdrop-filter: blur(12px);
}
.navbar-nav{
         display: flex;
         width: 100%;
         align-items: center;
         gap: 18px;
}
.navbar-title-item{
         margin-left: auto;
         margin-right: auto;
}
.navbar-title{
         text-align: center;
         margin: 0;
         color: #ed1d24;
         font-size: 2rem;
         font-weight: 800;
         letter-spacing: 2px;
         text-transform: uppercase;
         text-shadow: 0 0 14px rgba(237, 29, 36, 0.35);
}
.navbar-movie-btn{
         margin-left: 10px;
}
.navbar-movie-btn{
         border-radius: 999px;
         background: linear-gradient(45deg, #ed1d24, #ff3b43);
         color:white;
         padding: 10px 18px;
         border: none;
         cursor: pointer;
         font-weight: 700;
         letter-spacing: .5px;
         box-shadow: 0 6px 16px rgba(237, 29, 36, 0.45);
         transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.navbar-movie-btn:hover{
         transform: translateY(-2px);
         filter: brightness(1.05);
         box-shadow: 0 10px 24px rgba(237, 29, 36, 0.6);
}
.nav-link{
         color: #f0f0f0;
         font-weight: 600;
         padding: 8px 12px;
         border-radius: 6px;
         position: relative;
         transition: color .25s ease;
}
.nav-link::after{
         content: '';
         position: absolute;
         left: 0;
         bottom: -2px;
         width: 0;
         height: 2px;
         background: #ed1d24;
         transition: width .25s ease;
}
.nav-link:hover{
         color: #ffffff;
}
.nav-link:hover::after{
         width: 100%;
}
.navbar-toggler{
         border-color: rgba(255,255,255,.35);
}
.navbar-toggler:focus{
         box-shadow: 0 0 0 2px rgba(237,29,36,.35);
}
.navbar-toggler-icon{
         filter: invert(1) grayscale(1);
}

/* we section (card) */
.we{
         margin-top: 0;
         width: min(900px, 92vw);
         background: rgba(0, 0, 0, 0.78);
         backdrop-filter: blur(14px);
         border: 2px solid rgba(220, 20, 60, 0.45);
         border-radius: 22px;
         box-shadow: 0 18px 60px rgba(0, 0, 0, 0.65);
         padding: 28px 24px;

         display: grid;
         grid-template-columns: 220px 1fr;
         gap: 22px;
         align-items: center;
         direction: rtl;
}

.we img{
         width: 220px;
         height: 220px;
         border-radius: 18px;
         object-fit: cover;
         object-position: center;
         box-shadow: 0 10px 30px rgba(0,0,0,.5);
         border: 1px solid rgba(255,255,255,.15);
}

.we p{
         color: #fff;
         font-size: 1.6rem;
         line-height: 1.9;
         margin: 0;
         text-align: right;
}

@media (max-width: 700px){
         .we{
                  grid-template-columns: 1fr;
                  text-align: center;
         }
         .we img{
                  margin: 0 auto;
         }
         .we p{
                  text-align: center;
                  font-size: 1.25rem;
         }
}

/* final navbar (footer) */
.final-navbar {
    width: 100%;
    margin-top: 60px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    border-top: 3px solid rgba(220, 20, 60, 0.6);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    direction: rtl;
}

.final-navbar h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9),
                 0 0 25px rgba(220, 20, 60, 0.7);
    letter-spacing: 2px;
    font-weight: bold;
    animation: fadeInUp 0.8s ease-out;
}

.final-navbar p {
    color: #f0f0f0;
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.social-link {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.6);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6);
}

.social-link.messenger:hover {
    background: #0084ff;
    border-color: #0084ff;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.6);
}

.social-link.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #fff;
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for final navbar */
@media (max-width: 768px) {
    .final-navbar {
        padding: 30px 15px;
        margin-top: 40px;
    }
    
    .final-navbar h1 {
        font-size: 2rem;
    }
    
    .final-navbar p {
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}
