:root {
            --primary-color: #a30619;
            --secondary-color: #2C3E50;
            --light-bg: #F8F9FA;
            --text-dark: #1a1a1a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        section {
            padding: 40px 0;
        }

        a {text-decoration: none;}
        
        /* Navbar */
        .navbar {
            padding: 0.5rem 0.5rem;
            background: #ffffffef;
            box-shadow: rgb(0 0 0 / 28%) 0px 2px 7px 0px;
            transition: all 0.3s;
            border-radius: 3rem;
            text-transform: uppercase;
            font-weight: 200 !important;
            font-size: 1.5rem;
            font-family: 'Bebas Neue';
            letter-spacing: 2px;
            transform: translateY(-10%);
            opacity: 0;
            transition: transform 1s ease, opacity 1.5s ease;
        }
        .navbar.show {
            transform: translateY(0);
            opacity: 1;
        }

        .navbar.fixed-top {
            position: fixed!important;
            transform: translateY(-10%);
            top: 0;
            left: 0;
            background-color: white;
        }

        .navbar-brand {
            margin: 9px 0px 8px 20px;
        }

        .navbar-toggler {
            border: 0;
            font-size: 2rem;
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            margin: 0 1rem;
            margin-top: 5px;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            padding: 0.75rem 2rem;
            padding-top: 13px;
            border-radius: 3rem;
            font-weight: 600;
            transition: all 0.3s;
            font-weight: 200 !important;
            font-size: 1.5rem;
            font-family: 'Bebas Neue';
            letter-spacing: 2px;

        }
        
        .btn-primary:hover, .btn-primary:active, .btn-primary:checked {
            background-color: var(--primary-color)!important;
            transform: scale(0.99);
        }
        .btn-cta{
            border-radius: 3rem; background-color: #fff; color: #a30619;
        }
        .btn-cta:hover{
            border-radius: 3rem; background-color: #a30619; color: #ffffff;
        }
        .btn-primary-red {
            background-color: var(--primary-color);
            border: none;
            padding: 0.75rem 2rem;
            padding-top: 13px;
            border-radius: 3rem;
            font-weight: 600;
            transition: all 0.3s;
            font-weight: 200 !important;
            font-size: 1.5rem;
            font-family: 'Bebas Neue';
            letter-spacing: 2px;

        }
        
        .btn-primary-red:hover, .btn-primary-red:active, .btn-primary-red:checked {
            transform: scale(0.99);
        }
          .breadcrumbs{
            margin-top: 105px;
            font-family: 'Bebas Neue';
            color: #8a8a8a;    
            font-size: 1.3rem;
        }
        .breadcrumbs a{
            color: #8a8a8a;
            transition: color 0.5s ease-in-out;
        }
        .breadcrumbs a:hover{
            color: #ffffff;
        }
          .breadcrumbs h1 {
            font-size: inherit; display: inline-block;
            font-weight: 100;
        }
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            background-image: url('../img/slide01.jpg');
            background-position: top right;
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
            margin: 20px;
            border-radius: 1rem;
            height: 95vh;
            display: flex;
            align-items: center;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background: linear-gradient(84deg, rgb(0 0 0) 0%, rgb(0 0 0 / 20%) 100%);
        }
        
        .hero-title {
            font-size: 6.5rem;
            font-weight: 700;
            letter-spacing: 9px;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            font-family: 'Bebas Neue';
            position: relative;
            z-index: 2;
        }
        .hero-title.show{
            transform: translateX(0);
            opacity: 1;
        }
        
        .hero-subtitle {
            font-size: 2.1rem;
            line-height: 3rem;
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 50vw;
            position: relative;
            z-index: 2;
        }

        .hero-elements{
            transform: translateX(-10%);
            opacity: 0;
            transition: transform 2s ease, opacity 2s ease;
            position: relative;
            z-index: 2;
        }
        .hero-elements.show{
            transform: translateX(0);
            opacity: 1;
        }
        
        .badge-custom {
            color: white;
            border-radius: 20px;
            font-size: 1.3rem;
            font-weight: 300;
            display: inline-block;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
            text-transform: uppercase;
            font-family: 'Bebas Neue';
            letter-spacing: 2px;
        }

        .badge {
            color: black;
            border-radius: 50px;
            font-size: 24px;
            font-weight: 300;
            display: inline-block;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
            text-transform: uppercase;
            font-family: 'Bebas Neue';
            letter-spacing: 2px;
            padding-bottom: 0rem;
            line-height: 1.8rem;
            padding: 0rem 0.8rem;
            padding-top: 4px;
            border-left: 14px solid var(--primary-color);
        }

        .mini-badge{
            width: 200px;
            height: 20px;
            border-radius: 30px;
            background-color: var(--primary-color);
        }
        .icon-badge{
            color: var(--primary-color);
            font-size: 1.5rem;
            border-radius: 100rem;
            width: 3rem;
            height: 3rem;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #ffeef0;
        }

            .icon-badge-pink{
            color: var(--primary-color);
            font-size: 1.5rem;
            border-radius: 100rem;
            width: 3rem;
            height: 3rem;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #fff;
        }
        
        /* Section Titles */
        .section-title {
            font-family: 'Bebas Neue';
            letter-spacing: 2px;
            padding-bottom: 0rem;
            line-height: 3rem;
            font-size: 3rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .section-subtitle {
            color: #000000;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            font-weight: 500;
        }
        ul.section-style {
            color: #000000;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            font-weight: 500;
            list-style: none;
            margin-left: 0px;
            padding-left: 5px;
        }
   
        
        /* About Section */
        .about-section {
            background: white;
        }
        
        .stat-card {
            text-align: center;
            padding: 1.5rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .stat-label {
            color: #666;
            font-size: 0.9rem;
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        /* Services Section */
        .services-section {
            background: var(--light-bg);
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 2rem;
        }
        
        .service-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        /* Process Section */
        .process-section {
            background: #FFF5F5;
        }
        
        .process-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            /*height: 100%;*/
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            border: 3px solid #fff; 
            transition: border-color 0.5s ease!important; 
        }

        .process-card:hover {
            border-color: #000;
        }
        
        .process-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }


        .product-name {
            margin-left: 10px;
            margin-right: 10px;
            margin-bottom: 44px;
            border-radius: 3rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            width: calc(100% - 39px) !important;
            left: 10px;
            padding: 0.5rem 0.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            color: #a30619;
            background: white;
        }
        
        .swiper-slide {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 450px;
            background-size: cover;
            background-position: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .swiper-slide:hover {
            transform: scale(0.99);
            z-index: 10;
        }
        
        /* Why Choose Section */
        .why-choose-section {
            background: white;
        }
        
        .why-choose-section ul li {
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }
        
        .highlight-box {
            background: var(--primary-color);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            margin-top: 2rem;
        }
        
        .highlight-box h3 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        /* Team Section */
        .team-section {
            background: var(--light-bg);
        }
        
        .team-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .team-info {
            padding: 1.5rem;
            text-align: center;
        }
        
        /* Booking Section */
        .booking-section {
            background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
        }
        
        .form-control, .form-select {
            padding: 0.75rem 1rem;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 1rem;
        }
        
        .consultation-box {
        background: white;
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .image-wrapper {
            position: relative;
            display: inline-block; /* dopasowuje się do obrazu */
        }
        
        /* Testimonial Section */
        .testimonial-section {
            background: #FFF;
        }
        .contact-section{
            background: #f9f9f9;
        }
        
        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        
        /* Blog Section */
        .blog-section {
            background: white;
        }
        
        .blog-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
        }
        
        .blog-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        
        .blog-content {
            padding: 1.5rem;
        }
        
        /* Footer */
        footer {
            background: var(--text-dark);
            color: white;
            padding: 60px 0 20px;
            margin-top: 0;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons a {
            color: white;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.5rem;
            transition: background 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--primary-color);
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
                width: 100%;
                text-align: center;
            }
            .hero-subtitle {
                font-size: 1rem;
                line-height: 1.5rem;
                width: 70%;
                text-align: center;
                max-width: 100%;
            }
            .hero-elements{
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero-elements .btn-primary{
                font-size: 1rem;
                width: 100%;
            }
            .hero-elements .badge-custom{
                font-size: 1rem;
                width: 100%;
                text-align: center;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            section {
                padding: 60px 0;
            }
        }

    .dl, ol, ul {
        margin-top: 0;
        margin-bottom: 1rem;
        list-style-position: inside;
    }
    
a:link,
a:visited,
a:hover,
a:active {
  color: #666666;
  text-decoration: none; /* opcjonalnie, usuwa podkreślenie */
}

.swiper-button-next,
.swiper-button-prev {
  color: #a30619;
}


.subcategories-list {
    padding: 10px;
    background: #f8f9fa;
    margin-top: 10px;
    border-radius: 8px;
}

.subcat-link {
    display: block;
    padding: 8px 12px;
    margin: 5px 0;
    background: white;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.subcat-link:hover {
    background: #a30619;
    color: white;
    transform: translateX(5px);
}

.category-main {
    cursor: pointer;
}

.swiper-button-next, .swiper-button-prev{
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #a306180e;
    left: 0;
    top: 0;
    margin: 0;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    font-size: 2rem;
    margin-left: -4px;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    font-size: 2rem;
    margin-left: 4px;
}