<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>نور جمز - اعتماد و حس خوب</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Vazirmatn', 'Tahoma', sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #ffd89b 100%);
background-size: 400% 400%;
animation: gradientShift 15s ease infinite;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
overflow: hidden;
position: relative;
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.container {
text-align: center;
z-index: 10;
position: relative;
}
/* الماس مرکزی */
.diamond {
width: 150px;
height: 150px;
margin: 0 auto 40px;
position: relative;
animation: float 3s ease-in-out infinite;
}
.diamond-shape {
width: 100%;
height: 100%;
background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #d4d4d4 100%);
transform: rotate(45deg);
box-shadow:
0 0 60px rgba(255, 255, 255, 0.8),
0 0 100px rgba(212, 175, 55, 0.6),
inset 0 0 30px rgba(255, 255, 255, 0.5);
animation: glow 2s ease-in-out infinite;
position: relative;
}
.diamond-shape::before {
content: '';
position: absolute;
top: 20%;
left: 20%;
width: 60%;
height: 60%;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
border-radius: 50%;
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
@keyframes glow {
0%, 100% {
box-shadow:
0 0 60px rgba(255, 255, 255, 0.8),
0 0 100px rgba(212, 175, 55, 0.6),
inset 0 0 30px rgba(255, 255, 255, 0.5);
}
50% {
box-shadow:
0 0 80px rgba(255, 255, 255, 1),
0 0 150px rgba(212, 175, 55, 0.9),
inset 0 0 50px rgba(255, 255, 255, 0.8);
}
}
/* ذرات نورانی */
.particle {
position: absolute;
width: 10px;
height: 10px;
background: radial-gradient(circle, #ffffff 0%, rgba(255, 255, 255, 0) 70%);
border-radius: 50%;
animation: orbit 8s linear infinite;
}
.particle:nth-child(1) { animation-delay: 0s; }
.particle:nth-child(2) { animation-delay: -2s; }
.particle:nth-child(3) { animation-delay: -4s; }
.particle:nth-child(4) { animation-delay: -6s; }
@keyframes orbit {
0% {
transform: rotate(0deg) translateX(120px) rotate(0deg);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: rotate(360deg) translateX(120px) rotate(-360deg);
opacity: 0;
}
}
/* متن */
.text-container {
opacity: 0;
animation: fadeInUp 2s ease forwards;
animation-delay: 1s;
}
.main-text {
font-size: 2.5rem;
color: #ffffff;
text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.3);
margin-bottom: 20px;
font-weight: bold;
}
.sub-text {
font-size: 1.3rem;
color: #fff8e7;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
line-height: 1.8;
}
@keyframes fadeInUp {
0% {
opacity: 0;
transform: translateY(30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
/* قلبهای کوچک */
.heart {
position: absolute;
font-size: 1.5rem;
color: #ff6b9d;
opacity: 0;
animation: floatHeart 6s ease-in-out infinite;
}
.heart:nth-child(1) {
left: 10%;
animation-delay: 0s;
}
.heart:nth-child(2) {
right: 15%;
animation-delay: -2s;
}
.heart:nth-child(3) {
left: 20%;
bottom: 20%;
animation-delay: -4s;
}
@keyframes floatHeart {
0% {
transform: translateY(100vh) scale(0);
opacity: 0;
}
50% {
opacity: 0.8;
}
100% {
transform: translateY(-100px) scale(1.2);
opacity: 0;
}
}
/* ریسپانسیو */
@media (max-width: 768px) {
.main-text {
font-size: 1.8rem;
}
.sub-text {
font-size: 1rem;
}
.diamond {
width: 100px;
height: 100px;
}
}
</style>
</head>
<body>
<!-- قلبهای شناور -->
<div class="heart">💖</div>
<div class="heart">💝</div>
<div class="heart">💗</div>
<div class="container">
<!-- الماس مرکزی -->
<div class="diamond">
<div class="diamond-shape"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
<div class="particle"></div>
</div>
<!-- متن -->
<div class="text-container">
<div class="main-text">اعتماد شما، گنجینه ماست</div>
<div class="sub-text">
در نور جمز، هر سنگ داستانی از عشق و دوستی دارد<br>
ما با قلب، برای قلبهای شما میسازیم
</div>
</div>
</div>
</body>
</html>