@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
    font-family: 'Tajawal',Arial, Tahoma, Times New Roman;
    
       

}
body {
            margin: 0;
            /* font-family: 'Segoe UI', Arial, sans-serif; */
            background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
            /* min-height: 100vh; */

                     background-image: url('../images/BaseraaBk1920x1182.jpg');
    background-size:cover; 
    background-repeat: no-repeat;
    background-attachment: fixed;
     /* overflow: auto; */
    }

        

        .hero-background {
         background-image: url('../images/theatre.jpg');
    background-size:cover; 
    background-position: center;
    background-repeat: no-repeat;
    background-attachment:fixed;
    position: relative;
    width: 100vw;
    height: 50vh;
        }

        .hero-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            /* padding: 10px 10px; */
            position: absolute;
            top: -10px;
            /* margin-right: auto; */
                height: 100vh;
                    
        }

        .hero-title {
            font-size: 2.6rem;
            font-weight: 700;
            margin-bottom: 40px;
            letter-spacing: 2px;
            color:white
        }

        .card-grid {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: center;
                width: 100vw;
        }

        .app-card {
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 6px 24px rgba(34, 34, 59, 0.08);
            overflow: hidden;
            width: 320px;
            transition: transform 0.2s, box-shadow 0.2s;
            text-decoration: none;
            color: inherit;
            position: relative;
            border: 1px solid white;
        }

        .app-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 12px 32px rgba(34, 34, 59, 0.16);
        }

        .app-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
            background: #e9ecef;
        }

        .app-content {
            padding: 24px 20px 20px 20px;
            text-align: center;
        }

        .app-name {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #3a3a5a;
        }

         .app-subname {
            font-size: 1.1rem;
            font-weight: 300;
            margin-bottom: 8px;
            color: #3a3a5a;
        }

        .app-link {
            display: inline-block;
            margin-top: 12px;
            padding: 8px 22px;
            background: #4f8cff;
            color: #fff;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            transition: background 0.2s;
        }

        .app-link:hover {
            background: #2563eb;
        }

        @media (max-width: 900px) {
            .card-grid {
                flex-direction: column;
                gap: 24px;
                align-items: center;
            }

            .hero-title {
            font-size: 2.0rem;
           text-align: center;
        }

            }