


/* =========================================
   HOMEPAGE - MOBILE
   Keep desktop identity on phones
========================================= */
.menu-toggle{
    display:none;
    background:none;
    border:0;
    color:var(--deep);
    font-size:28px;
    cursor:pointer;
}

@media(max-width:900px){

    .navbar{
        position:relative;
    }

    .menu-toggle{
        display:block;
        flex-shrink:0;
    }

    .nav-links{
        display:none;

        position:absolute;
        top:100%;
        right:0;

        width:100%;
        padding:15px 5%;

        background:white;

        flex-direction:column;
        align-items:stretch;
        gap:0;

        box-shadow:0 15px 30px rgba(0,54,90,.12);

        z-index:9999;
    }

    .nav-links.open{
        display:flex;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links a{
        display:block;
        width:100%;
        padding:13px 5px;
        border-bottom:1px solid var(--line);
    }

    .nav-links li:last-child a{
        border-bottom:0;
    }

}


  /* ---------- TOP HEADER ---------- */

  .top-wave {
    height: 42px;
  }

  .flag-ribbon {
    width: 150px;
    height: 42px;
  }

  .navbar {
    width: 92%;
    height: auto;
    min-height: 105px;
    padding: 10px 0;
  }

  .brand {
    width: 100%;
    gap: 10px;
  }

  .brand-logo {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
  }

  .brand-text {
    flex: 1;
  }

  .brand-text strong {
    font-size: 18px;
    line-height: 1.7;
  }

  .brand-text small {
    font-size: 11px;
  }

  .nav-links {
    display: none;
  }


  /* ---------- HERO ---------- */

  .hero {
    min-height: 560px;

    background-image:
      linear-gradient(
        180deg,
        rgba(255,255,255,.15) 0%,
        rgba(255,255,255,.55) 43%,
        rgba(255,255,255,.96) 72%
      ),
      url("screen.png") !important;

    background-size: cover !important;
    background-position: 30% center !important;

    align-items: flex-end;
    padding: 0 0 45px;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    width: 90%;
    margin: 0 auto;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.35;
    margin-bottom: 15px;
  }

  .hero h1 span {
    display: block;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.9;
    color: #365f78;
    margin: 0 auto 24px;
    max-width: 360px;
  }


  /* ---------- HERO BUTTONS ---------- */

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
  }

  .hero-actions .btn {
    width: min(100%, 320px);
    text-align: center;
    padding: 12px 20px;
  }


  /* ---------- QUICK CARDS ---------- */

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    border-left: none;
    border-bottom: 1px solid var(--line);
    padding: 25px 20px;
  }

  .quick-card:last-child {
    border-bottom: none;
  }

  .quick-card .icon img {
    max-width: 340px;
    margin: auto;
    border-radius: 14px;
  }


  /* ---------- SECTIONS ---------- */

  .section {
    padding: 50px 5%;
  }

  .section-title {
    margin-bottom: 28px;
  }

  .section-title h2 {
    font-size: 27px;
  }


  /* ---------- TIMELINE ---------- */

  .timeline-line {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .timeline-line::before {
    display: none;
  }


  /* ---------- GALLERY + VIDEO ---------- */

  .media-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery img {
    height: 135px;
  }

  .video-box video,
  .video-box iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }


  /* ---------- FOOTER ---------- */

  .footer {
    padding: 45px 6% 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  .footer-logo {
    width: 70px;
  }

}

