.subtitle {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
    }/* Hero Slider Styles */
.hero-slider-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.hero-swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.26);
    z-index: 1;
}
.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
    color: white;
}
.content-left {
    flex: 1;
    max-width: 900px;
}

.main-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #FFD700;
}

/* Animacje dla tytułu */
.title-fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.title-fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}

.animated-title {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color:#FFD700;
}
.buttons-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.btn {
    padding: 0.5rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    font-size:16px;
}
.btn-primary {
    background: #6EB533;
    color: white;
}
.btn-primary:hover {
    background: #6EB533;
}
.btn-secondary {
    color: white;
}
.btn-secondary:hover {
    background: white;
    color: #333;
}
.social-media {
    display: flex;
    gap: 1rem;
    color: white;
    position: absolute;
    left: 80px;
    bottom: 50px;
    z-index: 99;
    font-size: 16px;
    font-weight: 400;
}
.social-link {
    color: white;
    transition: color 0.3s ease;
}
.social-link:hover {
    color: #7ED321;
}
.content-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.slide-info {
    text-align: right;
}
.slide-number {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}
.slide-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.slide-price {
    font-size: 2rem;
    font-weight: bold;
    color: #7ED321;
}
.bottom-info{
    color:white;
    position: absolute;
    right: 100px;
    bottom: 50px;
    z-index: 99;
    font-size:16px;
    font-weight:400;
}
.corner-frame {
    position: absolute;
    z-index: 10;
}
.corner-top-left {
    top: 20px;
    left: 20px;
}
.corner-top-right {
    top: 20px;
    right: 20px;
}
.corner-bottom-left {
    bottom: 20px;
    left: 20px;
}
.corner-bottom-right {
    bottom: 20px;
    right: 20px;
}
.slider-navigation {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.nav-arrow {
    border: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
.nav-arrow:hover {
    transform: scale(1.1);
}
.slide-indicators {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.indicator {
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.indicator.active {
    opacity: 1;
    color:#FFD700 !important;
}
.indicator-number {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}
.hero-slider-error {
    padding: 2rem;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin: 2rem;
}
/* Indicator styles */
.indicator-title {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    font-weight: 500;
}
.indicator.active .indicator-title {
    color: #FFD700;
    font-weight:500;
}
.indicator-price {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
}
.indicator.active .indicator-price {
    color: #FFD700;
    font-weight:500;
}
.indicator.active .indicator-number {
    color: #FFD700;
    font-weight:500;
}
.indicator:not(.active) .indicator-number {
    color: rgba(255, 255, 255, 0.9);
}
/* Tablet Landscape Styles (1024px - 769px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .slide-content {
        padding: 0 60px;
    }
    
    .content-left {
        max-width: 600px;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
    
    .slider-navigation {
        right: 25px;
    }
    
    .nav-arrow {
        width: 80px;
        height: 80px;
    }
    
    .slide-indicators {
        right: 80px;
        gap: 1.5rem;
    }
    
    .indicator-price {
        font-size: 1rem !important;
    }
    
    .social-media {
        left: 60px;
        bottom: 40px;
    }
    
    .bottom-info {
        right: 80px;
        bottom: 40px;
    }
}
/* Tablet Portrait Styles (768px - 481px) */
@media (max-width: 768px) and (min-width: 481px) {
    .slide-content {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        justify-content: center;
    }
    .swiper-slide {
          background-size:contain !important;
        background: #333;
        background-repeat: no-repeat;
        background-position: center;
    }
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .buttons-container {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 1rem;
        display:none !important;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
    }
    
    .slide-info {
        text-align: center;
    }
    
    .slider-navigation {
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-arrow {
        width: 70px;
        height: 70px;
    }
    
    .slide-indicators {
        bottom: 30px;
        right: 50%;
        transform: translateX(50%);
        top: auto;
        flex-direction: row;
        gap: 2rem;
        text-align: center;
    }
    
    .indicator-price {
        font-size: 1rem !important;
    }
    
    .indicator-title {
        font-size: 1rem;
    }
    
    .social-media {
        position: static;
        justify-content: center;
        margin-top: 1rem;
        display:none !important;
    }
    
    .bottom-info {
        display: none;
    }
    
    .corner-frame {
        display: none;
    }
}
/* Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .slide-content {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        justify-content: center;
    }
     .slide-content {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        justify-content: center;
    }
    .swiper-slide {
        background-size:contain !important;
        background: #333;
        background-repeat: no-repeat;
        background-position: center;
    }
    .hero-slider-wrapper {
        height: 80vh;
    }
    
    .content-left {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .buttons-container {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
        display: none !important;
    }
    
    .btn {
        padding: 1rem;
        text-align: center;
    }
    
    .slide-info {
        text-align: center;
    }
    
    .slider-navigation {
        right: 20px;
        flex-direction: column;
        bottom: 200px;
        top: auto;
        transform: none;
        gap: 2rem;
    }
    
    .nav-arrow {
        width: 60px;
        height: 60px;
    }
    
    .social-media {
        justify-content: center;
        position: static;
        display:none !important;
    }
    
    .slide-indicators {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        top: auto;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .corner-frame {
        display: none;
    }
    
    .bottom-info {
        display: none;
    }
}
/* Very small mobile devices */
@media (max-width: 378px) {
    .hero-slider-wrapper {
        height: 130vh;
    }
    
    .slide-indicators {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
}
/* Animacje dla podtytułu */
.subtitle-fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}
.subtitle-fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-in, transform 0.5s ease-in;
}
.animated-subtitle {
    transition: opacity 0.5s ease, transform 0.5s ease;
}