* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Arabic', sans-serif;
    background: #0B0B0B;
    color: #fff;
}
html {
    scroll-behavior: smooth;
}


.container {
    width: 90%;
    max-width: 1140px;
    margin: auto;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo span {
    color: #C4161C;
}


.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 0;
    height: 2px;
    background: #C4161C;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ========== HERO ========== */
.hero {
    height: 100vh;
    background: url("/عريس.jpg") center/cover;
    position: relative;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero h1 span {
    display: block;
    color: #C4161C;
}

.hero p {
    color: #ccc;
    margin-bottom: 30px;
}

/* ========== BUTTONS ========== */
.btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn.primary {
    background: #C4161C;
    color: #fff;
}

.btn.secondary {
    border: 1px solid #fff;
    color: #fff;
}

.btn:hover {
    transform: scale(1.05);
}

.btn.full {
    width: 100%;
    text-align: center;
}

.btn.whatsapp {
    background: #25D366;
    color: #fff;
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
    background: #fff;
    color: #000;
}

.section.dark {
    background: #0B0B0B;
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
}

/* ========== WORK ========== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.work-card {
    height: 220px;
    background: #2A2A2A;
    border-radius: 12px;
}

/* ========== PACKAGES ========== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background: #F5F5F5;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(196,22,28,0.3);
}

.package-card h3 {
    margin-bottom: 15px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    color: #C4161C;
    margin-bottom: 20px;
}

.featured {
    border: 2px solid #C4161C;
}


@media (max-width: 768px) {

    /* ===== General ===== */
    body {
        font-size: 15px;
    }

    .container {
        width: 92%;
    }

    /* ===== Navbar ===== */
    .nav-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-links {
        display: none; /* هنفعلها بعدين لو عملنا burger menu */
    }

    .btn.primary {
        padding: 10px 18px;
        font-size: 14px;
    }

    /* ===== Hero ===== */
    .hero {
        height: 100vh;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* ===== Work ===== */
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-card {
        height: 200px;
    }

    /* ===== Packages ===== */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .package-card {
        padding: 25px 20px;
    }

    .price {
        font-size: 24px;
    }

    /* ===== Section spacing ===== */
    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    /* ===== Contact ===== */
    .contact p {
        font-size: 16px;
    }

    .btn.whatsapp {
        width: 100%;
        text-align: center;
    }
}


@media (max-width: 480px) {

    .hero h1 {
        font-size: 24px;
    }

    .logo {
        font-size: 22px;
    }

    .price {
        font-size: 22px;
    }

}


@media (max-width: 768px) {
    .btn.full {
        padding: 14px;
        font-size: 16px;
    }
}