@media(max-width:900px){
  .nav-links{
    display:none;
  }
}

 :root{
      --blue:#004b7a;
      --deep:#00365a;
      --sky:#eaf6ff;
      --red:#c7192e;
      --green:#16824f;
      --black:#222;
      --white:#fff;
      --soft:#f7fbff;
      --line:#d7e8f5;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family: Tahoma, Arial, sans-serif;
      background:var(--soft);
      color:var(--deep);
      line-height:1.8;
      padding-top:95px;
    }
    html{
    scroll-behavior:smooth;
}

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

    img{
      width:100%;
      display:block;
    }

    .top-wave{
      height:65px;
      background:var(--blue);
      border-bottom-left-radius:55% 100%;
      position:relative;
      overflow:hidden;
    }

    .flag-ribbon{
      position:absolute;
      left:0;
      top:0;
      width:220px;
      height:65px;
      background:linear-gradient(135deg, var(--red) 0 28%, white 28% 44%, var(--black) 44% 58%, var(--green) 58%);
      clip-path:polygon(0 0,100% 0,70% 100%,0 100%);
    }

    .site-header{
      background:white;
      box-shadow:0 6px 24px rgba(0,75,122,.08);
       position: fixed;
      top:0;
      width:100%;
      z-index:1000;
    }

    .navbar{
      width:min(92%,1350px);
      margin:auto;
      height:95px;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:16px;
    }

    .brand-logo{
      width:100px;
      height:100px;
      object-fit:contain;
    }

    .brand-text strong{
      display:block;
      font-size:23px;
      color:var(--deep);
    }

    .brand-text small{
      display:block;
      color:var(--blue);
      font-size:14px;
    }

    .nav-links{
      list-style:none;
      display:flex;
      gap:32px;
      align-items:center;
      font-weight:700;
      font-size:15px;
    }

    .nav-links a{
      position:relative;
      color:#1d3f5a;
      transition:.3s;
    }

    .nav-links a::after{
      content:"";
      position:absolute;
      right:0;
      bottom:-10px;
      width:0;
      height:3px;
      background:var(--blue);
      transition:.3s;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after{
      width:100%;
    }

    .hero{
  min-height:520px;
  background:
    linear-gradient(250deg, rgba(255,255,255,.98) 25%, rgba(255,255,255,.88) 20%, rgba(255,255,255,.18) 60%),
    url("screen.png");
  background-size:cover;
  background-position:center left;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
}

.hero::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:100%;
  height:70px;
  background:linear-gradient(to top, rgba(255,255,255,.85), transparent);
  opacity:1;
}

    .hero-content{
      width:min(92%,1350px);
      margin:auto;
      position:relative;
      z-index:2;
    }

    .hero-text{
      max-width:620px;
      padding: 20px;

    }

    .hero h1{
      font-size:clamp(38px,5vw,64px);
      line-height:1.25;
      color:var(--deep);
      margin-bottom:18px;
    }

    .hero h1 span{
      color:var(--red);
      display:block;
    }

    .hero p{
      font-size:20px;
      color:#355b73;
      margin-bottom:28px;
      font-weight: bolder;
    f
    }

    .hero-actions{
      display:flex;
      gap:16px;
      flex-wrap:wrap;
    }
    .hero-text{

    animation:fadeUp 1s ease;
}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

    .btn{
      padding:13px 30px;
      border-radius:40px;
      font-weight:800;
      border:2px solid var(--blue);
      transition: .35s;
    }
    .btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px rgba(0,75,122,.18);
}

    .btn-primary{
      background:var(--blue);
      color:white;
    }

    .btn-light{
      background:white;
      color:var(--blue);
    }

    .quick-info{
      background:white;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }

    .quick-grid{
      width:min(92%,1250px);
      margin:auto;
      display:grid;
      grid-template-columns:repeat(4,1fr);
    }

    .quick-card{
      padding:28px;
      text-align:center;
      border-left:1px solid var(--line);
    }

    .quick-card:last-child{
      border-left:none;
    }

    .quick-card .icon{
      font-size:38px;
      color:var(--blue);
      margin-bottom:10px;
    }
    .quick-card .icon img{
    object-fit:cover;
    border-radius:18px;
    margin-bottom:14px;
    box-shadow: 0 10px 22px rgba(0,75,122,.12);
}

    .quick-card h3{
      font-size:20px;
      margin-bottom:6px;
      color:var(--deep);
    }

    .quick-card p{
      font-size:14px;
      color:#58748a;
    }

    .section{
      padding:70px 8%;
    }

    .section-title{
      text-align:center;
      margin-bottom:42px;
    }

    .section-title h2{
      font-size:34px;
      color:var(--deep);
      display:inline-block;
      position:relative;
    }

    .section-title h2::before,
    .section-title h2::after{
      content:"";
      width:55px;
      height:4px;
      position:absolute;
      top:50%;
      background:linear-gradient(90deg,var(--red),var(--green),var(--blue));
      border-radius:10px;
    }

    .section-title h2::before{
      right:-75px;
    }

    .section-title h2::after{
      left:-75px;
    }

    .timeline{
      background:white;
    }

    .timeline-line{
      max-width:1100px;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(6,1fr);
      gap:20px;
      position:relative;
    }

    .timeline-line::before{
      content:"";
      position:absolute;
      top:30px;
      right:5%;
      left:5%;
      height:2px;
      background:#9db9cd;
    }

    .time-item{
      text-align:center;
      position:relative;
      z-index:2;
    }

    .dot{
      width:18px;
      height:18px;
      border-radius:50%;
      background:white;
      border:4px solid var(--blue);
      margin:22px auto 14px;
    }

    .time-item:nth-child(1) .dot,
    .time-item:nth-child(6) .dot{
      border-color:var(--red);
    }

    .time-item:nth-child(2) .dot{
      border-color:var(--green);
    }

    .time-item h3{
      color:var(--blue);
      font-size:18px;
    }

    .time-item strong{
      display:block;
      color:var(--red);
      font-size:20px;
      margin-bottom:5px;
    }

    .time-item p{
      font-size:13px;
      color:#516f84;
    }

    .media-section{
      background:#f7fbff;
      display:grid;
      grid-template-columns:1fr 1.2fr;
      gap:45px;
      align-items:start;
      padding-top: 55px;
    }

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

    .gallery figure{
      overflow:hidden;
      border-radius:20px;
      box-shadow:0 12px 28px rgba(0,75,122,.12);
      cursor: pointer;
    }

    .gallery img{
      height:170px;
      object-fit:cover;
      transition:.5s ease;
    }

    .gallery figure:hover img{
      transform:scale(1.08);
      filter:brightness(.92);

    }

    .video-box{
      background:white;
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 16px 38px rgba(0,75,122,.14);
      border:1px solid var(--line);
    }

    .video-box video,
    .video-box iframe{
      width:100%;
      height:350px;
      object-fit:cover;
      border:0;
      display:block;
    }

    .video-box figcaption{
      padding:14px 20px;
      color:var(--deep);
      font-weight:700;
    }

    .footer{
      background:
        linear-gradient(rgba(0,64,110,.96),rgba(0,64,110,.96)),
        url("images/footer-bg.jpg");
      background-size:cover;
      background-position:center;
      color:white;
      padding:55px 8% 25px;
    }

    .footer-grid{
      width:min(100%,1200px);
      margin:auto;
      display:grid;
      grid-template-columns:1.2fr 1fr 1fr 1fr;
      gap:35px;
      align-items:start;
    }

    .footer-logo{
      width:120px;
      margin-bottom:15px;

    }

    .footer h3{
      margin-bottom:15px;
      color:white;
    }
    .footer p,
    .footer a{
      color:rgba(255,255,255,.78);
      font-size:14px;
      display:block;
      margin-bottom:8px;
    }

    .footer-bottom{
      margin-top:35px;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.15);
      text-align:center;
      color:rgba(255,255,255,.65);
      font-size:13px;
    }
    .footer a{

    display:flex;

    align-items:center;

    gap:10px;

    width:fit-content;

    transition:.3s;

}

