html {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #fafafa;
}

header {
    background: #111;
    color: white;
    width: 100%;
}

header .container {
    max-width: 1200px;
    /* Ова го собира header-от */
    margin: 0 auto;
    /* Центрирање */
    padding: 20px 20px;
    /* Комфорен padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    /* Мал простор меѓу елементите */
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    height: 90px;
    padding: 6px 0;
}

nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    cursor: pointer;
    font-size: 18px;
    font-family: Inter, sans-serif;
    color: #ffffff;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.2s ease;
}

nav ul li:hover {
    color: #F8C47B;
    /* златеста при hover */
}

.nav-toggle {
    display: none;
    /* ќе го вклучиме само на мобилен */
    background: transparent;
    border: 1px solid #ffffff33;
    border-radius: 6px;
    color: #ffffff;
    font-size: 22px;
    padding: 4px 10px;
    cursor: pointer;
}

/* АКТИВНО МЕНИ (Home, Coaches...) */
nav ul li.active {
    color: #C32A35;
    /* primary red */
}

nav ul li.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    background: #C32A35;
    border-radius: 999px;
}

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: 1px solid white;
    padding: 6px 14px;
    color: white;
    cursor: pointer;
    border-radius: 6px;
}

.lang-btn.active {
    background: #C32A35;
    border-color: #C32A35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-inner {
    position: relative;
    max-width: 640px;
    color: #fff;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #C32A35;
    /* primary red */
    color: #fff;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.about {
    display: flex;
    gap: 48px;
    padding: 0px 20px 0px;
    /* top 30px, left/right 60px, bottom 60px */
    align-items: center;
    background: #FCFDFE;
    /* светло бело од палетата */
    box-sizing: border-box;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #111111;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.about-list li {
    font-size: 18px;
    color: #222222;
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #C32A35;
    /* primary red */
    font-weight: 700;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0px 20px;
}

.about-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
}

.about-long-text {
    margin-top: 20px;
}

.about-long-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
    text-align: justify;
}

/* VIDEOS GRID */
.about-videos {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.about-videos video {
    width: 100%;
    height: auto;
    max-height: 330px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    background: #000;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .about-videos {
        grid-template-columns: 1fr;
    }

    .about-videos video {
        max-height: 260px;
    }
}

/* Responsive за мобилен */
@media (max-width: 700px) {
    .about-videos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-videos iframe {
        height: 280px;
    }
}

/*Sekcija Home*/
.home-content {
    max-width: 800px;
}

.home-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.home-text {
    font-size: 18px;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 20px;
    text-align: justify;
}

.btn-primary {
    background: #C32A35;
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

/* =========================== */
/* HERO HIGH-FIDELITY SECTION */
/* =========================== */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 680px;
    background: #111111;
    /* темна позадина */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
    box-sizing: border-box;
    color: #ffffff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(195, 42, 53, 0.5), transparent 55%);
    opacity: 0.8;
}

.hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

