/* ===================================================
   DESIGN TOKENS
   Source: base/variables.css
   =================================================== */

:root {
  --color-brand: #FECA11;
  --color-brand-alt: #f5c400;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-bg: #f5f4f0;
  --color-bg-alt: #f4f3ee;
  --color-gray: #bdbdbd;
  --color-dark-overlay: rgba(0, 0, 0, 0.5);

  --font-serif: 'Noto Serif Display', serif;
  --font-serif-body: 'Noto Serif', serif;
  --font-sans: 'Open Sans', sans-serif;
  --font-sans-alt: 'Albert Sans', sans-serif;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 25px;
  --text-3xl: 30px;
  --text-4xl: 40px;
  --text-5xl: 50px;
  --text-6xl: 60px;
  --text-display: 60px;
  --text-hero: 100px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 80px;
  --space-3xl: 120px;
  --space-4xl: 150px;
  --space-page: 20px;

  --container-max: 1600px;
  --container-narrow: 1200px;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.45s cubic-bezier(0.22, 1, 0.36, 1);

  --z-header: 100;
  --z-overlay: 2000;
  --z-dropdown: 200;
  --z-sticky: 1000;
  --z-skip: 9999;
}

@media (min-width: 768px) {
  :root {
    --space-page: 35px;
    --text-display: 120px;
    --text-hero: 130px;
  }
}

@media (min-width: 1024px) {
  :root {
    --space-page: 75px;
    --text-display: 200px;
    --text-hero: 180px;
  }
}

@media (min-width: 1280px) {
  :root {
    --text-base: 20px;
    --text-display: 285px;
    --text-hero: 300px;
    --text-6xl: 100px;
    --text-5xl: 60px;
    --text-4xl: 40px;
  }
}

/* ===================================================
   RESET & BASE
   Source: base/reset.css
   =================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #f5f4f0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

input, textarea {
  font: inherit;
}

/* ===================================================
   UTILITIES
   Source: base/utilities.css
   =================================================== */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-page);
}

.container--narrow { max-width: var(--container-narrow); }
.container--full { max-width: none; padding-inline: 0; }

.desktop-only { display: block; }
.mobile-only { display: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  z-index: var(--z-skip);
  text-decoration: none;
  font-family: var(--font-sans);
}

.skip-link:focus { top: var(--space-sm); }

:focus-visible {
  outline: 3px solid var(--color-brand);
  outline-offset: 2px;
}
.marg{
    margin-top: 15px!important;
}
/* ================= HOVER EFFECTS ================= */

/* -- Filled buttons (black bg) -- */
.hero__btn,
.cta__btn,
.card__btn,
.member-application__btn,
.form-btn,
.activity-single__next {
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero__btn:hover,
.cta__btn:hover,
.card__btn:hover,
.member-application__btn:hover,
.form-btn:hover,
.activity-single__next:hover {
  background: var(--color-brand, #FECA11);
  color: var(--color-black, #000);
  transform: translateX(6px);
}

/* -- Text links (Read More, Next actions, etc.) -- */
.about__link,
.activity__card a,
.card__link,
.activity-b__content a,
.activity-single__back {
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.about__link:hover,
.activity__card a:hover,
.card__link:hover,
.activity-b__content a:hover,
.activity-single__back:hover {
  color: var(--color-brand, #FECA11);
  transform: translateX(6px);
}

/* -- Nav top-level links -- */
.nav > ul > li > a {
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav > ul > li > a:hover {
  transform: translateX(3px);
}

/* -- Flashback images -- */
.flashback {
  overflow: hidden;
}

.flashback img {
  transition: filter 0.5s ease, transform 0.5s ease;
}

.flashback:hover img {
  transform: scale(1.04);
}

/* -- Activity cards -- */
.activity__card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.underline{
    text-decoration: underline;
}
.quota{
    font-family: 'Noto Serif',serif !important;
    font-weight: 600 !important;
}
/* =================================================== */

/* ================= GLOBAL STICKY & UTILS ================= */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease;
}

.sticky-header.scrolled {
    padding-bottom: 10px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-header.scrolled {
    background: rgba(245,244,240,0.95);
}
.sticky-header.scrolled .nav > ul > li > a {
  color: #000000;
}
.sticky-header.scrolled .nav-submenu a {
  color: #ffffff;
}
.sticky-header.header-hidden{
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--space-page, 20px);
  width: 100%;
}

.header__logo img {
  width: 162px;
  height: auto;
}

/* Hamburger: visible on mobile, hidden on desktop */
.header__hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #feca11;
  transition: var(--transition-base, 0.3s ease);
}

.header__hamburger span:nth-child(2) {
  width: 60%;
  align-self: flex-end;
}

/* Nav: hidden on mobile, visible on desktop */
.nav {
  display: none;
}

@media (min-width: 1024px) {
  .header__inner {
    padding-left: 50px;
    padding-right: 80px;
    padding-top: 25px;
  }

  .nav {
    display: block;
  }

  .header__hamburger {
    display: none;
  }
}

.nav a {
  font-family: 'Open Sans',sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 40px;
  text-decoration: none;
  color: white;
  letter-spacing: 1px;
  transition: color 0.2s ease, background 0.3s ease;
}

.nav > ul > li.is-current > a {
  padding: 0 30px;
  color: #FECA11!important;
  background-color: #000000;
}
.nav > ul > li > a:hover{
  color: #FECA11;
}
.nav-not-home .nav > ul > li > a{
  color: #000000;
}

/* CSS-only fallback: pages with light backgrounds get dark nav text */
.club-page ~ .footer,
.activities-page ~ .footer,
.member-page ~ .footer,
.contact-page ~ .footer { /* these selectors just confirm these pages exist */ }

body:has(.club-page) .header .nav > ul > li:not(.is-current) > a,
body:has(.activities-page) .header .nav > ul > li:not(.is-current) > a,
body:has(.member-page) .header .nav > ul > li:not(.is-current) > a,
body:has(.contact-page) .header .nav > ul > li:not(.is-current) > a,
body:has(.contact-section) .header .nav > ul > li:not(.is-current) > a,
body:has(.activity-single) .header .nav > ul > li:not(.is-current) > a {
  color: #000000;
}

/* legacy .site-header removed - merged into single .header */

.sticky-header.scrolled .nav > ul > li.is-current > a{
    color: #FECA11;
}
.nav > ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item--has-submenu {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #000;
  padding: 18px 14px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 200;
}

.nav-submenu li {
  margin-bottom: 14px;
}

.nav-submenu li:last-child {
  margin-bottom: 0;
}

.nav-submenu a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  display: inline-block;
  padding: 0;
  background: transparent !important;
  transition: color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav-submenu a:hover {
  color: #FECA11 !important;
  transform: translateX(6px);
}

.nav-submenu a.is-current-sub {
  color: #FECA11 !important;
  transition: color 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav-submenu a.is-current-sub {
  color: #FECA11 !important;
}

.nav-item--has-submenu:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* legacy .hamburger removed - replaced by .header__hamburger above */


/* Container του Overlay */
.overlay-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    flex-direction: column;
    overflow: hidden; /* bg stays fixed, content scrolls separately */
}

/* Background Image Full Cover */
.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* stays fixed inside the fixed overlay */
    object-fit: cover;
    filter: grayscale(100%) brightness(0.6);
    z-index: 0;
}

.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.overlay-list {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 0 var(--space-page, 0);
    flex-shrink: 0; /* fixed στην κορυφή, δεν scrollάρει */
}

/* Το "X" για κλείσιμο */
.close-menu {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.close-menu:focus,
.header__hamburger:focus {
    outline: none;
}

.close-menu span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: white;
    top: 50%;
}

.close-menu span:nth-child(1) { transform: rotate(45deg); }
.close-menu span:nth-child(2) { transform: rotate(-45deg); }


/* Λίστα Μενού */
.overlay-list ul {
    list-style: none;
    padding: 0;
}

.overlay-list li {
    position: relative;
    /* margin-bottom: 25px; */
}

/* Parent menu items */
.overlay-list > ul > li > a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.7px;
    font-size: 30px;
    line-height: 70px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}

/* All links base */
.overlay-list a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
}

/* Sub Menu Styling */
.sub-menu {
    margin-top: 10px;
    margin-left: 5px;
    display: block;
}
.active-item .sub-menu {
    display: block;
}
.sub-menu li {
    margin-bottom: 5px !important;
}

.sub-menu a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400; /* Regular */
    font-size: 18px;
    line-height: 23px;
    text-transform: none;
}