.footer a i{

    font-size:18px;

    color:#ffffff;

}

.footer a:hover{

    color:#7bd3ff;

    transform:translateX(-5px);

}

.footer a:hover i{

    color:#7bd3ff;

}

    @media(max-width:900px){
      .nav-links{
        display:none;
      }

      .quick-grid,
      .timeline-line,
      .media-section,
      .footer-grid{
        grid-template-columns:1fr;
      }

      .hero{
        background:
          linear-gradient(rgba(255,255,255,.93),rgba(255,255,255,.88)),
          url("images/rowing-hero.jpg");
        background-size:cover;
        background-position:center;
      }

      .timeline-line::before{
        display:none;
      }

      .section-title h2::before,
      .section-title h2::after{
        display:none;
      }
    }
    


.fade-up,
.fade-in,
.fade-right,
.fade-left {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up {
  transform: translateY(28px);
}

.fade-in {
  transform: scale(.96);
}

.fade-right {
  transform: translateX(28px);
}

.fade-left {
  transform: translateX(-28px);
}

.fade-up.show,
.fade-in.show,
.fade-right.show,
.fade-left.show {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Small delay options */
.delay-1 {
  transition-delay: .15s;
}

.delay-2 {
  transition-delay: .3s;
}

.delay-3 {
  transition-delay: .45s;
}

.delay-4 {
  transition-delay: .6s;
}

/* Better accessibility */
@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-in,
  .fade-right,
  .fade-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}







/* =========================================
   ROWING PAGE
========================================= */

/* HERO */

.rowing-hero {
  min-height: 560px;
  background:
    linear-gradient(250deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 40%, rgba(255,255,255,.12) 78%),
    url("all.jpg");
  background-size: cover;
  background-position: center left;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.rowing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(to top, var(--soft), transparent);
}

.rowing-hero-inner {
  width: min(92%, 1250px);
  margin: auto;
  position: relative;
  z-index: 2;
}

.rowing-hero-text {
  max-width: 600px;
  text-align: center;
}

.rowing-hero-text h1 {
  color: var(--deep);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.rowing-hero-text p {
  color: #355b73;
  font-size: 20px;
  margin-bottom: 28px;
}

/* INTRO */

.rowing-intro-section {
  padding: 90px 8%;
  background: var(--soft);
}

.rowing-intro-grid {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.rowing-intro-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0,75,122,.16);
  background: linear-gradient(135deg, #eef7fd, #ffffff);
}

.rowing-intro-image img {
  height: 410px;
  object-fit: cover;
}

.rowing-intro-text {
  background: white;
  padding: 42px;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0,75,122,.08);
}

.rowing-intro-text .section-kicker::after {
  margin-right: 0;
}

.rowing-intro-text h2 {
  color: var(--deep);
  font-size: 38px;
  margin: 10px 0 18px;
}

.rowing-intro-text p {
  color: #486d84;
  font-size: 17px;
  margin-bottom: 15px;
}

/* BOAT TYPES */

.boat-types-section {
  padding: 90px 8%;
  background: white;
}

.boat-types-grid {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.boat-type-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,75,122,.08);
  transition: .35s;
}

