@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;800&display=swap');

:root{
  --bg:#f7f3ed;
  --bg-soft:#fcf9f5;
  --text:#201a14;
  --muted:#6f675d;
  --card:#ffffff;
  --gold:#b89262;
  --gold-dark:#8d6b43;
  --dark:#17120d;
  --line:rgba(0,0,0,.06);
  --shadow:0 16px 40px rgba(0,0,0,.10);
  --radius:24px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Heebo',Arial,sans-serif;
  direction:rtl;
  color:var(--text);
  line-height:1.75;
  background:
    radial-gradient(circle at top right, rgba(184,146,98,.10), transparent 20%),
    linear-gradient(180deg, #faf7f3 0%, var(--bg) 45%, #f4eee6 100%);
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(calc(100% - 32px), var(--max));margin:0 auto}

.topbar{
  position:fixed;
  inset-inline:0;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  font-weight:800;
  font-size:1.12rem;
  letter-spacing:.2px;
}
.top-nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.top-nav a{
  color:#3b3127;
  font-weight:500;
}

.hero{
  min-height:100vh;
  position:relative;
  color:#fff;
  background:
    linear-gradient(rgba(17,12,8,.26), rgba(17,12,8,.58)),
    url('assets/images/hero.jpg') center center/cover no-repeat;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 62%, rgba(247,243,237,1) 100%);
}
.hero-inner{
  position:relative;
  z-index:1;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:120px 16px 90px;
}
.hero-box{
  max-width:880px;
  padding:34px 30px;
  border-radius:28px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(10px);
  box-shadow:0 20px 60px rgba(0,0,0,.18);
}
.hero-kicker{
  display:inline-block;
  margin-bottom:16px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.10);
  font-size:.95rem;
}
.hero h1{
  margin:0 0 14px;
  font-size:clamp(2.4rem,5vw,4.9rem);
  line-height:1.06;
  font-weight:800;
}
.hero p{
  margin:0 auto;
  max-width:760px;
  font-size:clamp(1rem,1.8vw,1.18rem);
  color:rgba(255,255,255,.96);
}

.promo{
  position:relative;
  z-index:2;
  margin-top:-26px;
}

.promo-bar span{
  display:inline-block;
  padding-inline-start:100%;
  animation:ticker 18s linear infinite;
}
@keyframes ticker{
  from{transform:translateX(0)}
  to{transform:translateX(-100%)}
}

.section{padding:86px 0}
.section-head{
  text-align:center;
  margin-bottom:30px;
}
.section-head h2{
  margin:0 0 10px;
  font-size:clamp(2rem,3vw,3rem);
  line-height:1.15;
  font-weight:800;
}
.section-head p{
  margin:0 auto;
  max-width:760px;
  color:var(--muted);
  font-size:1.04rem;
}

.stack{
  display:grid;
  gap:22px;
}
.content-card,.detail-card,.video-wrap{
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.content-card,.detail-card{
  padding:30px 28px;
}
.content-card p,.detail-card p{
  margin:0 0 12px;
  font-size:1.05rem;
}
.content-card p:last-child,.detail-card p:last-child{margin-bottom:0}

.circle-links{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
  margin-top:26px;
}
.circle-link{
  width:176px;
  height:176px;
  border-radius:50%;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  box-shadow:0 14px 28px rgba(0,0,0,.18);
  transition:transform .22s ease, box-shadow .22s ease;
}
.circle-link:hover{
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 20px 36px rgba(0,0,0,.22);
}
.circle-link::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.56));
}
.circle-link img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
}
.circle-link span{
  position:relative;
  z-index:1;
  width:100%;
  padding:14px 12px 16px;
  text-align:center;
  color:#fff;
  font-weight:700;
  font-size:1rem;
  text-shadow:0 2px 8px rgba(0,0,0,.35);
}

.video-wrap{
  max-width:860px;
  margin:0 auto;
  padding:24px;
}
.video-box{
  aspect-ratio:16/9;
  display:grid;
  place-items:center;
  border-radius:20px;
  overflow:hidden;
  background:linear-gradient(135deg,#d8c7ae,#a47d4d);
  color:#fff;
  text-align:center;
  padding:24px;
}
.video-box strong{
  display:block;
  font-size:1.35rem;
  margin-bottom:8px;
}
.video-box p{
  margin:0;
  max-width:560px;
  color:rgba(255,255,255,.95);
}

.bottom-actions{
  display:flex;
  justify-content:center;
  margin-top:28px;
}
.gallery-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:230px;
  padding:15px 26px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),var(--gold-dark));
  color:#fff;
  font-weight:700;
  box-shadow:0 12px 24px rgba(137,104,62,.22);
}

@media (max-width: 700px){
  .topbar-inner{
    flex-direction:column;
    justify-content:center;
    padding:10px 0;
    min-height:auto;
  }
  .top-nav{justify-content:center}
  .hero-inner{padding-top:150px}
  .circle-link{
    width:148px;
    height:148px;
  }
  .gallery-grid{grid-template-columns:1fr}
  .page-hero-media img{height:250px}
  .floating-social{
    left:14px; bottom:14px;
  }
}