.hero-text-block {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    /* да се гледа цело */
    border-radius: 28px;
    box-shadow: none;
    /* опционално – без сенка за чисто лого */
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0 0 28px 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Копчиња – ако веќе ги имаш, остави ги твоите или користи овие */
.btn {
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary {
    background: #C32A35;
    color: #fff;
    border: none;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* =============================== */
/* HOME SECTION - High Fidelity */
/* =============================== */
.home {
    background: #ffffff;
    padding: 0px 20px 0px;
    display: flex;
    justify-content: center;
}

.home-inner {
    max-width: 900px;
    text-align: center;
}

.home-title {
    font-size: 40px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.home-text {
    font-size: 18px;
    color: #444444;
    line-height: 1.7;
    /*margin-bottom: 32px;*/
    padding: 0 20px;
}

.btn-primary {
    background: #C32A35;
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: #a5222b;
}

.projects {
    width: 100%;
    padding: 80px 20px;
    background: #ffffff;
    box-sizing: border-box;
}

.projects-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px auto;
}

.projects-header .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
}

.projects-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-top: 10px;
}

.spear-btn {
    width: 100%;
    margin-top: 10px;
}

/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* PROJECT CARD */
.project-card {
    background: #FCFDFE;
    border-radius: 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.project-footer {
    margin-top: auto;
    /* го турка footer-от на дното */
}

.project-footer .btn {
    width: 100%;
    /* ако сакаш копчето да е цела ширина како сега */
}

.project-tag {
    font-size: 13px;
    font-weight: 700;
    color: #C32A35;
    background: rgba(195, 42, 53, 0.12);
    padding: 4px 12px;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 10px;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px 0;
}

.project-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.project-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.project-logo img {
    max-width: 130px;
    max-height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.project-image {
    width: 100%;
    height: 160px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-link,
.project-file {
    color: #a6252d;
    font-weight: 600;
    text-decoration: none;
}

.project-link:hover,
.project-file:hover {
    text-decoration: underline;
}

.project-file {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C32A35;
    font-weight: 600;
    text-decoration: none;
}

.project-file:hover {
    text-decoration: underline;
}

.pdf-icon {
    width: 22px;
    height: 22px;
}

.project-image-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C32A35;
    font-weight: 600;
    text-decoration: none;
}

.project-image-link:hover {
    text-decoration: underline;
}

.photo-icon {
    width: 22px;
    height: 22px;
}

.project-image-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    /* вертикален / хоризонтален простор */
    margin-top: 12px;
}

.project-image-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #C32A35;
    font-weight: 600;
    text-decoration: none;
}

.project-image-link:hover {
    text-decoration: underline;
}

.photo-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* MOBILE — project */
@media (max-width: 700px) {
    .project-images-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        /* растојание меѓу линкови */
        margin-top: 10px;
    }

    .project-image-link {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        padding: 8px 0;
    }

    .photo-icon {
        width: 22px;
        height: 22px;
    }
}

/* =============================== */
/* COACHES SECTION - High Fidelity */
/* =============================== */
.coaches {
    width: 100%;
    padding: 100px 80px;
    background: #FCFDFE;
    box-sizing: border-box;
}

.coaches-header {
    max-width: 800px;
    margin: 0 auto 48px auto;
    text-align: center;
}

.coaches-header .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
}

.coaches-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.coaches-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.coach-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    padding: 24px;
    max-width: 320px;
    text-align: center;
}

.coach-image {
    width: 100%;
    margin-bottom: 16px;
}

.coach-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
}

.coach-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.coach-role {
    font-size: 16px;
    font-weight: 600;
    color: #C32A35;
    margin-bottom: 10px;
}

