
/* ==========================================
   LUXURY HERO BANNER - FULL WIDTH 
   Premium Brand Design (Similar to Dior, Chanel)
   ========================================== */

.hero-banner-luxury {
    width: 100%;
    height: 100vh;
    max-height: 900px;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-banner-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Subtle zoom on page load for premium feel */
.hero-banner-image-container:hover .hero-banner-image {
    transform: scale(1.02);
}

/* Premium Overlay Gradient */
.hero-overlay {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(255, 140, 66, 0.15) 100%);
    z-index: 2;
}

/* Hero Banner Text Content */
.hero-banner-content {
    position: absolute;
    top: 50%;
    left: 35%; /* يظل قريب من اليسار على الشاشات الكبيرة */
    transform: translate(-50%, -50%); /* يمركز النص طولياً */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* يبقى النص على اليسار */
    text-align: left;
    z-index: 2;
    padding: 0;
}

/* Mobile Landscape & Portrait */
@media (max-width: 768px) {
    .hero-banner-content {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* يظل مركز طولياً وعرضياً */
        align-items: center;
        text-align: center;
    }
}




.hero-banner-text {
    max-width: 550px;
    animation: slideInLeft 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

/* Premium tag with orange accent */
.hero-luxury-tag {
  
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: #ff8c42;
    border: 2px solid #ff8c42;
    padding: 10px 28px;
    border-radius: 30px;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 140, 66, 0.1);
    backdrop-filter: blur(10px);
}


.hero-luxury-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 140, 66, 0.35);
}

/* Elegant hero title with premium typography */
.hero-banner-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.15;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

/* Subtitle with refined styling */
.hero-banner-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 450px;
}

/* CTA Button Group */
.hero-banner-cta-group {
    display: flex;
    gap: 20px;
    animation: fadeIn 0.9s ease 0.6s both;
}

/* Primary button with orange gradient */
.cta-banner-primary,
.cta-banner-secondary {
    padding: 16px 48px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid #ff8c42;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-banner-primary {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 140, 66, 0.3);
}

.cta-banner-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-banner-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.5);
}

.cta-banner-primary:hover::before {
    left: 0;
}

/* Secondary button - transparent with border */
.cta-banner-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-banner-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 140, 66, 0.15);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-banner-secondary:hover {
    border-color: #ff8c42;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 140, 66, 0.25);
}

.cta-banner-secondary:hover::after {
    background: rgba(255, 140, 66, 0.25);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-banner-luxury {
        max-height: 700px;
        height: 80vh;
    }

  

    .hero-banner-text {
        max-width: 450px;
    }

    .hero-banner-title {
        font-size: 52px;
    }

    .hero-banner-subtitle {
        font-size: 15px;
    }

    .cta-banner-primary,
    .cta-banner-secondary {
        padding: 14px 40px;
        font-size: 11px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .hero-banner-luxury {
        max-height: 600px;
        height: 70vh;
        min-height: 500px;
    }



    .hero-banner-text {
        max-width: 100%;
        animation: none;
    }

    .hero-luxury-tag {
        font-size: 10px;
        padding: 8px 16px;
        margin-bottom: 15px;
    }

    .hero-banner-title {
        font-size: 42px;
        margin-bottom: 15px;
    }

    .hero-banner-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero-banner-cta-group {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .cta-banner-primary,
    .cta-banner-secondary {
        padding: 12px 32px;
        font-size: 10px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .hero-banner-luxury {
        max-height: 500px;
        height: 65vh;
        min-height: 450px;
    }

  
   .hero-luxury-tag {
    font-size: 8px;   /* أصغر */
    padding: 5px 10px;
    letter-spacing: 1.2px;
}

.hero-banner-title {
    font-size: 28px;  /* أصغر */
    margin-bottom: 10px;
}

.hero-banner-subtitle {
    font-size: 12px;  /* أصغر */
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-banner-primary,
.cta-banner-secondary {
    padding: 8px 20px;
    font-size: 8px;   /* أصغر */
    letter-spacing: 0.8px;
}

.hero-banner-cta-group {
    gap: 8px;
}

}

/* RTL Support */
html[dir="rtl"] .hero-banner-content {
    justify-content: flex-end;
}

html[dir="rtl"] .hero-banner-text {
    text-align: right;
}


