:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F2F2F2;
    --gray-dark: #848484;
    --orange: #E07A3F;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans Arabic', sans-serif;
}

body {
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

/* =====================================================
   HEADER (FIXED & RESTORED)
   ===================================================== */
header {
    padding: 24px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--orange) 0%,
        var(--orange) 35%,
        transparent 35%
    );
}
.logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo img {
    height: 120px;          /* ↓ reduced from 48px */
    width: auto;
    object-fit: contain;
    display: block;
}


nav {
    display: flex;
    gap: 34px;
    align-items: center;
}

nav a {
    font-weight: 700;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* HEADER CTA – hover restored */
nav .btn {
    padding: 12px 30px;
    background: var(--black);
    color: var(--white);
    border-radius: 40px;
    font-weight: 800;
    transition: background 0.3s ease;
}

nav .btn:hover {
    background: var(--orange);
}

/* =====================================================
   HERO (HEIGHT & CTA FIXED)
   ===================================================== */
.hero {
    padding: 90px 70px; /* reduced height */
    background: var(--gray-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.hero h2 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
}

.hero h2 span { color: var(--orange); }

.hero p {
    margin-top: 18px;
    font-size: 19px;
    color: var(--gray-dark);
    max-width: 520px;
}

/* HERO CTA – aligned & grounded */
.hero .btn {
    margin-top: 26px;
    padding: 16px 42px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50px;
    font-weight: 800;
}

/* HERO IMAGE STACK */
.hero-art {
    position: relative;
    height: 360px; /* reduced */
}

.hero-art div {
    position: absolute;
    width: 240px;
    height: 320px;
    border-radius: 26px;
    background-size: cover;
    background-position: center;
}

.hero-art .one {
    top: 30px;
    left: 0;
    background-image: url("https://images.unsplash.com/photo-1503455637927-730bce8583c0");
}

.hero-art .two {
    top: 0;
    left: 70px;
    background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29");
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}

.hero-art .three {
    top: 70px;
    left: 140px;
    background-image: url("https://images.unsplash.com/photo-1513364776144-60967b0f800f");
}

/* =====================================================
   TRUST STRIP — LIGHT GRADIENT (KEPT)
   ===================================================== */
.trust-strip {
    padding: 25px 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    background: linear-gradient(
        180deg,
        rgba(224, 122, 63, 0.12) 0%,
        rgba(224, 122, 63, 0.04) 100%
    );
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
}

.trust-icon svg {
    fill: none;
    stroke: var(--orange);
    stroke-width: 2;
    width: 45px;
}

.trust-item strong {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 2px;
}

.trust-item span {
    font-size: 15px;
    color: var(--gray-dark);
}

/* =====================================================
   SECTIONS / CARDS / GALLERY / CTA / FOOTER
   (UNCHANGED FROM YOUR VERSION)
   ===================================================== */
.section {
    padding: 30px 70px;
    max-width: 100%;
    margin: auto;
}

.section h3 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

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

.card .content {
    padding: 32px;
}

.card h4 {
    color: var(--orange);
    font-size: 22px;
    margin-bottom: 10px;
}

.gallery {
    background: var(--gray-light);
    padding: 30px 70px;
}
.gallery h3 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.gallery-box {
    height: 240px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
}
/* =====================================================
   CTA — ORANGE GRADIENT + COMPACT HEIGHT
   ===================================================== */
.cta {
    text-align: center;
    padding: 30px 70px;   /* ~60% reduced from 140px */
    color: var(--white);

    background: linear-gradient(
        135deg,
        #E07A3F 0%,
        rgba(224, 122, 63, 0.85) 45%,
        rgba(224, 122, 63, 0.65) 100%
    );
}

.cta h2 {
    font-size: 36px;      /* slightly tighter to match height */
    font-weight: 900;
}

.cta p {
    margin-top: 12px;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
}

/* CTA BUTTON */
.cta .btn {
    margin-top: 22px;
    background: var(--black);
    color: var(--white);
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 800;
    transition: background 0.3s ease;
}

.cta .btn:hover {
    background: rgba(0,0,0,0.85);
}

/* ===== ABOUT PAGE ===== */
.about-header {
  padding: 50px 80px;
  background: #F2F2F2;
}
.about-header h2{font-size: 45px; font-weight: 900;}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-grid {
  align-items: center;
}

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse > * {
  direction: ltr;
}

.info-card h3 {
  margin-bottom: 0;
}

.about-text p {
  color: #555;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  max-height: 420px;   /* KEY FIX */
  object-fit: cover;
  border-radius: 12px;
  display: block;
}


/* Vision & Mission */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.info-card {
  padding: 30px;
}

/* Light background */
.bg-light {
  background: #F2F2F2;
}
.section-line {
  display: block;
  width: 120px;
  height: 3px;
  background: #E07A3F; /* Artistic Orange */
  border-radius: 2px;
  margin-bottom: 15px;
}




/* Workshop PAGE */
.page-hero {
    padding: 70px 70px 50px;
    background: var(--gray-light);
}

.page-hero h1 {
    font-size: 46px;
    font-weight: 900;
}

.page-hero p {
    margin-top: 16px;
    font-size: 18px;
    color: var(--gray-dark);
    max-width: 700px;
}

/* WORKSHOP LIST */
.workshops {
    padding: 80px 70px;
    max-width: 1300px;
    margin: auto;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* WORKSHOP CARD */
.workshop-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
}

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

.workshop-content {
    padding: 32px;
    flex: 1;
}

.workshop-content h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--orange);
}

