*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75em;
    color: #2b2b2b;
}
h1 {
    font-size: 2.8rem;
}
h2 {
    font-size: 2.25rem;
}
h3 {
    font-size: 1.5rem;
}
p {
    margin-bottom: 1em;
}
a {
    text-decoration: none;
    color: orange;
    transition: color 0.3s ease;
}
a:hover {
    color: #e69500;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    list-style: none;
}
.container {
    width: 90%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
.btn {
    display: inline-block;
    padding: 0.75em 1.75em;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
    border: 2px solid #fff0;
    cursor: pointer;
    font-size: 0.95rem;
}
.btn--primary {
    background-color: orange;
    color: #2b2b2b;
    border-color: orange;
}
.btn--primary:hover {
    background-color: #e69500;
    color: #2b2b2b;
    transform: translateY(-2px);
}
.btn--secondary {
    background-color: #fff0;
    color: #2b2b2b;
    border: 2px solid #2b2b2b;
}
.btn--secondary:hover {
    background-color: #2b2b2b;
    color: #fafafa;
    transform: translateY(-2px);
}
.btn--large {
    padding: 1em 2.5em;
    font-size: 1.1rem;
}
.all-news__back-button-container {
    text-align: center;
    margin-bottom: 30px;
    margin-top: -30px;
}
.all-news__back-button-container .btn--small {
    padding: 0.6em 1.2em;
    font-size: 0.9rem;
}
.all-news__back-button-container .arrow-back {
    margin-right: 6px;
    font-weight: 700;
}
.section {
    padding: 60px 0;
}
.section--light-gray {
    background-color: #f5f5f5;
}
.section--dark {
    background-color: #2b2b2b;
    color: #fafafa;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 {
    color: #fafafa;
}
.section--dark .btn--secondary {
    color: #fafafa;
    border-color: #fafafa;
}
.section--dark .btn--secondary:hover {
    background-color: #fafafa;
    color: #2b2b2b;
}
.section__title {
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    position: relative;
}
.section__title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: orange;
    margin: 15px auto 0;
}
.section__title--light::after {
    background-color: #fafafa;
}
.section__content--centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.section__subtitle--light {
    color: #e0e0e0;
    margin-bottom: 30px;
    font-size: 1.1rem;
}
.section__cta {
    text-align: center;
    margin-top: 40px;
}
.header {
    background-color: rgb(43 43 43 / 0.95);
    color: #fafafa;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
    transition: background-color 0.3s ease;
}
body {
    padding-top: 80px;
}
.header.scrolled {
    background-color: #2b2b2b;
}
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo img {
    height: 50px;
    width: auto;
}
.header__nav ul {
    display: flex;
}
.header__nav li {
    margin-left: 30px;
}
.header__nav a.nav-link {
    color: #fafafa;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    font-size: 0.95rem;
}
.header__nav.header__nav--open {
    display: flex;
}
.header__nav a.nav-link:hover,
.header__nav a.nav-link.active {
    color: orange;
}
.header__nav a.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: orange;
    transition: width 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
}
.header__nav a.nav-link:hover::after,
.header__nav a.nav-link.active::after {
    width: 100%;
}
.header__mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.header__mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #fafafa;
    margin: 6px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}
.hero {
    background-image: url(images/klub/walka.webp);
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    color: #fafafa;
    text-align: center;
    padding: 180px 0;
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.65);
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 2;
}
.hero__title {
    font-size: 4rem;
    margin-bottom: 0.3em;
    text-shadow: 2px 2px 8px rgb(0 0 0 / 0.7);
    color: #fff;
    text-transform: uppercase;
}
.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgb(0 0 0 / 0.5);
}
.about-short {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}
.about-short__image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.1);
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
    height: auto;
}
.about-short__text h3 {
    margin-bottom: 15px;
    color: orange;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    text-align: center;
}
.feature-item {
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgb(0 0 0 / 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgb(0 0 0 / 0.12);
}
.feature-item__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-item__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.feature-item__text {
    font-size: 0.95rem;
    color: #555;
}
.section--cta-image {
    background-image: url(images/carbosalka.jpg);
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
}
.section--cta-image .section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 0.7);
    z-index: 1;
}
.section--cta-image .container {
    position: relative;
    z-index: 2;
}
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.trainer-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
}
.trainer-card__image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background-color: #000;
}
.trainer-card__name {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 5px;
}
.trainer-card__specialization {
    font-size: 0.9rem;
    color: orange;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.news-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.08);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}
