﻿@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700;800&family=Montserrat:wght@400;500;700;800&display=swap');

/* تم إنشاء ملف style.css لتنسيق صفحات الموقع. */
/* الخط المستخدم: El Messiri من Google Fonts. */


:root {
  --sm-font-main: 'El Messiri', 'Montserrat', sans-serif;
}

body {
  margin: 0;
  font-family: var(--sm-font-main);
  background: #ffffff;
  color: #222;
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  top: 40%;
  transform: translateY(-50%);
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #ffc300;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.why-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #f5f5f5;
}

.why-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.why-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.why-content p {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  color: #555;
}

.why-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.icon-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.icon-box span {
  font-size: 2rem;
}

.quick-links {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 3rem 1rem;
  background: #fff;
  gap: 2rem;
}

.card {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  max-width: 300px;
  text-align: center;
  position: relative;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: #0077b6;
  font-weight: bold;
  text-decoration: none;
}

.gallery-section {
  padding: 3rem 1rem;
  background: #f0f8ff;
  text-align: center;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.owner-section {
  text-align: center;
  padding: 3rem 1rem;
}

.owner-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

footer {
  background: #222;
  color: #fff;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Luxury visual system compiled from assets/scss/luxury.scss */
:root {
  --sm-ink: #06211f;
  --sm-muted: #5d716f;
  --sm-sea: #087d89;
  --sm-sea-2: #12b7aa;
  --sm-green: #28b668;
  --sm-gold: #f3c36b;
  --sm-sand: #f7f1e6;
  --sm-foam: #eefbf8;
  --sm-white: #ffffff;
  --sm-glass: rgba(255, 255, 255, 0.74);
  --sm-shadow: 0 24px 70px rgba(4, 35, 37, 0.16);
  --sm-shadow-soft: 0 14px 36px rgba(4, 35, 37, 0.12);
  --sm-radius: 8px;
  --sm-radius-lg: 18px;
  --sm-max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 15% 12%, rgba(18, 183, 170, .10), transparent 28rem),
    radial-gradient(circle at 82% 28%, rgba(243, 195, 107, .11), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 38%, #ffffff 100%);
  color: var(--sm-ink);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

body a {
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

header {
  backdrop-filter: blur(14px);
}

header > div:first-child {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0 0 24px 24px;
  background: linear-gradient(135deg, rgba(4, 32, 34, .52), rgba(6, 85, 88, .22));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
}

.nav-link,
.dropdown .dropbtn {
  letter-spacing: .01em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, .28);
}

.nav-link:hover,
.dropdown .dropbtn:hover {
  color: var(--sm-gold) !important;
}

.dropdown-content {
  border: 1px solid rgba(8, 125, 137, .12);
  border-radius: var(--sm-radius);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .18) 42%, rgba(255, 255, 255, .10) 100%),
    radial-gradient(circle at 50% 48%, rgba(18, 183, 170, .20), transparent 28rem);
  z-index: 0;
}

.hero-content {
  max-width: 920px;
  text-shadow: 0 14px 42px rgba(0, 0, 0, .38);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 5.8rem) !important;
  line-height: .98;
  letter-spacing: 0;
}

.hero-content p {
  max-width: 740px;
  margin-inline: auto;
  line-height: 1.75;
}

.btn,
.hero-content .btn,
.read-more,
.visitor-feature__button,
.visitor-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--sm-gold), #fff1bd) !important;
  color: #10251d !important;
  box-shadow: 0 14px 34px rgba(144, 101, 20, .20);
  font-weight: 800;
  text-decoration: none;
}

.btn:hover,
.hero-content .btn:hover,
.read-more:hover,
.visitor-feature__button:hover,
.visitor-hero__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(144, 101, 20, .27);
}

section {
  position: relative;
}

.modern-gallery-section,
.activities-section,
.practical-section {
  background:
    linear-gradient(180deg, rgba(238, 251, 248, .76), rgba(255, 255, 255, .96)),
    repeating-linear-gradient(135deg, rgba(8, 125, 137, .035) 0 1px, transparent 1px 18px) !important;
}

.gallery-tile,
.act-card,
.info-card,
.modern-gallery-grid button,
section[style*="background-color: #fafafa"] > div:last-child > div {
  border: 1px solid rgba(8, 125, 137, .10) !important;
  border-radius: var(--sm-radius-lg) !important;
  box-shadow: var(--sm-shadow-soft) !important;
}