/* ACTIVE STATE - Το κίτρινο κουτί και το μεγάλο font */
.active-item {
  position: relative;
  margin-bottom: 40px !important;
  padding-top: 10px;
}

 .yellow-box {
    position: absolute;
    width: 126px;
    height: 66px;
    background-color: #FECA11;
    z-index: -1;
    left:-20px;
}

.active-item > a {
    font-family: 'Noto Serif Display', serif !important;
    font-size: 40px!important;
    line-height: 70px!important;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    color: white;
    position: relative;
    z-index: 2;
    text-transform: capitalize;
}
/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 70px; /* From Figma */
  padding-top: 190px;
  max-width: 1200px;
}

.hero__title {
  font-family: 'Noto Serif Display';
  font-weight: 900;
  /* text-transform: uppercase; */
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
}

/* 40 */
.hero__40 {
  font-size: 180px;
  line-height: 150px;
  color: #FECA11;
  margin-right: 20px;
}

/* YEARS + ONE + PASSION */
.hero__years,
.hero__one,
.hero__passion {
  font-size: 120px;
  line-height: 150px;
  color: #ffffff;
  position: relative;
  top: 20px;
  margin-right: 30px;
}

/* Force new line after YEARS */
.hero__linebreak {
  flex-basis: 100%;
  height: 0;
}

/* Subtitle */
.hero__subtitle {
  font-family: 'Open Sans',sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 125px;
  color: #ffffff;
}

/* Button */
.hero__btn {
  font-family: 'Open Sans',sans-serif;
  font-weight: 500;
  font-size: 24px;
  padding: 15px 25px;
  align-self: flex-start;
  background: black;
  color: white;
  display: inline-block;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
/* ================= ABOUT SECTION ================= */

.about {
  margin-top: 150px;
  margin-bottom: 135px;
  background: #f5f4f0;
  overflow-x: hidden;
}

/* κάθε row */
.about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

/* reverse second row */
.about__row--reverse {
  grid-template-columns: 1fr 1fr;
}

.about__row--reverse .about__image {
  order: 2;
}

/* image */
.about__image {
  overflow: hidden;
}

.about__image img,
.about__image video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.about__image:hover img,
.about__image:hover video {
  transform: scale(1.04);
}

/* content */
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px;
}

/* right aligned text (row 1) */
.about__content--right {
  text-align: right;
  align-items: flex-end;
}

/* centered text (row 2) */
.about__content--center {
  text-align: left;
  padding-top: 600px;
}

/* Titles */
.about__content h2 {
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: 100px;
  line-height: 100px;
  margin-bottom: 40px;
  max-width: 700px;
}

/* Paragraph */
.about__content p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 30px;
  padding-top: 90px;
  max-width: 560px;
}

/* Link */
.about__link {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 23px;
  text-decoration: none;
  color: black;
  position: relative;
}

.about__link::after {
  content: " →";
}
/* ================= CTA ================= */

.cta {

  padding: 0 0 50px;
}

.cta__inner {
  margin: 0 auto;
}

.cta__content {
  background: #ffcc12;
  max-width: 620px;
  text-align: end;
  padding: 50px 50px;
}

/* Title */
.cta h2 {
  font-family: 'Noto Serif Display',serif;
  font-weight: 900;
  font-size: 60px;
  margin-right: 135px;
}