.news-item:hover {
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.12);
}
.news-item__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #333;
}
.news-item__link:hover .news-item__title {
    color: orange;
}
.news-item__image {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}
.news-item__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.news-item__title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.news-item__date {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}
.news-item__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.gallery-item {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
    aspect-ratio: 4 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}
.gallery-carousel-wrapper {
    overflow: hidden;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}
.gallery-carousel {
    padding-top: 20px;
    padding-bottom: 50px;
}
.gallery-carousel .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
    height: auto;
}
.gallery-carousel .swiper-slide img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-carousel .swiper-slide:hover img {
    transform: scale(1.05);
}
.gallery-carousel .swiper-pagination-bullet {
    background-color: orange;
    opacity: 0.7;
}
.gallery-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}
.gallery-carousel .swiper-button-next,
.gallery-carousel .swiper-button-prev {
    color: orange;
    background-color: rgb(43 43 43 / 0.7);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: background-color 0.3s ease;
}
.gallery-carousel .swiper-button-next:hover,
.gallery-carousel .swiper-button-prev:hover {
    background-color: rgb(43 43 43 / 0.9);
}
.gallery-carousel .swiper-button-next::after,
.gallery-carousel .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}
.gallery-folder {
    margin-bottom: 50px;
}
.gallery-folder__title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid orange;
    display: inline-block;
}
.gallery-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.gallery-tile {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
    position: relative;
    background-color: #eee;
}
.gallery-tile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery-tile:hover img {
    transform: scale(1.08);
    opacity: 0.85;
}
.gallery-tile__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgb(0 0 0 / 0.7);
    color: #fff;
    padding: 10px;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.gallery-tile:hover .gallery-tile__caption {
    opacity: 1;
}
.lightboxOverlay {
    background-color: rgb(0 0 0 / 0.85) !important;
}
.lb-dataContainer {
    font-family: 'Roboto', sans-serif !important;
}
.lb-caption {
    font-size: 1rem !important;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}
