/* ----------------------------------------------- */
/* BASIC SETUP */
/* ----------------------------------------------- */

html, body {
	background-color: #ffffff;
	color: #444444;
	font-family: 'Noto Sans Arabic', sans-serif;
	font-size: 1.14rem;
	font-weight: 400;
	font-style: normal;
	height: 100%;
	text-rendering: optimizeLegibility;
	scroll-behavior: smooth; }
p, ul { line-height: 1.6; margin: 20px 0px; }
a { color: #000000; }
h1 { font-size: 1.14rem; font-weight: 400; }
h2 {
	font-size: 1.4rem; font-weight: 700;
	text-align: center;
	margin-bottom: 40px; }
h3, b { font-size: 1.14rem; font-weight: 700; }
li { margin-right: 20px; }
.sml { font-size: 0.75rem; }
.centered { text-align: center; }
.spaced { padding-top: 20px; }

/* ----------------------------------------------- */
/* FOLD */
/* ----------------------------------------------- */

.wrapper {
	position: relative;
  height: 100vh; width: 100%;
	overflow: hidden; }
.image-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: image-scroll 120s linear infinite;
  will-change: transform; }
.image-set {
  display: flex;
  flex-shrink: 0;
  height: 100%; }
.image-set img {
  display: block;
  flex: 0 0 auto;
  width: calc(100vh * 480 / 1080);
  height: 100vh;
  object-fit: cover; }
@keyframes image-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}
.banner {
	position: absolute; bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 20px;
  text-align: center;
	margin-top: -75px; }
.ftr {
	display: flex;
	flex-wrap: wrap;
	justify-content: center; }
.ftr-div {
	padding: 10px;
	flex: 1 1 25%;
	min-width: 200px;
	display: flex;
	justify-content: center; }
.iconlink {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 200px;
	color: #ffffff;
	text-decoration: none; }
.scroll-hint {
  font-size: 0.7rem;
  animation: bounce 1.2s infinite;
  line-height: 1; }
@keyframes bounce {
  0%, 100% {
    transform: translateY(-2px);
    opacity: 0.6; }
  50% {
    transform: translateY(3px);
    opacity: 1; }
}
.social-links {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	width: 200px; }
.social-links a {
    display: inline-flex;
    align-items: center; }
.social-links img, .iconlink img { display: block; }

/* ----------------------------------------------- */
/* LANGUAGE */
/* ----------------------------------------------- */

.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999; }
.language-toggle { display: none; }
.current-language {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer; }
.language-menu {
  position: absolute;
  top: 56px; right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; }
.language-toggle:checked ~ .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); }
.language-option {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center; }

/* ----------------------------------------------- */
/* CONTENT */
/* ----------------------------------------------- */

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px; }
.narrow {
	max-width: 960px;
	margin: 0px auto; }
.content { width: 100%; padding: 20px; }

/* ----------------------------------------------- */
/* INFO & PHOTOS */
/* ----------------------------------------------- */

.content-row {
  display: flex;
  gap: 40px;
  margin-bottom: 60px; }
.content-txt {
  display: flex;
  gap: 40px;
  margin-bottom: 60px; }
.content-row { align-items: center; }
.content-txt { align-items: flex-start; }
.content-row.reverse {
  flex-direction: row-reverse; }
.iimage, .itext { flex: 1; }
.fimage { padding: 20px 0px; }
.iimage img, .fimage img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px; }
figure, picture { margin: 0; padding: 0; }
figcaption { margin-top: 10px; font-size: 0.9rem; }

/* ----------------------------------------------- */
/* VIDEO */
/* ----------------------------------------------- */

.vidf { 
    max-width: 960px;
    margin: 30px auto 50px auto; }
.vid {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; }
.vid iframe {
    position:absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 10px; }

/* ----------------------------------------------- */
/* COMMON INFO & FAQ */
/* ----------------------------------------------- */

.facts, .faq { margin-top: 40px; }
.legal { padding: 0px 20px 20px 20px; }

/* ----------------------------------------------- */
/* MEDIA QUERIES */
/* ----------------------------------------------- */

@media (max-width: 960px) {
  .content-row, .content-row.reverse {
  	flex-direction: column-reverse; }
	.content-txt {
		flex-direction: column;	}
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-hint { animation: none; }
  .image-track { animation-play-state: paused; }
}