.coach-bio {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* ===== HISTORY SECTION ===== */
.history {
    padding: 60px 20px;
    background: #f7f7f7;
}

.history-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.history .section-title {
    margin-bottom: 10px;
}

.history-intro {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

/* ВЕРТИКАЛНА ЛИНИЈА */
.history-timeline {
    position: relative;
    margin: 50px auto 0;
    padding-left: 40px;
    border-left: 3px solid #d32f2f;
}

/* ЕДЕН ЗАПИС (ГОДИНА + ТЕКСТ) */
.history-item {
    position: relative;
    margin-bottom: 40px;
}

/* ГОДИНА */
.history-year {
    font-size: 20px;
    font-weight: 750;
    color: #d32f2f;
    margin-bottom: 7px;
}

/* ЦРВЕНО КРУГЧЕ НА ЛИНИЈАТА */
.timeline-dot {
    position: absolute;
    left: -20px;
    /* малку лево од линијата */
    top: 5px;
    width: 10px;
    height: 10px;
    background: #d32f2f;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px #d32f2f;
}

/* ТЕКСТОТ ДЕСНО */
.timeline-content {
    padding: 8px 0 0 6px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.timeline-content p {
    margin-bottom: 8px;
}

.timeline-content ul {
    padding-left: 20px;
    margin: 6px 0 10px 0;
}

.timeline-content ul li {
    margin-bottom: 6px;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
    .history {
        padding: 60px 12px;
    }

    .history-timeline {
        padding-left: 38px;
    }

    .history-year {
        font-size: 18px;
        padding-left: 15px;
    }

    .timeline-dot {
        left: -9px;
        top: 6px;
        width: 10px;
        height: 10px;
    }

    .timeline-year {
        font-size: 15px;
        padding-left: 8px;
        /* Доволно да се оддалечи од кругчето */
    }

    .timeline-content {
        padding-left: 6px;
        /* малку десно да не лета текстот */
    }
}

/* =============================== */
/* PROGRAMS SECTION - High Fidelity*/
/* =============================== */
.programs {
    width: 100%;
    padding: 100px 80px;
    background: #ffffff;
    box-sizing: border-box;
}

.programs-header {
    max-width: 800px;
    margin: 0 auto 48px auto;
    text-align: center;
}

.programs-header .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
}

.programs-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1100px) {
    .programs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

.program-card {
    background: #FCFDFE;
    border-radius: 22px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    padding: 24px 22px;
    text-align: left;
}

.program-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.program-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.program-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

/* =============================== */
/* SCHEDULE SECTION - High Fidelity */
/* =============================== */
.schedule {
    width: 100%;
    padding: 100px 100px;
    background: #ffffff;
    box-sizing: border-box;
}

.schedule-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.schedule-header .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    padding-bottom: 110px;
    color: #111;
}

.schedule-intro {
    font-size: 18px;
    color: #555;
}

.schedule-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.schedule-table thead tr {
    background: #C32A35;
    color: white;
}

.schedule-table thead th {
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
}

.schedule-table tbody tr {
    background: #FCFDFE;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.schedule-table tbody td {
    padding: 18px;
    font-size: 16px;
    color: #333;
}

.schedule-table tbody tr td:first-child {
    font-weight: 700;
}

.schedule-table tbody tr td:last-child {
    font-size: 15px;
}
@media (max-width: 768px) {

  .schedule {
      padding: 60px 16px;
  }

  .schedule-header {
      margin-bottom: 24px;
  }

  .schedule-intro {
      text-align: justify;
      text-justify: inter-word;
  }

  /* Табелата се претвора во „картички“ */
  .schedule-table {
      width: 100%;
      border-collapse: collapse;
      display: block;
  }

  .schedule-table thead {
      display: none;         /* криење header редот */
  }

  .schedule-table tbody {
      display: block;
  }

  .schedule-table tbody tr {
      display: block;
      background: #FCFDFE;
      margin-bottom: 16px;
      padding: 16px 14px;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  }

  .schedule-table tbody td {
      display: block;
      width: 100%;
      padding: 4px 0;
      font-size: 15px;
      text-align: left;
  }

  /* Црвена етикета над секоја вредност */
  .schedule-table tbody td::before {
      content: attr(data-label);
      display: block;
      font-weight: 700;
      color: #C32A35;
      margin-bottom: 2px;
  }

  /* Локацијата може да биде justify, да не висат редови */
  .schedule-table tbody td[data-label="Локација"] {
      text-align: justify;
      text-justify: inter-word;
  }
}


/* =============================== */
/* GALLERY SECTION - High Fidelity */
/* =============================== */
.gallery {
    width: 100%;
    padding: 100px 80px;
    background: #FCFDFE;
    box-sizing: border-box;
}

.gallery-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.gallery-header .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111;
}

.gallery-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.gallery-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 1000px) {
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== LIGHTBOX ===== */
/* .lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); justify-content: center; align-items: center; z-index: 9999; } .lightbox-img { max-width: 90%; max-height: 80%; border-radius: 10px; box-shadow: 0px 0px 25px rgba(0,0,0,0.6); } */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.open {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
}

.lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    background: #fff;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: relative;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    transition: transform 0.15s ease, background 0.15s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    transform: scale(1.05);
    background: #ffffff;
}

.lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    font-size: 2rem;
}