.contact-info h3,
.contact-form-container h3 {
    margin-bottom: 25px;
    font-size: 1.6rem;
}
.contact-info p {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}
.contact-info .contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    filter: invert(68%) sepia(68%) saturate(2206%) hue-rotate(351deg)
        brightness(102%) contrast(101%);
}
.contact-socials {
    margin-top: 25px;
}
.contact-socials a {
    margin-right: 15px;
    display: inline-block;
}
.contact-socials img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}
.contact-socials a:hover img {
    transform: scale(1.1);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: #444;
}
.form-group input[type='text'],
.form-group input[type='email'],
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input[type='text']:focus,
.form-group input[type='email']:focus,
.form-group textarea:focus {
    border-color: orange;
    outline: none;
    box-shadow: 0 0 0 2px rgb(255 165 0 / 0.2);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
    margin-top: 30px;
}
.map-container iframe {
    display: block;
}
.footer {
    background-color: #222;
    color: #ccc;
    padding-top: 60px;
    font-size: 0.9rem;
}
.footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}
.footer h4 {
    font-family: 'Oswald', sans-serif;
    color: #fafafa;
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer__logo img {
    max-width: 200px;
    margin-bottom: 15px;
    opacity: 0.9;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    color: #ccc;
}
.footer ul li a:hover {
    color: orange;
    padding-left: 5px;
}
.footer__contact p {
    margin-bottom: 8px;
}
.footer__socials a {
    margin-right: 10px;
    display: inline-block;
}
.footer__socials img {
    width: 28px;
    height: 28px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.2s ease;
}
.footer__socials a:hover img {
    opacity: 1;
    transform: scale(1.1);
}
.footer__bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}
.footer__bottom p {
    margin: 0;
    color: #888;
}
.footer__bottom a {
    color: #aaa;
}
.footer__bottom a:hover {
    color: orange;
}
.form-success {
    padding: 10px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 15px;
}
.form-error {
    padding: 10px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 15px;
}
.gallery-breadcrumbs {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #777;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.gallery-breadcrumbs a {
    color: orange;
    text-decoration: none;
    transition: color 0.2s ease;
}
.gallery-breadcrumbs a:hover {
    color: #e69500;
    text-decoration: underline;
}
.gallery-breadcrumbs span {
    font-weight: 700;
    color: #333;
}
.gallery-category-grid,
.gallery-album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}
.gallery-category-tile {
    display: block;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.08);
    text-decoration: none;
    color: #333;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-category-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgb(0 0 0 / 0.12);
}
.gallery-category-tile img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid orange;
}
.gallery-category-tile h3 {
    font-family: 'Oswald', sans-serif;
    color: #2b2b2b;
    font-size: 1.4rem;
    margin: 15px 20px 10px;
}
.gallery-category-tile p {
    font-size: 0.9rem;
    color: #555;
    padding: 0 20px 20px;
    line-height: 1.6;
    margin-bottom: 0;
}
.gallery-album-tile {
    display: block;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.08);
    text-decoration: none;
    color: #333;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-album-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgb(0 0 0 / 0.12);
}
.gallery-album-tile img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.gallery-album-tile h4 {
    font-family: 'Oswald', sans-serif;
    color: orange;
    font-size: 1.25rem;
    margin: 15px 15px 5px;
}
.gallery-album-tile p {
    font-size: 0.85rem;
    color: #777;
    padding: 0 15px 15px;
    margin-bottom: 0;
}
.gallery-tiles {
    display: grid;
    margin-top: 20px;
}
.gallery-pagination {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.gallery-pagination a,
.gallery-pagination span {
    display: inline-block;
    padding: 0.5em 0.9em;
    margin: 0 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: orange;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease,
        border-color 0.2s ease;
}
.gallery-pagination a:hover {
    background-color: orange;
    color: #fff;
    border-color: orange;
}
.gallery-pagination a.active {
    background-color: orange;
    color: #fff;
    border-color: orange;
    font-weight: 700;
    cursor: default;
}
.gallery-pagination a.pagination-arrow {
    font-weight: 700;
}
.gallery-pagination span {
    border: none;
    background-color: #fff0;
    color: #777;
    padding: 0.5em 0.3em;
}
.news-grid--full-list .news-item {
    margin-bottom: 30px;
}
.news-grid--full-list .btn--small {
    padding: 0.5em 1em;
    font-size: 0.85rem;
    margin-top: 15px;
}
.btn--secondary-outline {
    background-color: #fff0;
    color: orange;
    border: 2px solid orange;
}
.btn--secondary-outline:hover {
    background-color: orange;
    color: #fff;
}
#single-news-content {
    max-width: 800px;
    margin: 0 auto;
}
.single-news__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
}
#single-news-content .section__title {
    text-align: left;
    margin-bottom: 15px;
}
#single-news-content .section__title::after {
    margin: 10px 0 0;
}
.single-news__date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 25px;
    display: block;
}
.single-news__body {
    line-height: 1.8;
    font-size: 1.05rem;
}
.single-news__body h1,
.single-news__body h2,
.single-news__body h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #333;
}
.single-news__body h2 {
    font-size: 1.8rem;
}
.single-news__body h3 {
    font-size: 1.5rem;
}
.single-news__body p {
    margin-bottom: 1.2em;
}
.single-news__body ul,
.single-news__body ol {
    margin-left: 25px;
    margin-bottom: 1.2em;
}
.single-news__body li {
    margin-bottom: 0.5em;
}
.single-news__body a {
    color: orange;
    text-decoration: underline;
}
.single-news__body a:hover {
    color: #e69500;
}
.single-news__body img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
}
.single-news__tags {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #555;
}
#single-news-content .btn {
    margin-top: 40px;
    display: inline-block;
}
.error-message,
#full-gallery-container > p {
    color: #777;
    font-style: italic;
    text-align: center;
    padding: 40px 15px;
    font-size: 1.1rem;
    border: 1px dashed #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}