.boat-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0,75,122,.16);
}

.boat-type-card img {
  height: 210px;
  object-fit: cover;
}

.boat-type-card div {
  padding: 24px;
}

.boat-type-card h3 {
  color: var(--deep);
  font-size: 22px;
  margin-bottom: 10px;
}

.boat-type-card p {
  color: #55758b;
  font-size: 15px;
}

/* RECENT EVENT */

.rowing-recent-event {
  padding: 90px 8%;
  background:
    linear-gradient(rgba(0,75,122,.94), rgba(0,75,122,.94)),
    url("rowing-recent-bg.jpg");
  background-size: cover;
  background-position: center;
}

.recent-event-wrapper {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 45px;
  align-items: center;
}

.recent-event-content {
  background: white;
  padding: 42px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.recent-event-content .section-kicker::after {
  margin-right: 0;
}

.recent-event-content h2 {
  color: var(--deep);
  font-size: 36px;
  margin: 10px 0 16px;
}

.recent-event-content p {
  color: #45677c;
  font-size: 17px;
  margin-bottom: 22px;
}

.recent-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.recent-event-meta span {
  background: #eef7fd;
  color: var(--deep);
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #d6e9f5;
}

.recent-event-meta i {
  color: var(--blue);
  margin-left: 6px;
}

.recent-event-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  background: linear-gradient(135deg, #eef7fd, #ffffff);
}

.recent-event-image img {
  height: 400px;
  object-fit: cover;
  transition: .45s;
}

.recent-event-image:hover img {
  transform: scale(1.06);
}

/* CHAMPIONSHIPS */

.championships-section {
  padding: 90px 8%;
  background: var(--soft);
}

.championships-grid {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.championship-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0,75,122,.08);
  transition: .35s;
  position: relative;
  overflow: hidden;
}

.championship-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--green), var(--blue));
}

.championship-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(0,75,122,.15);
}

.championship-card span {
  display: inline-block;
  color: var(--blue);
  background: #eef7fd;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 5px 14px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 16px;
}

.championship-card h3 {
  color: var(--deep);
  font-size: 22px;
  margin-bottom: 8px;
}

.championship-card p {
  color: #5a788b;
  font-size: 15px;
  margin-bottom: 16px;
}

.championship-card strong {
  color: var(--red);
  font-size: 16px;
}

/* AWARDS */

.rowing-awards-section {
  padding: 90px 8%;
  background: white;
}

