/* ==============================================
   RCECE - Public Pages Stylesheet
   Gold & White Brand Identity
   ============================================== */

/* ---- Google Font ---- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

/* ---- Base ---- */
body {
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

/* ================================================
   Hero Slider
   ================================================ */
.hero-slider {
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 6s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* مؤشرات السلايدر */
.hero-dot {
    cursor: pointer;
    border: none;
    outline: none;
}

.hero-dot.active {
    background: #C9A84C !important;
    height: 2rem;
    border-radius: 9999px;
}

/* ================================================
   Section Title Underline (Gold)
   ================================================ */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #C9A84C;
    margin: 10px auto;
}

/* ================================================
   Blog Card Hover
   ================================================ */
.blog-card:hover img {
    transform: scale(1.1);
}

/* ================================================
   Nav Link Hover (Gold)
   ================================================ */
.nav-link {
    transition: color 0.3s;
}

.nav-link:hover {
    color: #C9A84C;
}