.error-message {
    color: #d9534f;
    font-weight: 700;
    border-color: #d9534f;
    background-color: #f2dede;
}
.placeholder-content {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-main);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.08);
    max-width: 700px;
    margin: 0 auto;
}
.placeholder-content .section__title {
    margin-bottom: 30px;
}
.placeholder-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    opacity: 0.7;
}
.placeholder-content h2 {
    font-size: 2rem;
    color: var(--gliwice-blue);
    margin-bottom: 15px;
}
.placeholder-content p {
    font-size: 1.1rem;
    color: var(--text-dark-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.placeholder-content p a {
    font-weight: 500;
}
.placeholder-content .btn {
    margin-top: 20px;
}
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .section {
        padding: 50px 0;
    }
    .header__logo img {
        height: 40px;
    }
    .header__mobile-toggle {
        display: block;
    }
    .header__nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2b2b2b;
        padding: 15px 0;
        box-shadow: 0 5px 10px rgb(0 0 0 / 0.2);
        z-index: 990;
    }
    .header__nav.header__nav--open {
        display: flex;
    }
    .header__nav ul {
        flex-direction: column;
        width: 100%;
    }
    .header__nav li {
        margin: 0;
        text-align: center;
    }
    .header__nav a.nav-link {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #3a3a3a;
    }
    .header__nav a.nav-link:hover,
    .header__nav a.nav-link.active {
        background-color: #3a3a3a;
    }
    .header__nav a.nav-link::after {
        display: none;
    }
    .header__nav li:last-child a.nav-link {
        border-bottom: none;
    }
    .header__mobile-toggle.header__mobile-toggle--open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .header__mobile-toggle.header__mobile-toggle--open span:nth-child(2) {
        opacity: 0;
    }
    .header__mobile-toggle.header__mobile-toggle--open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .hero {
        padding: 100px 0;
        min-height: calc(85vh - 70px);
        background-attachment: scroll;
    }
    .hero__title {
        font-size: 2.5rem;
    }
    .hero__subtitle {
        font-size: 1.1rem;
    }
    .section--cta-image {
        background-attachment: scroll;
    }
    .about-short {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-short__image {
        order: -1;
        margin-bottom: 30px;
    }
    .about-short__image img {
        max-width: 380px;
    }
    .features-grid,
    .trainers-grid {
        grid-template-columns: 1fr;
    }
    section#aktualnosci .news-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 10px;
        padding-bottom: 25px;
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        gap: 15px;
        grid-template-columns: none;
    }
    section#aktualnosci .news-grid .news-item {
        flex: 0 0 auto;
        width: 80%;
        max-width: 300px;
    }
    section#aktualnosci .news-grid::-webkit-scrollbar {
        display: none;
    }
    section#aktualnosci .news-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    #all-news-page .news-grid {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        margin-top: 30px;
    }
    .gallery-carousel .swiper-slide img {
        height: 200px;
    }
    .gallery-category-grid,
    .gallery-album-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .gallery-category-tile img {
        height: 180px;
    }
    .gallery-album-tile img {
        height: 160px;
    }
    .gallery-category-tile h3 {
        font-size: 1.3rem;
    }
    .gallery-album-tile h4 {
        font-size: 1.15rem;
    }
    .gallery-tiles {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 10px;
    }
    .gallery-tile img {
        height: 150px;
    }
    .gallery-pagination a,
    .gallery-pagination span {
        padding: 0.4em 0.7em;
        font-size: 0.85rem;
        margin: 0 3px;
    }
    .gallery-breadcrumbs {
        font-size: 0.85rem;
    }
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer__logo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: 20px;
    }
    .footer__socials {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
    .footer__socials h4 {
        margin-bottom: 15px;
    }
    .footer__socials div {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer__socials a {
        margin: 5px 10px;
    }
    .schedule-table thead {
        display: none;
    }
    .schedule-table,
    .schedule-table tbody,
    .schedule-table tr,
    .schedule-table td {
        display: block;
        width: 100%;
    }
    .schedule-table tr {
        margin-bottom: 10px;
        border: 1px solid var(--border-color-light, #dee2e6);
        border-radius: 6px;
        padding: 10px;
        background-color: var(--bg-main, #fff);
    }
    .schedule-table td {
        text-align: left;
        padding: 8px 0;
        position: static;
        border: none;
        border-bottom: 1px dashed #eee;
    }
    .schedule-table tr td:last-child {
        border-bottom: none;
    }
    .schedule-table td.schedule-day {
        font-size: 1.2rem;
        color: var(--gliwice-blue, #0d47a1);
        padding-bottom: 8px;
        margin-bottom: 8px;
        border-bottom: 2px solid var(--gliwice-gold, #ffc107) !important;
        text-align: left !important;
        width: auto !important;
        border-right: none !important;
        background-color: transparent !important;
        border-radius: 0 !important;
    }
    .schedule-table td::before {
        content: attr(data-label) ': ';
        font-weight: 700;
        display: inline-block;
        margin-right: 5px;
        color: var(--text-dark-secondary, #455a64);
    }
    .schedule-table td.schedule-time::before,
    .schedule-table td.schedule-event::before {
        display: inline;
    }
    .schedule-table td.schedule-day::before {
        display: none;
    }
    .schedule-time,
    .schedule-event {
        font-size: 1rem;
    }
    .schedule-legend ul {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0;
    }
    .schedule-legend li {
        margin-bottom: 8px;
    }
}
