* {
    scroll-behavior: smooth;
}

/* Montserrat - lokalne czcionki */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/static/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/static/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/static/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/static/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/static/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Material Symbols Rounded Filled - ikony */
@font-face {
    font-family: 'Material Symbols Rounded';
    src: url('../fonts/MaterialSymbolsRounded_Filled_28pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    color: #333;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title {
    font-family: 'Montserrat', sans-serif;
}

h2.section-title {
    font-size: 1.8em;
}

.container-custom {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

@media (min-width: 768px) {
    #header-img {
        border-left: 5px solid rgba(255, 255, 255, 0.8);
        border-right: 5px solid rgba(255, 255, 255, 0.8);
        border-top: 5px solid rgba(255, 255, 255, 0.8);
    }
}

.red-box {
    background: linear-gradient(135deg, #e31e24 0%, #b71c1c 100%);
    color: white;
    padding: 25px 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.red-box h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.red-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.red-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.red-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

.btn-red {
    background: linear-gradient(135deg, #e31e24 0%, #c41a1f 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.btn-red:hover {
    background: linear-gradient(135deg, #c41a1f 0%, #a01518 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.5);
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* odstęp między tekstem a ikoną */
}

.btn-red .material-symbols-rounded {
    font-size: 1.2em; /* dostosuj rozmiar */
}

.section-title {
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e31e24, #ff6b6b);
    border-radius: 2px;
}

.divider {
    display: none;
    align-items: center;
    width: 100%;
    margin-top: 1.5rem;
}

.divider-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, #333 0%, transparent 100%);
}

.divider-circle {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, #555, #222);
    border-radius: 50%;
    margin-left: 0px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: none;
}

.divider-left {
    display: none;
    align-items: center;
    width: 100%;
    margin-top: 1.5rem;
    margin-left: auto;
}

.divider-left .divider-line {
    background: linear-gradient(90deg, transparent 0%, #333 100%);
}

.divider-left .divider-circle {
    margin-left: 0;
    margin-right: 0px;
}

@media (min-width: 768px) {

    .divider,
    .divider-left {
        display: flex;
    }
}

.animate-bigger {
    transition: transform 1s;
}

.animate-bigger:hover {
    transform: scale(1.05);
}

.animate-rotate-15 {
    transition: transform 1s;
}

.animate-rotate-15:hover {
    transform: rotate(15deg);
}

.bg-black-opacity-70 {
    background-color: rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
    .position-relative img {
        min-height: auto !important;
    }
}

.btn-red:hover {
    background-color: #c41a1f;
    color: white;
}

.rounded-pill {
    transition: transform 0.5s, box-shadow 0.5s, background-color 0.5s, border-color 0.5s;
}

.rounded-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-facebook {
    text-transform: uppercase;
    font-weight: bold;
}

.btn-facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: white;    
}

/* Animacje sekcji */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lista z ikonami */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 0;
    color: #e31e24;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
}

/* Footer stylizacja */
.footer-section {
    background: linear-gradient(135deg, #111111 0%, #222222 100%);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.5);
}


/* Pulsująca ikona */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(227, 30, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0); }
}

@keyframes pulse-heart {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(0.9); }
    20%, 40%, 60%, 80% { transform: scale(1.1); }
    50%, 70% { transform: scale(1.05); }
}

.heart-pulse {
    display: inline-block;
    animation: pulse-heart 1.5s ease-in-out infinite;
    color: #e31e24;
    font-size: 1rem;
    vertical-align: middle;
}

@keyframes pulse-old {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05) rotate(5deg);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-effect {
    animation: pulse 7s infinite;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #e31e24, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .img-trapeze-right {
        clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
    }

    .img-trapeze-left {
        clip-path: polygon(0 0, 100% 15%, 100% 85%, 0 100%);
    }

    .img-rombus-left {
        clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%);
    }
}

.blue-class {
    color: #1b4a80;
    font-weight: 700;
}