.gallery-tile,
.act-card,
.info-card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, filter .35s ease;
}

.gallery-tile:hover,
.act-card:hover,
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sm-shadow) !important;
  border-color: rgba(18, 183, 170, .26) !important;
}

.visitor-feature {
  padding: clamp(4rem, 8vw, 7rem) 1rem;
  background:
    linear-gradient(120deg, rgba(3, 38, 44, .88), rgba(8, 125, 137, .58)),
    url("../../pict/٢٠٢٦٠٣١٩_١٠٣٢١٥.jpg") center/cover;
  color: #fff;
  overflow: hidden;
}

.visitor-feature::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 26px;
  pointer-events: none;
}

.visitor-feature__inner {
  max-width: var(--sm-max);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .72fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.visitor-feature__media {
  position: relative;
  min-height: 430px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .32);
}

.visitor-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .65s ease;
}

.visitor-feature__media:hover img {
  transform: scale(1.08);
}

.visitor-feature__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, .58));
}

.visitor-feature__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  color: #fff4ca;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.visitor-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin: 1rem 0 0;
}

.visitor-feature__actions .visitor-feature__button {
  margin: 0;
}

.visitor-feature h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1.02;
}

.visitor-feature p {
  max-width: 650px;
  margin: 1.1rem 0 1.8rem;
  color: rgba(255, 255, 255, .86);
  font-size: 1.08rem;
  line-height: 1.85;
}

.visitor-feature__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.6rem;
}

.visitor-feature__stats span {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--sm-radius);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, .76);
}

.visitor-feature__stats strong {
  display: block;
  color: #fff;
  font-size: 1.45rem;
}

.visitor-page {
  background: #f7fbfa;
}

.visitor-hero {
  min-height: 74vh;
  display: flex;
  align-items: center;
  padding: 9rem 1rem 5rem;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(4, 28, 32, .84), rgba(8, 125, 137, .52)),
    url("../../pict/dji_fly_20251213_093824_0005_1765698533422_photo.jpg") center/cover;
}

.visitor-hero__inner,
.visitor-gallery,
.visitor-videos {
  max-width: var(--sm-max);
  margin: auto;
}

.visitor-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.55rem, 6.8vw, 5.7rem);
  line-height: .98;
}

.visitor-hero p {
  max-width: 690px;
  margin: 1.25rem 0 1.8rem;
  color: rgba(255, 255, 255, .86);
  line-height: 1.85;
  font-size: 1.08rem;
}

.visitor-gallery,
.visitor-videos {
  padding: clamp(4rem, 7vw, 6rem) 1rem;
}

.visitor-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.visitor-section-head h2 {
  margin: 0;
  color: var(--sm-ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.visitor-section-head p {
  max-width: 440px;
  margin: 0;
  color: var(--sm-muted);
  line-height: 1.75;
}

.visitor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 245px;
  gap: 1rem;
}

.visitor-card {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 18px;
  background: #0b302f;
  box-shadow: var(--sm-shadow-soft);
  cursor: pointer;
}

.visitor-card:nth-child(1),
.visitor-card:nth-child(8) {
  grid-column: span 2;
  grid-row: span 2;
}

.visitor-card img,
.visitor-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .6s ease;
}

.visitor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .58));
  opacity: .84;
}

.visitor-card span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  text-align: left;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .35);
}

.visitor-card:hover img,
.visitor-card:hover video,
.visitor-card:focus-visible img,
.visitor-card:focus-visible video {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}

.visitor-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.visitor-video-card {
  overflow: hidden;
  border-radius: 18px;
  background: #0b302f;
  box-shadow: var(--sm-shadow-soft);
}

.visitor-video-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #082423;
}

.visitor-video-card__body {
  padding: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #082423, #087d89);
}

.visitor-video-card__body h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
}

.visitor-video-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.55;
}

.visitor-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(3, 18, 20, .88);
}

.visitor-lightbox.is-open {
  display: flex;
}

.visitor-lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .48);
}

.visitor-lightbox button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--sm-ink);
  font-size: 1.6rem;
  cursor: pointer;
}