.hero-inline-image{
  margin-top:26px;
}
.hero-inline-image img{
  width:100%;
  max-width:1040px;
  margin:0 auto;
  height:460px;
  object-fit:cover;
  object-position:center;
  border-radius:28px;
  box-shadow:0 18px 44px rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.14);
}
.gallery-section{
  margin-top:36px;
}
.gallery-section h2{
  margin:0 0 14px;
  font-size:1.6rem;
}
.gallery-intro{
  color:var(--muted);
  margin:0 0 8px;
  text-align:center;
}
@media (max-width:700px){
  .hero-inline-image img{
    height:280px;
    border-radius:22px;
  }
}


.gallery-page{
  padding:120px 0 70px;
}
.gallery-page .container{
  width:min(calc(100% - 40px), 1240px);
  margin:0 auto;
}
.gallery-category{
  margin-bottom:56px;
}
.gallery-category h2{
  margin:0 0 10px;
  text-align:center;
  font-size:2rem;
  color:#201a14;
}
.gallery-category p{
  margin:0 0 22px;
  text-align:center;
  color:#6f675d;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.gallery-grid img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.10);
  background:#eee;
}
.gallery-card{
  background:rgba(255,255,255,.9);
  border-radius:24px;
  padding:18px;
  box-shadow:0 12px 32px rgba(0,0,0,.08);
}
.gallery-hero{
  text-align:center;
  margin-bottom:34px;
}
.gallery-hero h1{
  margin:0 0 12px;
  font-size:clamp(2.1rem,4vw,3.3rem);
}
.gallery-hero p{
  margin:0 auto;
  max-width:780px;
  color:#6f675d;
}
@media (max-width: 950px){
  .gallery-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 640px){
  .gallery-grid{
    grid-template-columns:1fr;
  }
  .gallery-grid img{
    height:220px;
  }
}



/* ACCESSIBILITY */


.accessibility-menu{
  position:fixed;
  right:90px;
  bottom:90px;
  background:#fff;
  border-radius:18px;
  padding:14px;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
  display:none;
  z-index:3000;
  min-width:220px;
}

.accessibility-menu button{
  display:block;
  width:100%;
  margin:8px 0;
  padding:12px;
  border:none;
  border-radius:10px;
  background:#f5f2ee;
  cursor:pointer;
  font-family:'Heebo',Arial,sans-serif;
}

.accessibility-menu.open{
  display:block;
}

.high-contrast{
  background:#000!important;
  color:#fff!important;
}

.high-contrast a{
  color:#00ffff!important;
}

.grayscale{
  filter:grayscale(100%);
}


/* HEADER ICONS */
.header-tools{
  display:flex;
  align-items:center;
  gap:14px;
}

.header-tool{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  transition:.2s ease;
}

.header-tool:hover{
  transform:translateY(-2px);
}

.header-tool .icon{
  width:22px;
  height:22px;
  display:block;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
}

.header-tool.whatsapp .icon{
  background-image:url('../icons/whatsapp.svg');
}

.header-tool.instagram .icon{
  background-image:url('../icons/instagram.svg');
}

.header-tool.email .icon{
  background-image:url('../icons/email.svg');
}

.header-tool.accessibility .icon{
  background-image:url('../icons/accessibility.svg');
}

.hero-video-wrap{
  width:100%;
  max-width:920px;
  height:520px;
  margin:0 auto;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.hero-video-wrap video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  background:#000;
}

@media (max-width:700px){
  .hero-video-wrap{
    height:420px;
  }

  .header-tools{
    margin-top:8px;
  }
}


.header-tools{
  justify-self:start;
  display:flex;
  align-items:center;
  gap:12px;
}

.header-tool{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(184,146,98,.10);
  border:1px solid rgba(184,146,98,.16);
  transition:.22s ease;
}

.header-tool:hover{
  transform:translateY(-2px);
  background:rgba(184,146,98,.18);
}

.header-tool .icon{
  width:20px;
  height:20px;
  display:block;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
}

.header-tool.whatsapp .icon{
  background-image:url('../icons/whatsapp.svg');
}

.header-tool.instagram .icon{
  background-image:url('../icons/instagram.svg');
}

.header-tool.email .icon{
  background-image:url('../icons/email.svg');
}

.header-tool.accessibility .icon{
  background-image:url('../icons/accessibility.svg');
}


.page-hero{
  padding-top:120px;
}

.page-hero-box{
  display:grid;
  gap:34px;
}

.page-hero-media{
  width:100%;
  height:520px;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.16);
}

.page-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

.page-hero-copy{
  text-align:center;
  max-width:900px;
  margin:0 auto;
}

.page-hero-copy h1{
  margin-bottom:14px;
  font-size:clamp(2.2rem,4vw,3.8rem);
}

.page-hero-copy p{
  font-size:1.08rem;
  color:var(--muted);
}

@media (max-width:700px){

  .page-hero{
    padding-top:150px;
  }

  .page-hero-media{
    height:300px;
    border-radius:24px;
  }

  .page-hero-copy{
    text-align:right;
  }
}
