* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
  }
  
  body {
    background: url('https://images.unsplash.com/photo-1703607888337-aae6d77b3d83?q=80&w=1935&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
  }
  
  .overlay {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* خلفية نصف شفافة لتحسين قراءة النص */
    padding: 30px 20px;
    border-radius: 16px;
    
  }

img{
    width: 300px;      /* العرض */
    height: 100px;     /* الطول مساوي ليصبح الشكل مربع */
    object-fit: cover; /* يجعل المحتوى يغطي المربع دون تشويه */
    display: inline-block; /* لتظهر بجانب عناصر أخرى إن أردت */
}
  
  h1 {
    font-size: 2.5em;
    color: #bfa54e;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  }
  
  p {
    font-size: 1.2em;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
  }
  
  .coming-soon {
    font-size: 1.8em;
    background-color: #bfa54e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(255,165,0,0.5);
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  @media(max-width: 600px) {
    h1 { font-size: 1.8em; }
    p { font-size: 1em; }
    .coming-soon { font-size: 1.5em; }
  }
  