.reveal-lift {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-lift.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .visitor-feature__inner,
  .visitor-section-head {
    display: block;
  }

  .visitor-feature__media {
    margin-top: 2rem;
  }

  .visitor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visitor-video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  header > div:first-child {
    border-radius: 0 0 18px 18px;
  }

  .visitor-feature,
  .visitor-gallery,
  .visitor-videos {
    padding-inline: .85rem;
  }

  .visitor-feature__stats,
  .visitor-grid {
    grid-template-columns: 1fr;
  }

  .visitor-card:nth-child(1),
  .visitor-card:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }

  .visitor-card {
    min-height: 250px;
  }

  .visitor-feature__media,
  .visitor-feature__media img {
    min-height: 320px;
  }
}




/* Responsive mobile polish added for the Socotra media refresh */
:root {
  --sm-logo-green: #8ee76b;
  --sm-logo-tan: #9b8178;
  --sm-logo-dark: #073b3f;
}

.section-reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: none;
  transition: opacity .8s ease var(--reveal-delay, 0ms), transform .8s cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms), filter .8s ease var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.visitor-hero {
  background:
    linear-gradient(115deg, rgba(4, 28, 32, .84), rgba(8, 125, 137, .52)),
    url("../../pict/dji_fly_20251213_093824_0005_1765698533422_photo.jpg") center/cover !important;
}

@media (max-width: 640px) {
  .hero-section {
    min-height: 100svh !important;
  }

  .hero-content {
    width: min(100%, 92vw);
    padding-inline: .35rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 12vw, 3.25rem) !important;
    line-height: 1.05 !important;
  }

  .hero-content p {
    font-size: clamp(1rem, 5vw, 1.18rem) !important;
    line-height: 1.65 !important;
  }

  .floating-buttons {
    right: 14px !important;
    bottom: 72px !important;
  }

  .floating-buttons a {
    width: 48px !important;
    height: 48px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .section-reveal,
  .reveal-lift {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

body.menu-open .floating-buttons {
  display: none !important;
}

.socotra-map-section,
.modern-gallery-section,
.visitor-feature,
.activities-section,
.practical-section {
  scroll-margin-top: 112px;
}

@media (max-width: 640px) {
  .socotra-map-section,
  .modern-gallery-section,
  .visitor-feature,
  .activities-section,
  .practical-section {
    scroll-margin-top: 96px;
  }
}

html,
body,
button,
input,
textarea,
select {
  font-family: var(--sm-font-main) !important;
  letter-spacing: 0;
}

body p,
body a,
body span,
body li,
body label,
body small,
body strong,
body em,
body figcaption,
body blockquote {
  font-family: var(--sm-font-main) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.desktop-menu,
.nav-link,
.dropdown .dropbtn,
.mobile-title,
.mobile-links a,
.mobile-submenu span {
  font-family: var(--sm-font-main) !important;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  gap: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(142, 231, 107, .24), transparent 22rem),
    linear-gradient(145deg, #041e21 0%, #073b3f 48%, #0b2a2d 100%);
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity .65s ease, visibility .65s ease;
}

.site-preloader__mark {
  position: relative;
  width: clamp(142px, 18vw, 214px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.site-preloader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .24);
  border-top-color: rgba(142, 231, 107, .95);
  border-right-color: rgba(255, 255, 255, .72);
  animation: preloaderSpin 1.35s linear infinite;
  box-shadow: 0 0 42px rgba(142, 231, 107, .18);
}

.site-preloader__logo {
  width: 72%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 18px 28px rgba(0, 0, 0, .34));
  animation: preloaderLogoPulse 1.8s ease-in-out infinite;
}

.site-preloader__brand {
  margin-top: -1.2rem;
  display: grid;
  gap: .25rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
}

.site-preloader__brand span {
  font-size: clamp(1.15rem, 3vw, 1.7rem);
}

.site-preloader__brand small {
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  font-weight: 700;
  text-transform: none;
}

body.preloading {
  overflow: hidden;
}

body.preloader-done .site-preloader {
  opacity: 0;
  visibility: hidden;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes preloaderLogoPulse {
  0%, 100% { transform: scale(1); opacity: .94; }
  50% { transform: scale(1.035); opacity: 1; }
}

@media (max-width: 640px) {
  .site-preloader__mark {
    width: clamp(132px, 42vw, 178px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader,
  .site-preloader__ring,
  .site-preloader__logo {
    animation: none;
    transition: none;
  }
}