.workshop-content p {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 18px;
}

/* META INFO */
.workshop-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    font-size: 14px;
    margin-bottom: 20px;
}

.meta-item span {
    display: block;
    font-weight: 700;
    color: var(--black);
}

.meta-item small {
    color: var(--gray-dark);
}

/* STATUS */
.status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.status.open {
    background: rgba(224, 122, 63, 0.15);
    color: var(--orange);
}

.status.full {
    background: rgba(0,0,0,0.08);
    color: var(--gray-dark);
}

/* ACTION */
.workshop-action {
    padding: 0 32px 32px;
}

.workshop-action a {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 40px;
    font-weight: 800;
    background: var(--black);
    color: var(--white);
}

.workshop-action a.disabled {
    background: #ccc;
    pointer-events: none;
}

/* INFO NOTE */
.workshop-note {
    margin-top: 60px;
    padding: 30px;
    background: var(--gray-light);
    border-radius: 20px;
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* =====================================================
   WORKSHOP HERO — WATERCOLOUR ART (INSTITUTIONAL)
   ===================================================== */
.workshop-hero {
    position: relative;
    padding: 90px 70px;
    background-image: url('../images/workshop-hero.png');
    background-size: cover;
    background-position: center;
}

/* soft institutional overlay */
.workshop-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.90) 0%,
        rgba(255,255,255,0.45) 100%
    );
}

/* content above overlay */
.workshop-hero .hero-content {
    position: relative;
    max-width: 800px;
}

.workshop-hero h1 {
    font-size: 46px;
    font-weight: 900;
    color: #E07A3F;
}

.workshop-hero p {
    margin-top: 16px;
    font-size: 18px;
    color: #000000;
    max-width: 700px;
}

/* =====================================================
   WORKSHOP CARD — INSTITUTIONAL UPGRADE
   ===================================================== */
.workshop-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-6px);
}

/* =====================================================
   WORKSHOP STATUS — UNIFIED DESIGN
   ===================================================== */
.workshop-image {
    position: relative;
}

/* unified base style */
.workshop-image .status {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;

    padding: 6px 14px;
    border-radius: 999px;        /* fully pill */
    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    background: rgba(0,0,0,0.75); /* default */
    color: var(--white);

    pointer-events: none;
    white-space: nowrap;
}

/* OPEN — brand accent */
.workshop-image .status.open {
    background: rgba(224, 122, 63, 0.95);
}

/* FULL — neutral but SAME WEIGHT */
.workshop-image .status.full {
    background: rgba(0,0,0,0.75);
}



/* =====================================================
   WORKSHOP CONTENT — PROFESSIONAL UPGRADE
   ===================================================== */
.workshop-content {
    padding: 32px;
}

.workshop-content h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--black);
}

/* description */
.workshop-desc {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.6;
    max-width: 90%;
}

/* subtle divider */
.workshop-divider {
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 20px 0 22px;
}

/* =====================================================
   WORKSHOP META — WITH ICONS
   ===================================================== */
.workshop-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
}

.meta-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

/* icons */
.meta-item svg {
    width: 45px;
    height: 45px;
    flex-shrink: 0;

    fill: none;
    stroke: var(--orange);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    margin-top: 2px;
}

/* text */
.meta-item span {
    display: block;
    font-size: 18px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: 2px;
}

.meta-item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}


/* action */
.workshop-action {
    padding: 0 32px 32px;
}

.workshop-action a {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 40px;
    font-weight: 800;
    background: var(--black);
    color: var(--white);
    transition: background 0.3s ease;
}

.workshop-action a:hover {
    background: var(--orange);
}

.workshop-action a.disabled {
    background: #ccc;
    pointer-events: none;
}


/* ================= GALLERY FILTERS ================= */
.gallery-filters {
  padding: 30px 20px;
  text-align: center;
}

.filter-btn {
  background: #e9f3ef;
  border: none;
  padding: 10px 18px;
  margin: 6px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #1b7f5c;
  color: #fff;
}

/* ================= GALLERY GRID ================= */



.gallery-title {
  font-size: 36px;
  font-weight: 700;
}

/* ===== GALLERY HEADER WITH BG ===== */
.gallery-header {
  padding: 15px 0 15px;
  background:
    radial-gradient(circle at top left, rgba(27,127,92,0.08), transparent 60%),
    radial-gradient(circle at bottom right, rgba(27,127,92,0.06), transparent 55%),
    #f9fbfa; /* very light neutral */
}

.gallery-header-inner {
  max-width: 620px;
  margin: 0 5%;
  text-align: left;
}

.gallery-header h2 {
  font-size: 38px;
  font-weight: 700;

}

.gallery-header p {
  font-size: 16px;
  color: #555;
 }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 260px;          /* prevents banner stretching */
  object-fit: cover;
  cursor: pointer;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-card img:hover {
  transform: scale(1.05);
}

/* ===== LIGHTBOX SLIDESHOW ===== */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* Navigation arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 48px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.lightbox-nav.prev {
  left: 20px;
}

.lightbox-nav.next {
  right: 20px;
}

.lightbox-nav:hover {
  opacity: 0.8;
}



footer {
    background: var(--black);
    color: #aaa;
    text-align: center;
    padding: 30px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    header { flex-direction: column; gap: 18px; }
    .hero-grid { grid-template-columns: 1fr; }
    .trust-strip { grid-template-columns: 1fr; gap: 20px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cta {
        padding: 45px 30px;
    }

    .workshop-hero {
        padding: 60px 30px;
    }
    .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-grid.reverse {
    direction: ltr;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}