@import "../../fonts/Cairo/stylesheet.css";
:root {
    --st-dark: #16100b;
    --st-darker: #0d0907;
    --st-gold: #cdab63;
    --st-gold-light: #e6d2a0;
    --st-cream: #f3ecdd;
    --ex-title: #2b2b2b;
    --ex-sub: #9aa0a8;
    --ex-btn: #232a36;       /* زر التفاصيل الداكن */
    --ex-accent: #7b86d6;    /* لون شريط التمرير */
}


.categories-page {
    --cp-gold: #cdab63;
    --cp-gold-d: #b08f43;
    --cp-navy: #1b2440;
    --cp-navy-d: #141a2b;
    --cp-muted: #9aa0a8;
    --cp-border: #e9ebef;
    background: #f6f7f9;
    padding: 3rem 0 5rem;
    font-family: 'Cairo', sans-serif;
    min-height: 600px;
}


* {
    font-family: "Cairo", sans-serif;
}
.content * {
    font-size: inherit !important;
}
body {
    margin: 0;
    background: #F9FAFB;
 }

a{
    text-decoration: none;
}

/* ===================== الـ Hero / Swiper ===================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    /* أسفل مستقيم بأطراف سفلية منحنية */
    border-bottom-right-radius: 45px;
    border-bottom-left-radius: 45px;
}

.hero-swiper,
.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.slide-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* طبقة تعتيم فوق الصورة/الفيديو */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 9, 7, 0.55) 0%,
        rgba(13, 9, 7, 0.45) 45%,
        rgba(13, 9, 7, 0.75) 100%
    );
}

/* المحتوى الثابت بوسط الـ Hero */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    pointer-events: none;
}

.hero-content > * {
    pointer-events: auto;
}

.hero-logo {
    width: 120px;
    height: auto;
    margin-bottom: -25px;
    filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.5));
}

.hero-title {
    color: #fff;
    font-weight: 900;
    font-size: clamp(2rem, 6vw, 3.6rem);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.6rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.25s;
    border: 1.5px solid transparent;
    text-decoration: none;

}

.btn-hero-gold {
    background: var(--st-gold);
    color: var(--st-darker);
}
.btn-hero-gold:hover {
    background: var(--st-gold-light);
    transform: translateY(-2px);
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
 }
.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* أزرار التنقل والنقاط */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--st-gold-light);
    z-index: 15;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 1.6rem;
}
.hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.hero-swiper .swiper-pagination-bullet-active {
    background: var(--st-gold);
    opacity: 1;
    width: 22px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }
    .hero-logo {
        width: 85px;
    }
}
