/* assets/css/style.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Cairo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background-color: #f5f7fb;
    color: #222;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    padding: 20px 0 80px;
    position: relative;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.navbar .brand {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.navbar .brand span {
    font-weight: 300;
}

.navbar .menu {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
}

.navbar .menu a {
    opacity: 0.9;
}

.navbar .menu a:hover {
    opacity: 1;
    font-weight: 600;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #2563eb;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-highlights span {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-image {
    background-color: rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.15);
}

.hero-image-inner {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
}

.hero-image-inner h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.hero-image-inner p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 14px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    font-size: 0.8rem;
}

.hero-tags span {
    background-color: #eff6ff;
    border-radius: 999px;
    padding: 5px 12px;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-header h2 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 0.95rem;
    color: #555;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.07);
    border: 1px solid #e5e7eb;
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.service-meta {
    font-size: 0.85rem;
    color: #2563eb;
    font-weight: 600;
}

/* Videos */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.video-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.09);
}

.video-thumb {
    background-color: #000;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.video-body {
    padding: 14px 16px 18px;
}

.video-body h3 {
    font-size: 0.98rem;
    margin-bottom: 6px;
}

.video-body p {
    font-size: 0.85rem;
    color: #555;
}

/* Reservation CTA */
.cta-box {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    border-radius: 18px;
    padding: 22px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cta-box p {
    font-size: 0.95rem;
    opacity: 0.96;
}

/* Footer */
footer {
    padding: 20px 0 30px;
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    header {
        padding-bottom: 40px;
    }
}

@media (max-width: 640px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .navbar .menu {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
}
