/* استایل‌های صفحه لندینگ */
@font-face {
  font-family: "IRANYekanMedium";
  src: url("../font/IRANYekanMedium.ttf");
}
.iranfont{
  font-family: IRANYekanMedium !important;
}
/* استایل‌های عمومی */
body {
  font-family: Inter, sans-serif;
  margin: 0;
  padding: 0;
  background-color: black;
  color: white;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: white;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, #000000, #1a1a1a);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(76, 0, 255, 0.1), transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(0, 183, 255, 0.1), transparent 50%);
}

.hero-content {
  flex: 1;
  z-index: 1;
  padding-right: 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ffffff, #a1a1aa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #a1a1aa;
  line-height: 1.5;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 230px;
    left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  animation: fadeInOut 2s infinite;
}

.scroll-arrow {
  width: 30px;
  height: 30px;
  border-right: 3px solid #a1a1aa;
  border-bottom: 3px solid #a1a1aa;
  transform: rotate(45deg);
  margin-bottom: 10px;
  animation: bounce 2s infinite;
}

.scroll-text {
  color: #a1a1aa;
  font-size: 14px;
  margin: 0;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  40% {
    transform: translateY(-10px) rotate(45deg);
  }
  60% {
    transform: translateY(-5px) rotate(45deg);
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.hero-cta {
  margin-top: 30px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(to right, #3f3f46, #27272a);
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid #3f3f46;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  background: linear-gradient(to right, #4f4f56, #37373a);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background-color: #1c1b1d;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 8px solid #27272a;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: #000000;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

/* .app-preview {
  padding: 20px;
} */

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.preview-header h2 {
  font-size: 2rem;
  margin: 0;
}

.preview-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.preview-card {
  background-color: #1c1b1d;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.preview-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.preview-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #3f3f46;
}

.preview-card-title {
  font-size: 1rem;
  color: white;
}

.preview-card-value {
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
}

/* Features Section */
.features {
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(76, 0, 255, 0.05), transparent 40%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background-color: #1c1b1d;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: #27272a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: #a1a1aa;
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.feature-description {
  color: #a1a1aa;
  line-height: 1.6;
  margin-top: auto;
}

/* Currencies Preview Section */
.currencies-preview {
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.currencies-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 183, 255, 0.05), transparent 40%);
}

.currency-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.currency-preview-card {
  background-color: #1c1b1d;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.currency-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.currency-preview-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.currency-preview-flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.currency-preview-info {
  flex: 1;
}

.currency-preview-name {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 5px;
}

.currency-preview-code {
  color: #71717a;
  font-size: 0.9rem;
}

.currency-preview-value {
  font-size: 1.8rem;
  font-weight: 500;
  color: white;
  margin-top: 10px;
}

.currencies-cta {
  text-align: center;
  margin-top: 50px;
}

.cta-button-secondary {
  display: inline-block;
  background-color: transparent;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #3f3f46;
}

.cta-button-secondary:hover {
  background-color: #3f3f46;
  transform: translateY(-3px);
}

/* About Section */
.about {
  background-color: #0a0a0a;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(76, 0, 255, 0.05), transparent 40%);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text {
  color: #a1a1aa;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: #0a0a0a;
  padding: 60px 0 30px;
  border-top: 1px solid #27272a;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 2rem;
  margin: 0 0 10px;
  color: white;
}

.footer-logo p {
  color: #a1a1aa;
  margin: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #27272a;
}

.footer-bottom p {
  color: #71717a;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }
  
  .hero-content {
    padding-right: 0;
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-logo {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .features-grid,
  .currency-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .phone-mockup {
    width: 250px;
    height: 500px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .phone-mockup {
    width: 220px;
    height: 440px;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}