/*
Theme Name: monodevSkin
Theme URI: https://monodev.ir
Author: mohammad nouri
Author URI: https://monodev.ir
Version: 1.0 beta
*/
@font-face{font-family:IRANSansX;font-style:normal;font-weight:normal;src:url('assets/fonts/IRANSansXFaNum-Regular.woff') format('woff'),url('assets/fonts/IRANSansXFaNum-Regular.woff2') format('woff2')}
@font-face{font-family:IRANSansX;font-style:normal;font-weight:bold;src:url('assets/fonts/IRANSansXFaNum-Bold.woff') format('woff'),url('assets/fonts/IRANSansXFaNum-Bold.woff2') format('woff2')}
    body {
      margin: 0;
      font-family: 'IRANSansX', sans-serif;
      background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
      color: #fff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 2rem;
    }
    header {
      text-align: center;
      margin-bottom: 1rem;
    }
    header h1 {
      font-size: 2.2rem;
      margin: 0;
    }
    header p {
      font-size: 1.2rem;
      opacity: 0.85;
      margin-top: 0.5rem;
      font-weight: 600;
    }
    .avatar {
      width: 100px;
      height: 100px;
      border-radius: 20%;
      overflow: hidden;
      border: 3px solid #fff;
      margin: 0 auto 2.5rem auto;
    }
    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    main {
      background: rgba(255,255,255,0.1);
      border-radius: 15px;
      max-width: 600px;
      width: 100%;
      padding: 2rem;
    }
    section {
      margin-bottom: 2rem;
    }
    section:last-child {
      margin-bottom: 0;
    }
    h2 {
      padding-bottom: 0.3rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }
    p {
      line-height: 1.6;
      font-size: 1.1rem;
    }
    footer {
      margin-top: auto;
      padding: 1rem;
      font-size: 0.9rem;
      opacity: 0.7;
    }
    a {
      color: #fff;
      text-decoration: underline;
    }
    .project-frame {
      position: relative;
      max-width: 100%;
      border-radius: 5px;
      overflow: hidden;
      margin-bottom: 1.5rem;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .project-frame:hover {
      transform: scale(1.05);
    }
    .project-frame img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 5px;
    }
    .caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0.7rem 1rem;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      font-weight: 600;
      font-size: 1rem;
      text-align: center;
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
    }