/*
Theme Name: Raysa
Theme URI: http://raysaweb.ir
Author: Raysa
Author URI: https://raysaweb.ir
Description: A Raysa for web design.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: raysaweb.ir
*/

/* Import Iran Sans Variable Font */
@font-face {
    font-family: 'IranSansVariable';
    src: url('fonts/IRANSansXV.woff2') format('woff2-variations'),
         url('fonts/IRANSansXV.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}
body {
    margin: 0;
    height: 100vh;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'IranSansVariable', Arial, sans-serif;
    color: #fff;
    overflow: hidden;
  }
.yellow
{
  color:  #ffe400;
}
  #comingsoon {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: scale(0.8);
    animation: fadeIn 2s ease forwards, pulse 3s ease-in-out infinite;
  }

  img {
    width: 160px;
    height: auto;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes pulse {
    0% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 60px rgba(255, 255, 255, 0.5); }
    100% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.2); }
  }

  h1, h2 {
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    animation: textFade 2s ease 1.5s forwards;
    text-align: center;
  }

  h1 {
    font-size: 24px;
    margin-top: 40px;
  }

  h2 {
    font-size: 18px;
    margin-top: 10px;
    color: #ccc;
  }

  @keyframes textFade {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
