/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a1628;
    --secondary-color: #1e3a5f;
    --accent-color: #c41e3a;
    --accent-light: #e63946;
    --text-color: #2d3748;
    --text-light: #4a5568;
    --light-bg: #f7fafc;
    --white: #ffffff;
    --gray: #718096;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: opacity 0.3s ease;
}

.logo-wrapper:hover {
    opacity: 0.8;
}

.logo-ko {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-sejm {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav a:hover,
.nav a.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 30%, rgba(30, 58, 95, 0.15) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 600px;
    padding: 0;
    max-width: 100%;
}

.hero-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg, 
        rgba(10, 22, 40, 0.3) 0%, 
        rgba(30, 58, 95, 0.5) 50%,
        rgba(30, 58, 95, 0.8) 100%
    );
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-text {
    padding: 80px 60px;
    text-align: left;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    margin-bottom: 25px;
    animation: fadeInScale 0.6s ease-out 0.2s both;
    position: relative;
    line-height: 1.2;
}

.hero-firstname {
    display: block;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: -45px;
    line-height: 1;
}

.hero-lastname {
    display: block;
    font-size: 72px;
    font-weight: 800;
    letter-spacing: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light), transparent);
    animation: expandWidth 1.2s ease-out 0.8s both;
}

.hero-tagline {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 30px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    font-style: italic;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light), transparent);
    margin: 40px 0 0 0;
    animation: fadeIn 1s ease-out 1s both;
}

/* Hero Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 200px;
    }
}

@media (max-width: 768px) {
    @keyframes expandWidth {
        from {
            width: 0;
        }
        to {
            width: 120px;
        }
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.about-image-portrait {
    max-width: 350px;
    margin: 0 auto;
}

.about-image-portrait img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

.signature {
    margin-top: 40px;
    text-align: right;
    padding-right: 20px;
}

.signature span {
    font-family: 'Brush Script MT', 'Lucida Handwriting', 'Apple Chancery', cursive;
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 400;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.signature span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color) 30%, transparent);
    opacity: 0.5;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.stats h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.stats-subtitle {
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Circular Progress */
.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-circle-bg {
    fill: none;
    stroke: var(--light-bg);
    stroke-width: 8;
}

.progress-ring-circle {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 326.73;
    stroke-dashoffset: 326.73;
    transition: stroke-dashoffset 2s ease-in-out;
}

.circular-progress.animated .progress-ring-circle {
    animation: progressAnimation 2s ease-in-out forwards;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    text-transform: lowercase;
    font-weight: 500;
}

/* News Section */
.news {
    padding: 80px 0;
    background-color: var(--white);
}

.news h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
}

.news h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item h3 {
    padding: 20px 20px 10px 20px;
    font-size: 18px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0;
}

.news-item p {
    padding: 0 20px 20px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    text-align: center;
    margin: 0;
}

/* Videos Section */
.videos {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.videos h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
}

.videos h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
    max-height: 400px;
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-item video {
    width: 100%;
    height: 100%;
    max-height: 400px;
    display: block;
    border-radius: 10px;
    outline: none;
    object-fit: cover;
}

.video-item h4 {
    margin-top: 15px;
    text-align: center;
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 1.4;
}

/* Gallery Collage Section */
.gallery-collage {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-collage h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.gallery-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 50px;
    font-style: italic;
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    grid-auto-rows: 250px;
}

.collage-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.collage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collage-item:hover img {
    transform: scale(1.1);
}

.collage-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collage-item:hover::after {
    opacity: 1;
}

/* Special grid items */
.collage-large {
    grid-column: span 2;
    grid-row: span 2;
}

.collage-wide {
    grid-column: span 2;
}

.collage-tall {
    grid-row: span 2;
}

/* Media Section */
.media {
    padding: 80px 0;
    background-color: var(--white);
}

.media h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
}

.media-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.media-logo:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.media-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.media-logo img {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.media-logo:hover img {
    filter: grayscale(0%);
}

/* Contact Section with Form */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: stretch;
}

/* Biura Poselskie */
.contact-offices {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-offices h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    flex-shrink: 0;
}