.awards-grid {
  width: min(100%, 1150px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.award-card {
  text-align: center;
  padding: 34px 24px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: .35s;
}

.award-card:hover {
  background: white;
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(0,75,122,.12);
}

.award-card i {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  font-size: 26px;
}

.award-card strong {
  display: block;
  color: var(--deep);
  font-size: 22px;
  margin-bottom: 8px;
}

.award-card span {
  color: #55758b;
  font-size: 14px;
}

/* GALLERY PREVIEW */

.rowing-gallery-preview {
  padding: 90px 8%;
  background: var(--soft);
}

.rowing-gallery-grid {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rowing-gallery-grid figure {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,75,122,.10);
  background: #eef7fd;
}

.rowing-gallery-grid img {
  height: 240px;
  object-fit: cover;
  transition: .45s;
}

.rowing-gallery-grid figure:hover img {
  transform: scale(1.08);
  filter: brightness(.92);
}

.gallery-preview-action {
  text-align: center;
  margin-top: 38px;
}

/* VIDEOS */

.rowing-videos-section {
  padding: 90px 8%;
  background: white;
}

.rowing-videos-grid {
  width: min(100%, 1150px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.rowing-video-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0,75,122,.12);
}

.rowing-video-card video,
.rowing-video-card iframe {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border: none;
}

.rowing-video-card figcaption {
  padding: 18px 22px;
  color: var(--deep);
  font-weight: 800;
  text-align: center;
}

/* CTA */

.rowing-cta-section {
  padding: 90px 8%;
  background:
    linear-gradient(rgba(0,64,110,.94), rgba(0,64,110,.94)),
    url("rowing-cta.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.rowing-cta-section div {
  width: min(100%, 760px);
  margin: auto;
}

.rowing-cta-section h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}

.rowing-cta-section p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  margin-bottom: 28px;
}

/* TEMP PLACEHOLDERS FOR MISSING PHOTOS */

.rowing-intro-image,
.recent-event-image,
.boat-type-card,
.rowing-gallery-grid figure,
.rowing-video-card {
  position: relative;
}

.rowing-intro-image::before,
.recent-event-image::before,
.rowing-gallery-grid figure::before {
  content: "سيتم إضافة الصورة لاحقًا";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #6f8ca0;
  font-weight: 800;
  background: linear-gradient(135deg, #eef7fd, #ffffff);
  z-index: 0;
}

.rowing-intro-image img,
.recent-event-image img,
.rowing-gallery-grid img {
  position: relative;
  z-index: 1;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .boat-types-grid,
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .championships-grid,
  .rowing-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .rowing-hero {
    min-height: 620px;
    background:
      linear-gradient(rgba(255,255,255,.91), rgba(255,255,255,.86)),
      url("rowing-hero.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
  }

  .rowing-hero-text {
    max-width: 100%;
  }

  .rowing-intro-grid,
  .recent-event-wrapper,
  .rowing-videos-grid {
    grid-template-columns: 1fr;
  }

  .rowing-intro-text,
  .recent-event-content {
    padding: 30px;
    text-align: center;
  }

  .rowing-intro-text .section-kicker::after,
  .recent-event-content .section-kicker::after {
    margin-inline: auto;
  }

  .recent-event-meta {
    justify-content: center;
  }

  .recent-event-meta span {
    width: 100%;
    text-align: center;
  }

  .rowing-intro-image img,
  .recent-event-image img {
    height: 300px;
  }

  .rowing-video-card video,
  .rowing-video-card iframe {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .rowing-hero-text h1 {
    font-size: 42px;
  }

  .rowing-hero-text p {
    font-size: 17px;
  }

  .boat-types-grid,
  .championships-grid,
  .awards-grid,
  .rowing-gallery-grid {
    grid-template-columns: 1fr;
  }

  .boat-type-card img,
  .rowing-gallery-grid img {
    height: 245px;
  }

  .championship-card,
  .award-card {
    padding: 26px 22px;
  }

  .rowing-intro-section,
  .boat-types-section,
  .rowing-recent-event,
  .championships-section,
  .rowing-awards-section,
  .rowing-gallery-preview,
  .rowing-videos-section,
  .rowing-cta-section {
    padding: 70px 6%;
  }
}








/* =========================================
   TRADITIONAL ARTS PAGE
========================================= */

/* HERO */

.traditional-hero {
  min-height: 560px;
  background:
    linear-gradient(250deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 40%, rgba(255,255,255,.12) 78%),
    url("all.jpg");
  background-size: cover;
  background-position: center left;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.traditional-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(to top, var(--soft), transparent);
}

.traditional-hero-inner {
  width: min(92%, 1250px);
  margin: auto;
  position: relative;
  z-index: 2;
}

.traditional-hero-text {
  max-width: 600px;
  text-align: center;
}

.traditional-hero-text h1 {
  color: var(--deep);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.traditional-hero-text p {
  color: #355b73;
  font-size: 20px;
  margin-bottom: 28px;
}

/* INTRO */

.traditional-intro-section {
  padding: 90px 8%;
  background: var(--soft);
}

.traditional-intro-grid {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.traditional-intro-image {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0,75,122,.16);
  background: linear-gradient(135deg, #eef7fd, #ffffff);
}

.traditional-intro-image img {
  height: 410px;
  object-fit: cover;
}

.traditional-intro-text {
  background: white;
  padding: 42px;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0,75,122,.08);
}

.traditional-intro-text .section-kicker::after {
  margin-right: 0;
}

.traditional-intro-text h2 {
  color: var(--deep);
  font-size: 38px;
  margin: 10px 0 18px;
}

.traditional-intro-text p {
  color: #486d84;
  font-size: 17px;
  margin-bottom: 15px;
}

/* ART TYPES */

.art-types-section {
  padding: 90px 8%;
  background: white;
}

.art-types-grid {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.art-type-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,75,122,.08);
  transition: .35s;
}

.art-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(0,75,122,.16);
}

.art-type-card img {
  height: 210px;
  object-fit: cover;
}

.art-type-card div {
  padding: 24px;
}

.art-type-card h3 {
  color: var(--deep);
  font-size: 22px;
  margin-bottom: 10px;
}

.art-type-card p {
  color: #55758b;
  font-size: 15px;
}

/* LATEST EVENT */

.traditional-latest-event {
  padding: 90px 8%;
  background:
    linear-gradient(rgba(0,75,122,.94), rgba(0,75,122,.94)),
    url("traditional-latest-bg.jpg");
  background-size: cover;
  background-position: center;
}

.traditional-event-wrapper {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 45px;
  align-items: center;
}

.traditional-event-content {
  background: white;
  padding: 42px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.traditional-event-content .section-kicker::after {
  margin-right: 0;
}

.traditional-event-content h2 {
  color: var(--deep);
  font-size: 36px;
  margin: 10px 0 16px;
}

.traditional-event-content p {
  color: #45677c;
  font-size: 17px;
  margin-bottom: 22px;
}

.traditional-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.traditional-event-meta span {
  background: #eef7fd;
  color: var(--deep);
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #d6e9f5;
}

.traditional-event-meta i {
  color: var(--blue);
  margin-left: 6px;
}

.traditional-event-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
  background: linear-gradient(135deg, #eef7fd, #ffffff);
}

.traditional-event-image img {
  height: 400px;
  object-fit: cover;
  transition: .45s;
}

.traditional-event-image:hover img {
  transform: scale(1.06);
}

/* EVENTS / PARTICIPATIONS */

.traditional-events-section {
  padding: 90px 8%;
  background: var(--soft);
}

.traditional-events-grid {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.traditional-event-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0,75,122,.08);
  transition: .35s;
  position: relative;
  overflow: hidden;
}

.traditional-event-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--green), var(--blue));
}

