.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    direction: rtl;
    color: #000000;               
    background: url('https://danativara.com//wp-content/uploads/Water-dance.jpg') center/cover no-repeat;
    background-color: #001133;     /* رنگ fallback تا لود شدن عکس */
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.45), rgba(0,50,100,0.25)); /* overlay شفاف‌تر برای خوانایی متن مشکی */
    z-index: 0;
    pointer-events: none;
}

.hero-content,
.hero-scroll-hint {
    position: relative;
    z-index: 1;
}

/*.hero-content {*/
/*    background-color: #001133;*/
/*    max-width: 1100px;*/
/*    padding: 0 20px;*/
/*}*/
.hero-content {
    background-color: #001133;
    max-width: 900px;
    padding: 50px 40px; /* padding خوب برای تنفس محتوا */
    border-radius: 30px; /* مقدار پیشنهادی — نرم و مدرن */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); /* اختیاری: سایه ملایم برای عمق بیشتر */
    backdrop-filter: blur(10px); /* اختیاری ولی خیلی قشنگ: بلور پس‌زمینه پشت جعبه */
    border: 1px solid rgba(0, 0, 0, 0.1); /* اختیاری: خط مرزی خیلی ظریف */
    position: relative;
    z-index: 1;
}

.hero-slogan,
.hero-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 20px auto;
    max-width: 900px;
    color: #ffffff;  
    opacity: 0.95;
}

.hero-slogan .block,
.hero-text .block {
    display: block;
    margin-top: 1em;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    font-size: 1rem;
    opacity: 1;
    color: #ffffff;                /* رنگ سفید برای دیده شدن روی پس‌زمینه */
}

.scroll-arrow {
    width: 30px;
    margin-top: 10px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    margin: 15px auto 0;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(10px); }
    60% { transform: translateX(-50%) translateY(5px); }
}

.hero-logo-wrapper {
    margin-bottom: 10px;
    overflow: hidden; /* برای انیمیشن y ورود */
}

.hero-logo {
    max-width: 100px;              /* اندازه دلخواه — تست کن و تغییر بده */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transform-origin: center center; /* مرکز دقیق برای scale */
}

.gallery-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #111; /* فقط برای تست */
}

.gallery-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.gallery-items {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: max-content;
  height: 70vh;
  padding: 0 5vw;
}

.gallery-item {
  flex: 0 0 auto;
  width: 500px;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