/* Button */
.cta__btn {
  margin-right: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 40px;
  background: black;
  color: white;
  padding: 5px 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
/* ================= activity ================= */
.activity {
  padding: 40px 0 0;
  background: #f5f4f0;
  overflow-x: hidden;
}

.activity__header {
  max-width: 1600px;
  margin: 0 auto 60px auto;
  padding: 0 var(--space-page, 75px);
  text-align: end;
}

.activity__header h2 {
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: 100px;
  line-height: 100px;
}

/* Owl Carousel – Activity overrides */
.activity-carousel-outer {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding-inline: var(--space-page, 75px);
}

.activity-carousel {
  padding: 0;
}
.activity__card {
  background: white;
  display: flex;
  flex-direction: column;
}
.activity__card img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.activity__card:hover img {
  filter: grayscale(0%);
}
.activity__card-content {
  padding: 25px 30px 30px;
  text-align: center;
}
.activity__card h3 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.activity__card p,
.activity__card-content div {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.activity__card a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  color: black;
}

/* Owl nav arrows */
.activity-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 5px;
}
.activity-carousel .owl-nav button {
  pointer-events: auto;
  background: none !important;
  border: none;
  font-size: 40px !important;
  color: #000;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}
.activity-carousel .owl-nav button:hover {
  color: var(--color-brand, #FECA11);
}
.activity-carousel .owl-nav .disabled {
  opacity: 0.3;
  cursor: default;
}

/* Owl dots */
.activity-carousel .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.activity-carousel .owl-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #000;
  background: #bdbdbd;
  display: block;
  transition: all 0.3s ease;
}
.activity-carousel .owl-dot.active span {
  background: #000;
  width: 12px;
  height: 12px;
}
/* ================= FLASHBACKS ================= */
.flashbacks {
  padding: 150px 0;
}
.flashbacks__header {
  margin: 0 auto 185px auto;
  max-width: 1600px;
  width: 100%;
  padding-inline: var(--space-page, 75px);
}

.flashbacks__header h2 {
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: 100px;
  line-height: 100px;
}
.flashbacks__grid {
  max-width: 1600px;
  width: 100%;
  padding-inline: var(--space-page, 75px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 420px 280px 420px;
  gap: 65px;
}
/* 1 - Left vertical */
.flashback--1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* 2 - Top horizontal */
.flashback--2 {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

/* 3 - Center */
.flashback--3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* 4 - Bottom horizontal */
.flashback--4 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}

/* 5 - Right vertical */
.flashback--5 {
  grid-column: 3 / 4;
  grid-row: 2 / 4;
}
.flashback {
  overflow: hidden;
}
.flashback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.flashback:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
/* ================= MEMBERSHIP ================= */
.membership {
  padding: 0 0 150px 0;
}
.membership__illustration {
  max-width: 483px;
  margin: 0 auto 10px auto;
  text-align: center;
}

.membership__illustration img,
.membership__illustration object {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
.membership__cards {
  max-width: 1440px;
  width: 100%;
  padding-inline: var(--space-page, 75px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.membership__card {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 600px;
  opacity: 0;
}

.membership__card.is-visible {
  opacity: 1;
}
.membership__card--yellow {
  background: #ffcc12;
  color: black;
}
.membership__card--black {
  background: black;
  color: #ffcc12;
}
.membership__card h2 {
  font-family: 'Noto Serif';
  font-weight: 900;
  font-size: 63px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.membership__card h2 span {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
}
.card__small {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 40px;
}
.card__statement {
  margin-top: 80px;
  font-family: 'Open Sans', sans-serif;
  font-size: 27px;
  line-height: 1.3;
  width: 100%;
  text-align: justify;
}
.card__quote {
  font-family: 'Noto Serif';
  font-weight: 900;
  font-size: 37px;
  line-height: 1.2;
  margin: 170px 0 0 0;
  max-width: 480px;
}
.card__note {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  line-height: 40px;
}
.card__btn {
  margin-top: 100px;
  font-size: 30px;
  align-self: baseline;
  background: black;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
}

.card__link {
  align-self: flex-start;
  text-decoration: none;
  font-family: 'Noto Serif';
  font-weight: 600;
  color: #ffffff;
  font-size: 30px;
  margin-bottom: 15px;
}
.card__title-color{
    color: #ffffff!important;
}
/* ==================================
    THE CLUB PAGE
==================================  */
.club-page {
  padding: 80px 75px 0 75px;
  overflow: hidden;
}
.club-page__panel {
  display: none;
}

.club-page__panel.active {
  display: block;
}
.club-page__hero {
  overflow: hidden;
}
.club-page__title span {
  display: block;
}

.bold{
  font-weight: 600;
}
.club-page__title {
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 0.9;
  margin: 0;
  max-width: 100%;
  padding: 90px 0 60px;
  word-break: break-word;
}
/* ================= PAGE SUB-NAV ================= */
.page-nav {
  display: flex;
  gap: 60px;
  margin: 0 0 56px 0;
  padding: 0 75px;
}

/* Inside .club-page the section already has 75px padding — no extra needed */
.club-page .page-nav {
  padding: 0;
}

.page-nav__link {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 13px;
  text-decoration: none;
  color: inherit;
  padding-bottom: 8px;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.page-nav__link:hover {
  color: var(--color-brand, #FECA11);
  transform: translateX(4px);
}

.page-nav__link.active {
  background-color: black;
  color: #ffffff;
  padding: 5px 60px 0;
}

.page-nav__link.active:hover {
  color: #ffffff;
  transform: none;
}

@media (max-width: 767px) {
  .page-nav {
    display: none;
  }
}

/* Legacy tab styles (kept for reference) */
.club-page__tabs {
  display: flex;
  gap: 60px;
  margin: 0 0 56px 0;
}
.club-page__tab {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 13px;
  background: none;
  border: none;
  cursor: pointer;
  padding-bottom: 8px;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.club-page__tab:hover {
  color: var(--color-brand, #FECA11);
  transform: translateX(4px);
}
.club-page__tab.active {
  background-color: black;
  color: #ffffff;
  padding: 5px 60px 0;
}
.club-page__tab.active:hover {
  color: #ffffff;
  transform: none;
}
.club-page__content {
  margin-bottom: 95px;
}

.club-page__text {
  column-count: 3;
  column-gap: 60px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  /* line-height: 21px; */
}
.club-page__text h3 {
  padding-bottom: 20px;
}

.club-page__text p {
  margin-bottom: 20px;
  text-align: justify;
}
.club-page__text ul,
.club-page__text ol {
  list-style: revert;
  /* padding-left: 1.5em; */
  margin-bottom: 20px;
}
.club-page__text ul { list-style-type: none;; }
.club-page__text ol { list-style-type: decimal; }
/* .club-page__text li {
  margin-bottom: 6px;
} */
.club-page__image {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.club-page__image img {
  width: 100%;
  height: auto;
  display: block;
}
/* ==================================
   ACTIVITIES PAGE
================================== */

.activities-page {
  padding: 0 0 60px;
}

/* ---------------- HERO ---------------- */

.activities-page__hero {
  padding: 160px 75px 80px 75px;
  overflow-x: hidden;
}

.activities-page__title {
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 0.9;
  margin: 0;
  max-width: 100%;
}

/* ---------------- TABS ---------------- */

.activities-page__tabs {
  display: flex;
  gap: 60px;
  margin-bottom: 100px;
  padding: 0 75px;
}

.activities-page__tab {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 13px;
  padding-bottom: 8px;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.activities-page__tab:hover {
  color: var(--color-brand, #FECA11);
  transform: translateX(4px);
}
.activities-page__tab.active:hover {
  color: #ffffff;
  transform: none;
}

.activities-page__tab.active {
  background-color: black;
  color: white;
  padding: 5px 60px 0;
}

/* ---------------- PANELS ---------------- */

.activities-panel {
  display: none;
}

.activities-panel.active {
  display: block;
}

/* ---------------- ACTIVITY ROW ---------------- */

.activity-b {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* Alternating layout */
.activity-b:nth-child(even) .activity-b__image {
  order: 2;
}

/* ---------------- IMAGE ---------------- */

.activity-b__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.activity-b__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Hover → Color + zoom */
.activity-b:hover .activity-b__image img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* ---------------- CONTENT ---------------- */
.activity-b__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}
.activity-b:not(:nth-child(even)) .activity-b__content {
  margin-left: auto;
  margin-right: 75px;
  text-align: right;
}

.activity-b:nth-child(even) .activity-b__content {
  margin-right: auto;
  margin-left: 75px;
  text-align: left;
}
.activity-b:nth-child(even) .activity-b__content h2,
.activity-b:nth-child(even) .activity-b__content p,
.activity-b:nth-child(even) .activity-b__content a {
  margin-left: 0;
  margin-right: auto;
}
.activity-b__content h2 {
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: 86px;
  margin-bottom: 70px;
  /* margin-right: 75px; */
  line-height: 100px;
}
.vespa-text{
  display: block;
  margin-left: 0 !important;
}
.activity-b__content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  line-height: 23px;
  max-width: 560px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: 75px;
  font-weight: 300;
}

.activity-b__content a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: black;
  margin-right: 75px;
  font-size: 20px;
  line-height: 23px;
}

/* ==================================
   ACTIVITY SINGLE
================================== */
.activity-single__header {
  padding: 30px 160px 200px 160px;
}

.activity-single__title {
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: 100px;
  line-height: 0.9;
  margin: 0 0 42px 0;
  word-break: break-word;
}

.activity-single__intro {
  font-family: 'Open Sans';
  font-weight: 300;
  font-size: 20px;
  line-height: 23px;
  max-width: 1300px;
  text-align: justify;
}

.activity-single__nav {
  padding: 115px 150px 0px 150px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Next Button */
.activity-single__next {
  align-self: flex-end;
  background: black;
  color: white;
  padding: 18px 40px;
  text-decoration: none;
  font-family: 'Open Sans';
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* hover handled by global rule */

/* Back */
.activity-single__back {
  align-self: flex-start;
  text-decoration: none;
  font-family: 'Open Sans';
  font-size: 14px;
  letter-spacing: 2px;
  color: #000000;
}
.left-text{
  text-align: left!important;
}
/* ==================================
   BECOME A MEMBER PAGE
================================== */

.member-page {
  background-color: #f4f3ee;
    padding-bottom: 50px;
}

.member-page__hero {
  padding: 150px 75px 50px 75px;
  text-align: left;
}

/* -------- TITLE -------- */

.member-page__title {
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: clamp(50px, 6vw, 250px);
  line-height: 0.9;
  margin: 0 0 80px 0;
  text-align: left !important;
}

/* -------- TEXT -------- */

.member-page__text {
  max-width: 1070px;
}

.member-page__text p {
  font-family: 'Open Sans';
  font-weight: 300;
  font-size: 19px;
  line-height: 28px;
  margin-bottom: 20px;
}
.member-page__text ul {
  list-style: disc !important;
  padding-left: 25px;
  margin: 15px 0;
}

.member-page__text ul li {
  list-style: disc !important;
  display: list-item;
  margin-bottom: 5px;
  font-family: 'Open Sans';
  font-weight: 300;
  /* font-size: 23px; */
  line-height: 28px;
}
/* ==================================
   SIMPLE PAGE TEMPLATE
================================== */
.simple-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 60px;
  background: #f4f3ee;
}

.simple-page__content h1,
.simple-page__content h2,
.simple-page__content h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.simple-page__content h1 {
  font-size: 48px;
  line-height: 1.2;
}

.simple-page__content p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

.simple-page__content ol,
.simple-page__content ul {
  padding-left: 30px;
  margin: 15px 0;
}

.simple-page__content ol {
  list-style: decimal !important;
}

.simple-page__content ul {
  list-style: disc !important;
}

.simple-page__content ol li,
.simple-page__content ul li {
  display: list-item;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 8px;
}

.simple-page__content strong {
  font-weight: 600;
}

.forminator-ui.forminator-custom-form[data-design=material] .forminator-label {
    line-height: 20px!important;
}
/* ==================================
   MEMBER APPLICATION SECTION
================================== */

.member-application {
  padding: 0px 75px 120px;
}

.member-application__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1040px) 1fr;
  align-items: center;
  gap: 120px;
}

/* ---------------- CARD ---------------- */

.member-application__card {
  background: #f7c600; /* Vespa Yellow */
  padding: 90px 110px;
  min-height: 920px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Title */
.member-application__title {
  /* font-family: 'Noto Serif Display';
  font-weight: 800;
  font-size: 70px;
  line-height: 80px; */
  margin: 0 0 40px 0;
}

/* ---------------- FORM ---------------- */

.member-application__form {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.form-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid black;
  padding: 10px 0;
  font-family: 'Open Sans';
  font-size: 18px;
  outline: none;
}

.form-group input::placeholder {
  color: black;
}

/* Button */
.member-application__btn {
  margin-top: 30px;
  align-self: flex-end;
  background: black;
  color: white;
  border: none;
  padding: 18px 40px;
  font-family: 'Open Sans';
  font-size: 30px;
  line-height: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* hover handled by global rule */

/* ---------------- IMAGE ---------------- */

.member-application__image {
  display: flex;
  justify-content: center;
}

.member-application__image img {
  width: 780px;
  max-width: 100%;
  height: auto;
}
/* ==================================
   CONTACT PAGE
================================== */

.contact-page {
  background: #f4f3ee;
  padding: 150px 75px 120px 75px;
  overflow: hidden;
}

/* ---------------- HERO WRAPPER ---------------- */

.contact-page__hero {
  display: grid;
  grid-template-columns: 55% 45%;
  grid-template-rows: auto 1fr;
  min-height: 900px;
}

/* ---------------- MAIN TITLE ---------------- */

.contact-page__title {
  grid-column: 1 / -1;
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 0.9;
  margin: 0;
  padding: 60px 0 40px;
}
.contact-o-inv{
  color: #f4f3ee;
}
.contact-page__illustration {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  max-width: 780px;
  object-fit: contain;
  align-self: end;
  /*margin-left: -75px;*/
  pointer-events: none;
}
/* ---------------- RIGHT INFO BLOCK ---------------- */

.contact-page__info {
  grid-column: 2;
  grid-row: 2;
  text-align: right;
  align-self: end;
  padding-bottom: 60px;
}

/* Big Meeting Text */
.contact-page__meeting {
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: 100px;
  line-height: 100px;
  margin: 0 0 30px 0;
}

/* Address */
.contact-page__address {
  font-family: 'Open Sans';
  font-weight: 400;
  font-size: 26px;
  line-height: 23px;
  margin: 15px;
}

/* Note */
.contact-page__note {
  font-family: 'Open Sans';
  font-weight: 300;
  font-size: 20px;
  line-height: 50px;
  margin: 0;
}
/* ==================================
   CONTACT SECTION
================================== */

.contact-section {
  padding: 120px 160px;
  background: #f4f3ee;
}

.contact-section__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* ================= LEFT FORM ================= */

.contact-section__form {
  background: #f5c400;
  padding: 80px;
  max-width:770px;
}

.contact-section__form-title {
  font-family: 'Noto Serif Display';
  font-weight: 800;
  font-size: 70px;
  line-height: 80px;
  margin-bottom: 60px;
}

.form-group {
  margin-bottom: 50px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid black;
  background: transparent;
  font-family: 'Open Sans';
  font-size: 30px;
  padding: 10px 0;
  outline: none;
}

.form-group textarea {
  resize: none;
  height: 100px;
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid black !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 10px 0 !important;
}

/* Forminator plugin – textarea same style as inputs */
.contact-section__form .forminator-textarea,
.contact-section__form textarea.forminator-textarea,
.contact-section__form .forminator-ui textarea,
.contact-section__form .forminator-custom-form textarea,
.contact-section__form .forminator-row textarea {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 2px solid black !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: 'Open Sans' !important;
  font-size: 30px !important;
  padding: 10px 0 !important;
  outline: none !important;
  resize: none !important;
  min-height: 100px !important;
  color: inherit !important;
}

.form-btn {
  background: black;
  color: white;
  padding: 15px 60px;
  border: none;
  font-family: 'Open Sans';
  font-size: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* hover handled by global rule */

/* ================= RIGHT INFO ================= */

.contact-section__info {
  background: black;
  color: white;
  padding: 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width:770px;
}

/* Row 1 */

.contact-info__header h3 {
  font-family: 'Noto Serif Display';
  font-weight: 800;
  font-size: 70px;
  margin: 0;
}

.contact-info__header p {
  font-family: 'Open Sans',serif;
  font-size: 18px;
  line-height: 23px;
  margin: 0 0 40px;
  max-width: 210px;
}

/* Row 2 */

.contact-info__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.contact-info__item {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info__item img {
  width: 140px;
}

.contact-info__item p {
  font-family: 'Open Sans';
  font-size: 18px;
  line-height: 23px;
  margin: 0 0 5px 0;
}

/* Row 3 Social */

/* SOCIAL GRID */
.contact-info__social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* κάθε social column */
.social-item {
  display: flex;
  flex-direction: column;
}

/* ICON centered */
.social-item img {
  width: 90px;
  margin: 0 auto 20px auto;
}

/* TEXT left aligned */
.social-item a {
  font-family: 'Open Sans',serif;
  font-size: 18px;
  margin: 0;
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ================= FOOTER ================= */
.footer {
  background: #ffcc12;
  padding: 50px 75px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 460px 1fr;
  align-items: end;
}
.footer__col--left{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.footer__brand {
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: 170px;
  line-height: 140px;
}
.mobile-font{
  font-family: 'Noto Serif Display';
  font-weight: 900;
  font-size: 210px;
  line-height: 170px;
}

.footer__city {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 75px;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}

.footer__info p {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.footer__info a {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    margin-top: 20px;
}
.footer__col--center {
  text-align: center;
}

.footer__col--center img {
  width: 460px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.footer__col--right {
  text-align: right;
}
.footer__quote {
  font-family: 'Noto Serif';
  font-weight: 900;
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 20px;
  max-width: 490px;
  margin-left: auto;
  text-align: end;
}

.footer__quote-wrap {
  overflow: hidden;
  max-width: 490px;
  margin-left: auto;
  width: 490px;
}

.js-quote-draw {
    color: #000000;
    /* -webkit-text-stroke: 2px #ffffff; */
    width: 490px;
    margin: 0;
    margin-left: auto;
}
.footer__note {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 20px;
  text-align: end;
}
.footer__credits {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: end;
  align-items: center;
  column-gap: 20px;
}
.footer__credits-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
}
.footer__credits-logo img {
  height: 32px;
  width: auto;
  display: block;
}

/* ================= DESKTOP SCALING (1024px - 1600px) ================= */
/* Prevents overflow on laptops and smaller desktops */

@media (min-width: 1024px) and (max-width: 1600px) {

  /* ---- Page Titles ---- */
  .activities-page__title {
    font-size: clamp(100px, 10vw, 285px);
  }

  .club-page__title {
    font-size: clamp(100px, 10vw, 300px);
  }

  .member-page__title {
    font-size: clamp(100px, 10vw, 300px);
    line-height: 0.9;
  }

  .contact-page__title {
    font-size: clamp(100px, 10vw, 300px);
    line-height: 0.9;
  }

  /* ---- Hero ---- */
  .hero__40 {
    font-size: clamp(100px, 10vw, 180px);
  }

  .hero__years,
  .hero__one,
  .hero__passion {
    font-size: clamp(70px, 7vw, 120px);
    line-height: 1;
  }

  .hero__subtitle {
    font-size: clamp(24px, 2.5vw, 40px);
  }

  /* ---- About Section ---- */
  .about__content h2 {
    font-size: clamp(60px, 6vw, 100px);
    line-height: 1;
  }

  .about__content {
    padding: 60px;
  }

  /* ---- Activity Section Title ---- */
  .activity__header h2 {
    font-size: clamp(60px, 6vw, 100px);
  }

  /* ---- Flashbacks ---- */
  .flashbacks__header h2 {
    font-size: clamp(60px, 6vw, 100px);
  }

  .flashbacks__grid {
    grid-template-rows: auto auto auto;
  }

  /* ---- Membership Cards ---- */
  .membership__card h2 {
    font-size: clamp(35px, 3.5vw, 60px);
  }

  .card__quote {
    font-size: clamp(35px, 3.5vw, 60px);
  }

  .card__statement {
    font-size: clamp(24px, 2.5vw, 40px);
  }

  /* ---- Footer ---- */
  .footer__brand {
    font-size: clamp(100px, 10vw, 170px);
    line-height: 0.85;
  }

  .mobile-font {
    font-size: clamp(120px, 12vw, 210px);
    line-height: 0.85;
  }

  .footer__city {
    font-size: clamp(40px, 4vw, 70px);
    line-height: 1.1;
  }

  .footer__grid {
    grid-template-columns: 1fr minmax(250px, 460px) 1fr;
  }

  .footer__col--center img {
    width: 100%;
    max-width: 460px;
  }

  .footer__quote {
    font-size: clamp(35px, 3.5vw, 60px);
    line-height: 1.15;
    max-width: 100%;
  }

  .footer__note {
    font-size: clamp(18px, 1.8vw, 30px);
    line-height: 1.3;
  }

  /* ---- Activity Row Titles ---- */
  .activity-b__content h2 {
    font-size: clamp(50px, 5vw, 90px);
    line-height: 1.1;
  }

  /* ---- Contact Page ---- */
  .contact-page__meeting {
    font-size: clamp(60px, 6vw, 100px);
    line-height: 1;
  }

  .contact-page__illustration {
    max-width: clamp(500px, 45vw, 780px);
  }
}

/*===================Responsive===================*/

@media (max-width: 767px) {

  /* ---------------- HEADER ---------------- */
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  .logo {
    width: 142px;
  }
  .logo-bw{
    width: 142px;
    margin-top: -20px;
  }
  /* ---------------- HERO ---------------- */
  .hero {
    padding: 0;
    display: flex;
    align-items: center;
  }

  .hero__content {
    max-width: 90%;
    padding-left: 25px;
    padding-top: 250px;
  }

  /* 40 */
  .hero__40 {
    font-size: clamp(60px, 18vw, 100px);
    line-height: 77px;
    flex-basis: 100%;
    margin-right: 0;
  }
/* YEARS + ONE + PASSION */
  .hero__years,
  .hero__one,
  .hero__passion {
    font-size: clamp(40px, 12vw, 60px);
    line-height: 51px;
    top: 0px;
    margin-right: 0px;
  }

  .hero__title {
    overflow: hidden;
    width: 100%;
  }

  /* subtitle */
  .hero__subtitle {
    font-size: 20px;
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  /* button */
  .hero__btn {
    margin-top: 20px;
    font-size: 23px;
    line-height: 30px;
    padding: 5px 10px;
  }
  /* ---------------- ABOUT ---------------- */
  .about{
    margin-top: 0;
    margin-bottom: 0;

    padding: 35px 0;
  }
  .about__image{
    max-width: 370px;
  }

  .about__row{
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 0 35px;
  }

  .about__row--reverse {
     grid-template-columns: 1fr;
  }

  .about__row--reverse .about__image {
     order: 0;
  }

  .about__row--reverse .about__content {
    order: 1;
  }

  .about__content{
    padding: 50px 0;
  }

  .about__content h2 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 10px;
  }
  .about__content p {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 20px;
    padding-top: 30px;
    text-align: justify;
  }

  .about__link {
    font-size: 16px;
    line-height: 23px;
    text-align: start;
  }

  .about__content--right {
    text-align: start;
    align-items: start;
  }
 /* ================= CTA ================= */
  .cta {
    padding:0;
  }
  .cta__inner{
    margin: 0;
  }

  .cta__content{
    max-width: 316px;
    text-align: end;
    padding: 25px 25px;
  }
  .cta h2{
    font-size: 30px;
      margin-right: 100px;
  }
  .cta__btn {
    font-size: 12px;
    line-height: 20px;
    padding: 5px 9px;
    }

  .activity{
    padding: 40px 35px;
  }

  .activity__header{
    margin: 0;
    padding: 0;
  }

  .activity__header h2{
    font-size: 40px;
  }

  .activity-carousel-outer {
    padding: 0;
  }
  .activity-carousel .owl-nav {
    display: none;
  }
  .activity__card img {
    height: 329px;
  }
  .activity__card h3 {
    font-size: 14px;
  }
  .activity__card p,
  .activity__card-content div {
    font-size: 14px;
  }
  .activity__card a {
    font-size: 12px;
  }
  .flashbacks {
    padding: 50px 0;
  }

  .flashbacks__header {
    margin-bottom: 30px;
    padding-inline: 20px;
  }

  .flashbacks__header h2 {
    font-size: 40px;
    line-height: 1.1;
  }

  .flashbacks__grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px;
    max-width: none;
  }

  .flashbacks__grid::-webkit-scrollbar {
    display: none;
  }

  .flashback {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .flashback img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }

  .membership{
    padding: 50px 35px 0px;
  }
  .membership__cards {
    width: auto;
    padding: 0;
    margin: 0 auto;
    display: block;
  }
  .membership__card{
    padding: 35px;
    min-height: 0;
    margin-bottom: 40px;
  }
  .card__content{
    text-align: end;
  }
  .card__content h2{
    font-size: 30px;
  }
  .card__small{
    font-size: 14px;
    margin-top: -15px;
  }
  .card__statement{
    font-size: 22px;
    margin-top: 0;
  }

  .card__btn{
    padding: 8px 21px;
    font-size: 14px;
    margin-top: 35px;
  }
  .start{
    text-align: start;
  }
  .card__quote {
    font-size: 30px;
    line-height: 35px;
    max-width: 220px;
    margin-top:50px;
  }
  .card__note {
    font-size: 18px;
    line-height: 26px;
    max-width: 220px;
  }
  .card__link{
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 40px;
  }
  /*===== CLub Page =====*/
  .club-page {
    padding: 80px 35px 0 35px;
  }
  .club-page__title {
    font-size: 40px;
    line-height: 70px;
    margin: 0;
    padding: 90px 0 0;
  }
  .club-page__content {
    margin-bottom: 80px;
    text-align: justify;
    margin-top: 46px;
  }
  .club-page__text{
    column-count: 1;
    column-gap: 60px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 23px;
    overflow-y: hidden;
  }
  .club-page__image img {
    width: 100%;
    height: 857px;
    display: block;
    object-fit: cover;
  }
    /* CLUB PAGE TABS - scrollable on mobile */
  .club-page__tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    gap: 15px;
    padding-bottom: 10px;
  }
  .club-page__tabs::-webkit-scrollbar { display: none; }

  .club-page__tabs .club-page__tab {
    white-space: nowrap;
    font-size: 14px;
    flex-shrink: 0;
  }

  .club-page__tab.active {
    padding: 5px 20px 0;
    margin-left: 0;
  }

  /* ACTIVITIES PAGE TABS - scrollable on mobile */
  .activities-page__tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    gap: 15px;
    padding-bottom: 10px;
  }
  .activities-page__tabs::-webkit-scrollbar { display: none; }

  .activities-page__tabs .activities-page__tab {
    white-space: nowrap;
    font-size: 14px;
    flex-shrink: 0;
  }

  /*============CLUB ACTIVITIES==========*/
  .activities-page__hero {
    padding: 160px 30px 0;
  }
  .activities-page__title {
    font-size: 50px;
    line-height: 80px;
    word-break: break-all;
  }
  .activity-b {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 30px 50px;
  }
  .activity-b:not(:nth-child(even)) .activity-b__content{
    margin-right:0;
  }
  .activity-b:nth-child(even) .activity-b__content {
    margin-left:0;
    text-align: left;
  }
  .activity-b:nth-child(even) .activity-b__image {
     order:unset;
  }
  .activity-b__content h2 {
    font-size: 30px;
    margin-bottom: 40px;
    margin-right: 0;
    line-height: 30px;
  }
  .activity-b__content p{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: 0;
    font-weight: 300;
  }
  .activity-b__content a {
    margin-right: 0;
    font-size: 16px;
    line-height: 20px;
  }
  /*=========SINGLE NEWS PAGE========*/
  .activity-single__gallery{
    display: none;
  }
  .activity-single__header {
    padding: 30px;
  }
  .activity-single__title {
    font-size: 35px;
    line-height: 80px;
    word-break: break-word;
  }
  .activity-single__intro {
    font-size: 16px;
  }
  .activity-single__nav {
    padding: 30px;
  }
  .activity-single__back {
    align-self: flex-end;
    font-size: 14px;
  }
  .activity-single__next {
    padding: 9px 25px;
    font-size: 18px;
  }
  .activities_mob h2{
    font-family: 'Noto Serif Display';
    font-weight: 900;
    font-size: 40px;
    line-height: 40px!important;
    padding-bottom: 20px;
  }
  /*==========BECOME A MEMBER PAGE========*/
  .member-page__hero {
    padding: 180px 30px 0;
  }
  .member-page__title{
    font-size: 50px;
    line-height: 50px;
    margin: 0 0 30px 0;
  }
  .member-application{
    padding: 30px;
  }
  .member-application__wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 71px;
  }
  .member-application__card {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
  }
  .member-application__title {
    /* font-size: 30px; */
    font-weight: 400;
    line-height: 30px;
    margin: 0 0 40px 0;
  }
  .member-application__form {
    gap: 30px;
  }
  .form-group {
    margin-bottom: 10px;
  }
  .form-group input, .form-group textarea {
    font-size: 14px;
    font-weight: 300;
  }
  .member-application__btn {
    padding: 14px 25px;
    font-size: 14px;
    line-height: 14px;
  }
  .member-page__text p {
    font-size: 16px;
    text-align: justify;
  }
  .member-application__image img {
    width: 360px;
    padding-bottom: 80px;
  }
  /*============== CONTACT PAGE ==============*/
  .contact-page {
    background: #f4f3ee;
    padding: 100px 30px 0;
    overflow: hidden;
  }
  .contact-page__hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: unset;
  }
  .contact-page__title {
    font-size: 45px;
    line-height: 60px;
    word-break: break-word;
  }
  .contact-o-inv {
    color: #000000;
  }
  .contact-page__illustration {
    grid-column: 1;
    grid-row: 2;
    max-width: 280px;
    /*margin-left: -30px;*/
    margin-top: 20px;
  }
  .contact-page__info {
    grid-column: 1;
    grid-row: 3;
    text-align: right;
    padding-bottom: 40px;
    padding-top: 20px;
  }
  .contact-page__meeting {
    font-size: 50px;
    line-height: 55px;
    margin: 0 0 10px 0;
  }
  .contact-page__address{
    font-size: 18px;
    line-height: 23px;
  }
  .contact-page__note {
    font-size: 14px;
    line-height: 20px;
  }
  .contact-section {
    padding: 0 30px 40px;
  }
  .contact-section__form {
    padding: 30px 40px;
  }
  .contact-section__wrapper {
    gap: 30px;
    display: flex;
    flex-direction: column;
  }
  .contact-section__form-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .form-btn{
    padding: 6px 15px;
    font-size: 14px;
    line-height: 16px;
  }
  .contact-section__info {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact-info__header h3{
    font-size: 30px;
    line-height: 40px;
    margin: 0;
  }
  .contact-info__header p{
    font-size: 12px;
    line-height: 16px;
    margin: 0;
  }
  .contact-info__row {
    gap: 40px;
  }
  .contact-info__item {
    gap: 25px;
  }
  .contact-info__item p{
    font-size: 14px;
    line-height: 18px;
  }
  .contact-info__item img {
    width: 62px;
  }
  .contact-info__social {
    gap: 10px;
  }
  .social-item img {
    width: 40px;
    margin: 0 auto 20px auto;
  }
  .social-item a {
    font-size: 12px;
    line-height: 14px;
      text-decoration: none;
  }
  /*=====Footer=====*/
  .footer {
    padding: 50px 35px;
  }
  .footer__grid{
    display: flex;
    flex-direction: column;
      align-items: start;
  }
  .footer__brand {
    font-size: 93px;
    line-height: 80px;
  }
  .mobile-font{
    font-size: 115px;
    line-height: 95px;
    letter-spacing: -0.03em;
  }
  .footer__col--left {
      padding-bottom: 0;
  }
  .footer__city {
    font-size: 35px;
    line-height: 45px;
    letter-spacing: 0.12em;
    margin-bottom: 15px;
  }
  .footer__info p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 20px;
    max-width: 160px;
  }
  .footer__info a {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 20px;
    max-width: 160px;
  }
  .footer__col--center img {
    width: 180px;
    margin-top: -240px;
    position: relative;
    left: 160px;
    top: 110px;
  }
  .footer__quote-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
  .footer__quote{
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
    max-width: 75%;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    text-align: start;
  }
  .footer__note{
    font-size: 20px;
    line-height: 20px;
    text-align: start;
  }
  .footer__credits {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    column-gap: 20px;
  }
  .footer__credits-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
  }
  .footer__credits-logo{
    display: flex;
    gap: 20px;
  }
  .copyrights-mb{
    font-size: 10px;
    text-align: left;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {

  /* ---------------- HEADER ---------------- */
  .desktop-only {
    display: flex;
  }
  .mobile-only {
    display: none;
  }
  .header__inner{
    padding-right: 20px;
    width: 100%;
  }
  .nav a{
    font-size: 18px;
  }
  /* ---------------- HERO ---------------- */
  .hero {
    padding: 0;
    display: flex;
    align-items: center;
  }

  .hero__content {
    max-width: 90%;
    padding-left: 25px;
    padding-top: 310px;
  }

  /* 40 */
  .hero__40 {
    font-size: 130px;
    line-height: 70px;
    bottom: 19px;
    position: relative;
  }
/* YEARS + ONE + PASSION */
  .hero__years,
  .hero__one,
  .hero__passion {
    font-size: 80px;
    line-height: 60px;
    top: 10px;
    margin-right: 0px;
  }

  /* subtitle */
  .hero__subtitle {
    font-size: 20px;
    line-height: 20px;
    margin-top: 40px;
  }

  /* button */
  .hero__btn {
    margin-top: 20px;
    font-size: 23px;
    line-height: 30px;
    padding: 5px 10px;
  }
  /* ---------------- ABOUT ---------------- */
  .about{
    margin-top: 0;
    margin-bottom: 0;

    padding: 35px 0;
  }
  .about__image{
    max-width: 400px;
  }

  .about__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    padding: 0px 35px;
    min-height: auto;
  }

  .about__content{
    padding: 50px 0;
  }

  .about__content h2 {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 10px;
  }
  .about__content p {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 20px;
    padding-top: 30px;
    text-align: justify;
    width: 380px;
  }

  .about__link {
    font-size: 16px;
    line-height: 23px;
    text-align: start;
  }

  .about__content--right {
    text-align: start;
    align-items: start;
    width: 365px;
  }
 /* ================= CTA ================= */
  .cta {
    padding:0;
  }
  .cta__inner{
    margin: 0;
  }

  .cta__content{
    max-width: 316px;
    text-align: end;
    padding: 25px 25px;
  }
  .cta h2{
    font-size: 30px;
  }
  .cta__btn {
    font-size: 12px;
    line-height: 20px;
    padding: 5px 9px;
  }

  .activity{
    padding: 40px 35px;
  }

  .activity__header{
    margin: 0;
    padding: 0 40px;
  }
  .activity__header h2{
    font-size: 40px;
  }
  .activity-carousel-outer {
    padding: 0 40px;
  }
  .activity__card h3 {
    font-size: 14px;
  }
  .activity__card p,
  .activity__card-content div {
    font-size: 14px;
  }
  .activity__card a {
    font-size: 12px;
  }
  .flashbacks {
    padding: 80px 0;
  }

  .flashbacks__header {
    margin-bottom: 40px;
  }

  .flashbacks__header h2 {
    font-size: 60px;
  }

  .flashbacks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;
  }

  .flashback--1 { grid-column: 1; grid-row: 1; }
  .flashback--2 { grid-column: 2 / 4; grid-row: 1; }
  .flashback--3 { grid-column: 1; grid-row: 2; }
  .flashback--4 { grid-column: 2; grid-row: 2; }
  .flashback--5 { grid-column: 3; grid-row: 2; }

  .flashback img {
    height: 250px;
  }

  .membership{
    padding: 50px 35px;
  }
  .membership__illustration {
    max-width: 1000px;
    margin: 0 auto 10px 120px;
  }
  .membership__cards {
    width: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .membership__card{
    padding: 35px;
    min-height: 0;
    margin-bottom: 40px;
  }
  .card__content{
    text-align: end;
  }
  .card__content h2{
    font-size: 30px;
  }
  .card__small{
    font-size: 14px;
    margin-top: -15px;
  }
  .card__statement{
    font-size: 20px;
    margin-top: 0;
  }

  .card__btn{
    padding: 8px 21px;
    font-size: 14px;
    margin-top: 30px;
  }
  .start{
    text-align: start;
  }
  .card__quote {
    font-size: 30px;
    line-height: 35px;
    max-width: 220px;
  }
  .card__note {
    font-size: 18px;
    line-height: 26px;
    max-width: 220px;
    margin-top: -20px;
  }
  .card__link{
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 40px;
  }
  /*===== CLub Page =====*/
  .club-page {
    padding: 80px 35px 0 35px;
  }
  .club-page__title {
    font-size: 74px;
    line-height: 0.9;
    margin: 0;
    padding: 90px 0 20px;
  }
  .club-page__tab.active {
    padding: 3px 25px;
  }
  .club-page__tabs {
    gap: 25px;
    flex-direction: row;
    margin-bottom: 30px;
    padding: 0;
    align-items: flex-start;
  }
  .club-page__content {
    margin-bottom: 80px;
    text-align: justify;
  }
  .club-page__text{
    column-count: 1;
    column-gap: 60px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 23px;
    overflow-y: hidden;
  }
  .club-page__image img {
    width: 100%;
    height: 857px;
    display: block;
    object-fit: cover;
  }
  /*============CLUB ACTIVITIES==========*/
  .activities-page__hero {
    padding: 160px 30px 35px;
  }
  .activities-page__title {
    font-size: 85px;
    line-height: 80px;
  }
  .activities-page__tabs{
    gap: 25px;
    flex-direction: row;
    margin-bottom: 30px;
    padding: 0 35px;
    align-items: flex-start;
  }
  .activity-b {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
  }
  .activity-b:not(:nth-child(even)) .activity-b__content{
    margin-right:0;
  }
  .activity-b:nth-child(even) .activity-b__content {
    margin-left:0;
    text-align: left;
  }
  .activity-b:nth-child(even) .activity-b__image {
     order:unset;
  }
  .activity-b__content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    margin-right: 0;
    line-height: 40px;
  }
  .activity-b__content p{
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: 0;
    font-weight: 300;
  }
  .activity-b__content a {
    margin-right: 0;
    font-size: 16px;
    line-height: 20px;
  }
  /*=========SINGLE NEWS PAGE========*/
  .activity-single__gallery{
    display: none;
  }
  .activity-single__header {
    padding: 30px;
  }
  .activity-single__title {
    font-size: 91px;
    line-height: 0.9;
    word-break: break-word;
  }
  .activity-single__nav {
    padding: 30px;
  }
  .activity-single__back {
    align-self: flex-end;
    font-size: 14px;
  }
  .activity-single__next {
    padding: 9px 25px;
    font-size: 18px;
  }
  .activities_mob h2{
    font-family: 'Noto Serif Display';
    font-weight: 900;
    font-size: 40px;
    line-height: 40px!important;
    padding-bottom: 20px;
  }
  /*==========BECOME A MEMBER PAGE========*/
  .member-page__hero {
    padding: 180px 30px 0;
  }
  .member-page__title{
    font-size: 75px;
    line-height: 70px;
    margin: 0 0 30px 0;
  }
  .member-application{
    padding: 80px 30px;
  }
  .member-application__wrapper{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:120px;
  }
  .member-application__image img{
    width: 400px;
    max-width: 100%;
    height: auto;
  }
  .member-application__card {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 357px;
    min-height: auto;
  }
  .member-application__title {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 40px 0;
  }
  .member-application__form {
    gap: 30px;
  }
  .form-group {
    margin-bottom: 10px;
  }
  .form-group input, .form-group textarea {
    font-size: 14px;
    font-weight: 300;
  }
  .member-application__btn {
    padding: 14px 25px;
    font-size: 14px;
    line-height: 14px;
  }
  /*============== CONTACT PAGE ==============*/
  .contact-page {
    background: #f4f3ee;
    padding: 150px 30px 0;
    overflow: hidden;
  }
  .contact-page__hero {
    min-height: 860px;
  }
  .contact-page__title {
    font-size: 80px;
    line-height: 75px;
  }
  .contact-o-inv {
    color: #000000;
  }
  .contact-page__illustration {
    max-width: 430px;
    margin-left: -30px;
  }
  .contact-page__info {
    padding-bottom: 40px;
  }
  .contact-page__meeting {
    font-size: 50px;
    line-height: 55px;
    margin: 0 0 10px 0;
  }
  .contact-page__address{
    font-size: 18px;
    line-height: 23px;
  }
  .contact-page__note {
    font-size: 14px;
    line-height: 30px;
  }
  .contact-section {
    padding: 0 30px 40px;
    margin-top: -70px;
  }
  .contact-section__form {
    padding: 30px 40px;
    width: 500px;
  }
  .contact-section__wrapper {
    gap: 30px;
    display: flex;
    flex-direction: row;
  }
  .contact-section__form-title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }
  .form-btn{
    padding: 6px 15px;
    font-size: 14px;
    line-height: 16px;
  }
  .contact-section__info {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contact-info__header h3{
    font-size: 30px;
    line-height: 40px;
    margin: 0;
  }
  .contact-info__header p{
    font-size: 12px;
    line-height: 16px;
    margin: 0;
  }
  .contact-info__row {
    gap: 40px;
  }
  .contact-info__item {
    gap: 25px;
  }
  .contact-info__item p{
    font-size: 14px;
    line-height: 18px;
  }
  .contact-info__item img {
    width: 62px;
  }
  .contact-info__social {
    gap: 10px;
  }
  .social-item img {
    width: 40px;
    margin: 0 auto 20px auto;
  }
  .social-item a {
    font-size: 12px;
    line-height: 14px;
    text-decoration: none;
  }
 /*=====Footer=====*/
  .footer {
    padding: 50px 35px;
  }
  .footer__grid{
    display: flex;
    flex-direction: row;
  }
  .footer__brand {
    font-size: 93px;
    line-height: 80px;
  }
  .mobile-font{
    font-size: 115px;
  }
  .footer__city {
    font-size: 35px;
    line-height: 45px;
    letter-spacing: 0.12em;
    margin-bottom: 40px;
  }
  .footer__info p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 20px;
    max-width: 160px;
  }
  .footer__col--center img {
    width: 370px;
    margin-top: -368px;
    position: relative;
    left: 0;
    top: 50px;
    margin-left: -70px;
  }
  .footer__quote{
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
    max-width: 237px;
    margin-left: 0;
    margin-top: -10px;
    text-align: end;
  }
  .footer__note{
    font-size: 20px;
    line-height: 24px;
    text-align: end;
  }
  .footer__credits {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    column-gap: 20px;
  }
  .footer__credits-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
  }
  .footer__credits-logo{
    display: flex;
  }
  .copyrights-mb{
    font-size: 8px;
  }
}

/* -------- Small tablet overrides (768-820px) -------- */
@media (min-width: 768px) and (max-width: 820px) {
  .about__row {
    column-gap: 80px;
  }

  .footer__col--center img {
    width: 260px;
    top: 30px;
  }
}

/* ===================================================
   BACK TO TOP BUTTON
   =================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: scale(1.1);
  background: #f0f0f0;
}

/* ===================================================
   CONTENT AREAS - Lists & Typography
   =================================================== */

.member-page__text ul,
.simple-page__content ul {
  list-style: disc;
  padding-left: 25px;
  margin: 15px 0;
}

.member-page__text ol,
.simple-page__content ol {
  list-style: decimal;
  padding-left: 25px;
  margin: 15px 0;
}

.member-page__text li,
.simple-page__content li {
  margin-bottom: 5px;
}

/* ===================================================
   PARALLAX IMAGE
   =================================================== */

.club-page__parallax {
  width: 100%;
  height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .club-page__parallax {
    background-attachment: scroll;
    height: 300px;
  }
}