.traditional-event-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 60px rgba(0,75,122,.15);
}

.traditional-event-card span {
  display: inline-block;
  color: var(--blue);
  background: #eef7fd;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 5px 14px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 16px;
}

.traditional-event-card h3 {
  color: var(--deep);
  font-size: 22px;
  margin-bottom: 8px;
}

.traditional-event-card p {
  color: #5a788b;
  font-size: 15px;
  margin-bottom: 16px;
}

.traditional-event-card strong {
  color: var(--red);
  font-size: 16px;
}

/* ACHIEVEMENTS */

.traditional-achievements-section {
  padding: 90px 8%;
  background: white;
}

.traditional-achievements-grid {
  width: min(100%, 1150px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.traditional-achievement-card {
  text-align: center;
  padding: 34px 24px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 24px;
  transition: .35s;
}

.traditional-achievement-card:hover {
  background: white;
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(0,75,122,.12);
}

.traditional-achievement-card i {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  font-size: 26px;
}

.traditional-achievement-card strong {
  display: block;
  color: var(--deep);
  font-size: 22px;
  margin-bottom: 8px;
}

.traditional-achievement-card span {
  color: #55758b;
  font-size: 14px;
}

/* GALLERY PREVIEW */

.traditional-gallery-preview {
  padding: 90px 8%;
  background: var(--soft);
}

.traditional-gallery-grid {
  width: min(100%, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.traditional-gallery-grid figure {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,75,122,.10);
  background: #eef7fd;
}

.traditional-gallery-grid img {
  height: 240px;
  object-fit: cover;
  transition: .45s;
}

.traditional-gallery-grid figure:hover img {
  transform: scale(1.08);
  filter: brightness(.92);
}

.gallery-preview-action {
  text-align: center;
  margin-top: 38px;
}

/* VIDEOS */

.traditional-videos-section {
  padding: 90px 8%;
  background: white;
}

.traditional-videos-grid {
  width: min(100%, 1150px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.traditional-video-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(0,75,122,.12);
}

.traditional-video-card video,
.traditional-video-card iframe {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border: none;
}

.traditional-video-card figcaption {
  padding: 18px 22px;
  color: var(--deep);
  font-weight: 800;
  text-align: center;
}

/* CTA */

.traditional-cta-section {
  padding: 90px 8%;
  background:
    linear-gradient(rgba(0,64,110,.94), rgba(0,64,110,.94)),
    url("traditional-cta.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.traditional-cta-section div {
  width: min(100%, 760px);
  margin: auto;
}

.traditional-cta-section h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}

.traditional-cta-section p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  margin-bottom: 28px;
}

/* TEMP PLACEHOLDERS FOR MISSING PHOTOS */

.traditional-intro-image,
.traditional-event-image,
.art-type-card,
.traditional-gallery-grid figure,
.traditional-video-card {
  position: relative;
}

.traditional-intro-image::before,
.traditional-event-image::before,
.traditional-gallery-grid figure::before {
  content: "سيتم إضافة الصورة لاحقًا";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #6f8ca0;
  font-weight: 800;
  background: linear-gradient(135deg, #eef7fd, #ffffff);
  z-index: 0;
}

.traditional-intro-image img,
.traditional-event-image img,
.traditional-gallery-grid img {
  position: relative;
  z-index: 1;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .art-types-grid,
  .traditional-achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .traditional-events-grid,
  .traditional-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .traditional-hero {
    min-height: 620px;
    background:
      linear-gradient(rgba(255,255,255,.91), rgba(255,255,255,.86)),
      url("traditional-hero.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
  }

  .traditional-hero-text {
    max-width: 100%;
  }

  .traditional-intro-grid,
  .traditional-event-wrapper,
  .traditional-videos-grid {
    grid-template-columns: 1fr;
  }

  .traditional-intro-text,
  .traditional-event-content {
    padding: 30px;
    text-align: center;
  }

  .traditional-intro-text .section-kicker::after,
  .traditional-event-content .section-kicker::after {
    margin-inline: auto;
  }

  .traditional-event-meta {
    justify-content: center;
  }

  .traditional-event-meta span {
    width: 100%;
    text-align: center;
  }

  .traditional-intro-image img,
  .traditional-event-image img {
    height: 300px;
  }

  .traditional-video-card video,
  .traditional-video-card iframe {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .traditional-hero-text h1 {
    font-size: 42px;
  }

  .traditional-hero-text p {
    font-size: 17px;
  }

  .art-types-grid,
  .traditional-events-grid,
  .traditional-achievements-grid,
  .traditional-gallery-grid {
    grid-template-columns: 1fr;
  }

  .art-type-card img,
  .traditional-gallery-grid img {
    height: 245px;
  }

  .traditional-event-card,
  .traditional-achievement-card {
    padding: 26px 22px;
  }

  .traditional-intro-section,
  .art-types-section,
  .traditional-latest-event,
  .traditional-events-section,
  .traditional-achievements-section,
  .traditional-gallery-preview,
  .traditional-videos-section,
  .traditional-cta-section {
    padding: 70px 6%;
  }
}











/* =========================================
   GALLERY PAGE
========================================= */

/* HERO */

.gallery-hero {
  min-height: 460px;
  background:
    linear-gradient(10deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 5%, rgba(255,255,255,.25) 35%),
    url("events.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.gallery-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 90px;
  background: linear-gradient(to top, var(--soft), transparent);
}

.gallery-hero-content {
  width: min(92%, 950px);
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.gallery-hero-content h1 {
  color: var(--deep);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.25;
  margin: 12px 0 18px;
}

.gallery-hero-content p {
  color: #355b73;
  font-size: 19px;
  max-width: 760px;
  margin: auto;
}




/* MAIN GALLERY SECTION */

.gallery-page-section {
  padding: 70px 8% 90px;
  background: var(--soft);
}

/* FILTER BUTTONS */

.gallery-filter {
  width: min(100%, 1100px);
  margin: 0 auto 42px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 12px;
  background: rgba(247, 251, 255, .88);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  border: 1px solid rgba(215, 232, 245, .85);
  box-shadow: 0 12px 30px rgba(0,75,122,.07);
}

.filter-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--deep);
  padding: 12px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: .3s;
  white-space: nowrap;
}

.filter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,75,122,.12);
}

.filter-btn.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(0,75,122,.22);
}

/* GALLERY GRID */

.gallery-page-grid {
  width: min(100%, 1250px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 15px 35px rgba(0,75,122,.09);
  cursor: pointer;
  position: relative;
  opacity: 0;
  transform: translateY(22px) scale(.98);
  transition:
    opacity .45s ease,
    transform .45s ease,
    box-shadow .35s ease;
}

.gallery-item.is-visible,
.gallery-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-item:hover {
  transform: translateY(-7px) scale(1.01);
  box-shadow: 0 25px 58px rgba(0,75,122,.16);
}

.gallery-item::before {
  content: "سيتم إضافة الصورة لاحقًا";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef7fd, #ffffff);
  color: #6f8ca0;
  font-weight: 800;
  z-index: 0;
}

.gallery-item img {
  width: 100%;
  height: 285px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: .45s;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(.88);
}

.gallery-item figcaption {
  position: relative;
  z-index: 2;
  padding: 18px 20px;
  background: white;
  color: var(--deep);
  font-weight: 800;
  text-align: center;
  font-size: 16px;
}

/* SHOW MORE */

.show-more-wrapper {
  text-align: center;
  margin-top: 44px;
}

#showMoreBtn {
  min-width: 180px;
}

/* CTA */

.gallery-cta-section {
  padding: 90px 8%;
  background:
    linear-gradient(rgba(0,64,110,.94), rgba(0,64,110,.94)),
    url("gallery-cta.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
}

.gallery-cta-section div {
  width: min(100%, 760px);
  margin: auto;
}

.gallery-cta-section h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}

.gallery-cta-section p {
  color: rgba(255,255,255,.84);
  font-size: 18px;
  margin-bottom: 28px;
}

/* LIGHTBOX */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 18, 32, .94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-content {
  width: min(100%, 1050px);
  text-align: center;
  animation: lightboxZoom .28s ease;
}

@keyframes lightboxZoom {
  from {
    opacity: 0;
    transform: scale(.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  background: white;
}

.lightbox-content figcaption {
  margin-top: 18px;
  color: white;
  font-weight: 800;
  font-size: 18px;
}

/* LIGHTBOX BUTTONS */

.lightbox-close,
.lightbox-arrow {
  border: none;
  background: rgba(255,255,255,.12);
  color: white;
  cursor: pointer;
  transition: .3s;
  display: grid;
  place-items: center;
  backdrop-filter: blur(12px);
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: white;
  color: var(--deep);
  transform: scale(1.06);
}

.lightbox-close {
  position: fixed;
  top: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  z-index: 10001;
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 22px;
  z-index: 10000;
}

.lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
  right: 26px;
}

.lightbox-next {
  left: 26px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    height: 270px;
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    min-height: 520px;
    background:
      linear-gradient(rgba(255,255,255,.91), rgba(255,255,255,.86)),
      url("gallery-hero.jpg");
    background-size: cover;
    background-position: center;
  }

  .gallery-hero-content p {
    font-size: 17px;
  }

  .gallery-page-section {
    padding: 55px 5% 75px;
  }

  .gallery-filter {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    border-radius: 18px;
    margin-bottom: 32px;
  }

  .gallery-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    font-size: 14px;
    padding: 11px 19px;
  }

  .gallery-page-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-item {
    border-radius: 22px;
  }

  .gallery-item img {
    height: 300px;
  }

  .gallery-item figcaption {
    font-size: 15px;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .lightbox-content img {
    max-height: 72vh;
    border-radius: 16px;
  }

  .lightbox-close {
    top: 18px;
    left: 18px;
    width: 46px;
    height: 46px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 28px;
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .lightbox-prev {
    right: calc(50% - 60px);
  }

  .lightbox-next {
    left: calc(50% - 60px);
  }

  .lightbox-content figcaption {
    font-size: 16px;
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .gallery-hero-content h1 {
    font-size: 38px;
  }

  .gallery-item img {
    height: 255px;
  }

  .gallery-filter {
    padding: 13px 10px;
  }

  .filter-btn {
    padding: 10px 17px;
  }

  .gallery-cta-section {
    padding: 75px 6%;
  }
}