.office-card {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.office-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.office-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.office-address {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.office-phone {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
}

.office-email {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.office-email p {
    font-size: 16px;
}

.office-email a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.office-email a:hover {
    color: var(--accent-light);
}

/* Contact Social Media */
.contact-social {
    margin-top: auto;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.contact-social h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon-contact {
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.social-icon-contact svg {
    width: 22px;
    height: 22px;
}

.social-icon-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.social-icon-contact.facebook {
    color: #1877f2;
}

.social-icon-contact.facebook:hover {
    background: #1877f2;
    color: var(--white);
    border-color: #1877f2;
}

.social-icon-contact.instagram {
    color: #e4405f;
}

.social-icon-contact.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-icon-contact.tiktok {
    color: #000000;
}

.social-icon-contact.tiktok:hover {
    background: #000000;
    color: var(--white);
    border-color: #000000;
}

.social-icon-contact.twitter {
    color: #000000;
}

.social-icon-contact.twitter:hover {
    background: #000000;
    color: var(--white);
    border-color: #000000;
}

/* Formularz Kontaktowy */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    flex-shrink: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--white);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.success-message {
    text-align: center;
    padding: 20px;
    background: #48bb78;
    color: var(--white);
    border-radius: 8px;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
}

.form-email-info {
    text-align: center;
    margin-top: auto;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.form-email-info p {
    font-size: 16px;
    color: var(--text-color);
}

.form-email-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-email-info a:hover {
    color: var(--accent-light);
}

/* Social Media Section */
.social-media {
    padding: 60px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    text-align: center;
}

.social-media h2 {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon:hover svg {
    transform: scale(1.2);
}

/* Individual social media colors */
.social-icon.facebook {
    color: #1877f2;
}

.social-icon.facebook:hover {
    background: #1877f2;
    color: var(--white);
}

.social-icon.instagram {
    color: #e4405f;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-icon.tiktok {
    color: #000000;
}

.social-icon.tiktok:hover {
    background: #000000;
    color: var(--white);
}

.social-icon.twitter {
    color: #000000;
}

.social-icon.twitter:hover {
    background: #000000;
    color: var(--white);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-text {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
    font-weight: 300;
}

.footer-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 30px auto;
}

.footer-copyright {
    font-size: 13px;
    opacity: 0.7;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-year {
    font-weight: 600;
    color: var(--accent-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image {
        height: 400px;
    }

    .hero-text {
        padding: 60px 40px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 16px;
        letter-spacing: 3px;
    }

    .hero-firstname {
        font-size: 36px;
        letter-spacing: 3px;
        margin-bottom: -30px;
    }

    .hero-lastname {
        font-size: 52px;
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-divider {
        margin: 40px auto 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .signature {
        text-align: center;
        padding-right: 0;
    }

    .signature span {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .circular-progress {
        width: 100px;
        height: 100px;
    }

    .progress-ring {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 24px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 12px;
    }

    .collage-large,
    .collage-wide {
        grid-column: span 2;
    }

    .collage-tall {
        grid-row: span 1;
    }

    .media-logos {
        flex-wrap: wrap;
        gap: 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header .container {
        flex-wrap: wrap;
    }

    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding-top: 100px;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        text-align: center;
        padding: 20px;
    }

    .nav ul li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav ul li:last-child {
        border-bottom: none;
    }

    .nav ul li a {
        display: block;
        padding: 20px;
        font-size: 16px;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 350px;
    }

    .hero-text {
        padding: 50px 30px;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-firstname {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: -20px;
    }

    .hero-lastname {
        font-size: 38px;
        letter-spacing: 3px;
    }

    .hero-title::after {
        width: 120px;
    }

    .hero-tagline {
        font-size: 16px;
        letter-spacing: 0.5px;
        padding: 0 20px;
    }

    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-divider {
        margin: 40px auto 0;
    }

    .logo-wrapper {
        flex-direction: row;
        gap: 10px;
    }

    .logo-ko {
        height: 32px;
    }

    .logo-sejm {
        height: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .collage-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 10px;
    }

    .collage-large,
    .collage-wide,
    .collage-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .media-logos {
        grid-template-columns: 1fr;
    }

    .social-icons {
        gap: 20px;
    }

    .social-icon {
        width: 55px;
        height: 55px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }
}