.lightbox-prev,
.lightbox-next {
    font-weight: bold;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.lightbox-nav .prev-btn,
.lightbox-nav .next-btn {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.prev-btn:hover,
.next-btn:hover {
    color: #C32A35;
}

/* kopcinja za proekti */
.btn-sm {
    padding: 0.6rem 1.2rem;
    /* помала висина и ширина */
    font-size: 0.9rem;
    /* малку помало фонтче */
}

/* =============================== */
/* FOOTER SECTION - High Fidelity */
/* =============================== */

.footer {
    /* width: 100%; */
    background: #111111;
    color: #ffffff;
    padding: 40px 0 20px 0;
    /* padding: 60px 80px 30px 80px; */
    /* box-sizing: border-box; */
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    /* margin: 0 auto 24px auto; */
    align-items: flex-start;
    display: flex;
    /* flex-wrap: wrap; */
    gap: 40px;
    justify-content: space-between;
}
/* sekoj blok */
.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-logo img {
    height: 64px;
    margin-bottom: 12px;
}

.footer-club-name {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

/* Икономија на простор */
.footer-text,
.footer-title {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* .footer-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.footer-text {
    font-size: 15px;
    color: #DDDDDD;
    line-height: 1.6;
    margin: 0 0 6px 0;
} */

/* .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    text-align: center;
}

.footer-bottom-text {
    font-size: 14px;
    color: #aaaaaa;
    margin: 0;
} */
 /* Долен дел */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #333;
}

.footer-bottom-text {
    color: #aaaaaa;
    font-size: 14px;
}

/* Икона */
.footer-icon {
    margin-right: 6px;
    font-size: 16px;
    color: #C32A35;
}

/* Линк */
.footer-link {
    color: #C32A35;
    font-weight: 600;
    text-decoration: none;
}
.footer-link:hover {
    text-decoration: underline;
}

/* .footer-icon {
    color: #C32A35;
    margin-right: 6px;
    font-size: 18px;
} */

/* .footer-link {
    color: #C32A35;
    font-weight: 600;
    text-decoration: none;
} */


@media (max-width: 700px) {
    .footer {
        /* padding: 10px 24px 24px 50px; */
        padding: 40px 20px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .footer-block {
        width: 100%;
    }

    .footer-text {
        font-size: 16px;
    }

    .footer-social {
        justify-content: center;
    }
}

.footer-social-link {
    color: #C32A35;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.footer-social-link:hover {
    text-decoration: underline;
    color: #e03b46;
    /* малку посветла црвена при hover */
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #C32A35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0px 4px 10px rgba(195, 42, 53, 0.4);
    transition: 0.25s ease;
}

.social-icon:hover {
    background: #e03b46;
    transform: scale(1.12);
    box-shadow: 0px 6px 14px rgba(195, 42, 53, 0.6);
}

/* =============================== */
/* CONTACT SECTION - High Fidelity */
/* =============================== */
.contact {
    width: 100%;
    /* padding: 100px 60px; */
    padding: 40px 20px;
    background: #ffffff;
    box-sizing: border-box;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-details .contact-line {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 280px;
}

.contact-form {
    background: #FCFDFE;
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    padding: 24px 24px 28px 24px;
}

.email-link {
    color: #C32A35;
    font-weight: 600;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-row label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

.form-row input,
.form-row textarea {
    border-radius: 10px;
    border: 1px solid #dddddd;
    padding: 10px 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: #C32A35;
    box-shadow: 0 0 0 2px rgba(195, 42, 53, 0.15);
}

/* Contact icons */
.icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: #C32A35;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-link {
    color: #C32A35;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {

    /* Секцијата да има помал padding на мобилен */
    .contact {
        padding: 30px 16px;
    }

    /* Наместо две колони – еден под друг блокови */
    .contact-inner {
        flex-direction: column;
        gap: 24px;
    }

    .contact-info,
    .contact-form-wrapper {
        min-width: 100%;
    }

    /* Текстот да биде justify како другите секции */
    .contact-intro,
    .contact-details .contact-line {
        text-align: justify;
        text-justify: inter-word;
    }

    /* Линиите да не се толку „расеани“ */
    .contact-line {
        gap: 8px;
        margin-bottom: 12px;
    }

    /* Формата малку потесна и попријатна на мобилен */
    .contact-form {
        padding: 20px 16px;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    }

    .form-row input,
    .form-row textarea {
        font-size: 16px;
    }
}

/* =============================== */
/* BACK TO TOP BUTTON */
/* =============================== */
#backToTop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #C32A35;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 50;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#backToTop:hover {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    header .container {
        padding: 0 16px;
        gap: 12px;
    }

    .logo span {
        font-size: 16px;
    }

    /* ПРИКАЖИ hamburger, СКРИЈ nav по дифолт */
    .nav-toggle {
        display: block;
    }

    header nav {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #111111;
        padding: 12px 16px 16px 16px;
        display: none;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    header nav ul li {
        padding: 6px 0;
    }

    /* кога е отворено (JS ќе додава .open) */
    header nav.open {
        display: block;
    }

    .lang-switch {
        margin-left: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* HERO – вертикален layout */
    .hero {
        height: auto;
        min-height: 0;
        padding: 80px 16px 60px 16px;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }
}
/* Zaednicko pravilo za site sekcii na mobilno */
@media (max-width: 768px) {

  /* сите главни секции на страната */
  .hero,
  .projects,
  .history,
  .programs,
  .coaches,
  .schedule,
  .gallery,
  .contact {
    padding-top: 40px;   /* наместо 80–100px */
    padding-bottom: 40px;
  }

  /* ако имаш некаде големи margin-top/margin-bottom */
  .projects,
  .history,
  .programs,
  .coaches,
  .schedule,
  .gallery,
  .contact {
    margin-top: 0;
    margin-bottom: 32px; /* умерен простор меѓу секциите */
  }

  /* малку помал gap меѓу картичките во проекти, ако го имаш */
  .projects-grid {
    row-gap: 24px;
  }
  /* PROGRAMS секција */
  .programs,
  .coaches {
    padding: 20px 0 !important;
  }
  
}

/* MOBILE TUNING */
@media (max-width: 768px) {

  body {
    font-size: 15px;
    line-height: 1.6;
  }

  h1, .section-title {
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
  }

  h2, h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  /* глобално намалени падинзи за секции */
  .hero,
  .projects,
  .history,
  .programs,
  .coaches,
  .schedule,
  .gallery,
  .contact {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  /* малку помал gap меѓу блокови */
  section {
    margin-bottom: 24px;
  }

  /* HERO */
  .hero {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 24px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-image {
    max-width: 260px;
    margin: 0 auto;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }
  /* Projects */
  .projects {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  .projects-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .project-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .project-tag {
    font-size: 12px;
  }

  .project-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .project-text {
    font-size: 14px;
  }

  .project-card .btn {
    width: 100%;
    font-size: 14px;
    padding: 8px 12px;
  }

  .project-card a.project-link {
    font-size: 14px;
    word-break: break-word;
  }

  /* History */
  .history {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .history-timeline {
    padding-left: 0;
    margin-left: 0;
  }

  .history-item {
    padding-left: 18px;
    margin-bottom: 20px;
  }

  .history-year {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .history-item p {
    font-size: 14px;
  }
  /* Programs & Coaches */
  .programs,
  .coaches {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .programs-grid,
  .coaches-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .program-card,
  .coach-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .coach-name {
    font-size: 16px;
  }

  .coach-role {
    font-size: 14px;
  }

  .coach-bio {
    font-size: 14px;
  }

  /* Schedule */
  .schedule-table-wrapper {
    overflow-x: auto;
  }

  .schedule table {
    font-size: 14px;
    min-width: 420px;
  }

  .schedule th,
  .schedule td {
    padding: 8px 6px;
  }
  /* Gallery */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .gallery-grid img {
    border-radius: 10px;
  }
  /* Contact */
  .contact {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .contact-inner {
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
  }

  .contact-intro {
    font-size: 14px;
  }

  .contact-details .contact-line {
    font-size: 14px;
  }

  .contact-form {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-form button {
    width: 100%;
  }
}
