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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #d1d5db;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.logo-name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 2px;
}
.logo-back{
   text-decoration: none;
}

.logo-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #8b4513;
    font-weight: 500;
}

.flag{
    height: 20px;
   
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #8b4513;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8b4513;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 25px;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

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

.nav-mobile {
    display: none;
    padding: 1rem 1rem;
    background-color: rgba(255, 255, 255);
    border-top: 1px solid #d1d5db;
}

.nav-mobile.show {
    display: block;
}

.nav-link-mobile {
    display: block;
    padding: 1rem 0;
    color: #000000;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: #8b4513;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background-color: #8b4513;
    margin: 0 auto 2rem;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-title-line {
    display: block;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.125rem;
    color: #f9fafb;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    /* background-color: #8b4513; */
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #8b4513;
}

.btn-primary:hover {
    background-color: #a0522d;
    border-color: #a0522d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

/* Hero Navigation */
.hero-navigation {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.hero-dot.active,
.hero-dot:hover {
    background-color: #8b4513;
    border-color: #8b4513;
    opacity: 1;
    transform: scale(1.2);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background-color: rgba(139, 69, 19, 0.8);
    border-color: #8b4513;
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
    left: 2rem;
}

.hero-arrow-next {
    right: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 3rem;
    background-color: #ffffff;
    opacity: 0.8;
}

.scroll-text {
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    opacity: 0.8;
}

/* Section Styles */
.section-header {
    margin-bottom: 3rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-divider {
    width: 60px;
    height: 2px;
    background-color: #8b4513;
    margin-bottom: 1.5rem;
}

.section-header-center .section-divider {
    margin: 0 auto 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #000000;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    line-height: 1.7;
}

.section-header-center .section-description {
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: #f5f5f5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(80%);
    transition: filter 0.5s ease;
}

.about-image:hover {
    /* filter: grayscale(0%); */
}

.about-image-border {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid #8b4513;
    z-index: -1;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-number {
    font-size: 2rem;
    color: #8b4513;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Films Section */
.films {
    padding: 6rem 0;
    background-color: #ffffff;
}

.films-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.film-card {
    
    transition: transform 0.3s ease;
    padding: 20px;
}

.film-card:hover {
    transform: translateY(-5px);
}

.film-image-container {
    position: relative;
    /* aspect-ratio: 16/9; */
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.film-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.film-card:hover .film-image {
    transform: scale(1.05);
}

.film-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%); */
    transition: background 0.3s ease;
}

.film-card:hover .film-overlay {
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%); */
}

.film-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #8b4513;
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.film-genre {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #ffffff;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.film-title {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.film-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.download-title {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

/* Podstawowy styl przycisku */
.animated-button {
    background-color: #8b4513;
    color: white;
    padding: 12px 24px;
    border: none;
  
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  .animated-button a{
      text-decoration: none;
      color: white;
  }

  .animated-button:hover {
    background-color: #8b4513;
   
    transform: scale(1.05);
  }

.film-awards .award {
    font-size: 0.875rem;
    color: #8b4513;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

/* Awards Section */
.awards {
    padding: 6rem 0;
    background-color: #f5f5f5;
}

.awards-grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    /* align-items: start; */
}

.awards-list {
    margin-bottom: 4rem;
}

.award-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.award-item:hover {
    padding-left: 1rem;
}

.award-year {
    flex-shrink: 0;
    width: 4rem;
    font-size: 1.5rem;
    color: #8b4513;
    font-weight: 600;
    transition: color 0.3s ease;
}

.award-item:hover .award-year {
    color: #000000;
}

.award-details {
    flex: 1;
}

.award-name {
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.award-category {
    color: #8b4513;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.award-film {
    color: #6b7280;
    font-size: 0.875rem;
    font-style: italic;
}

.additional-recognition {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.recognition-title {
    font-size: 1.25rem;
    color: #000000;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.recognition-item {
    font-size: 0.875rem;
    color: #6b7280;
}

.awards-image-container {
    position: relative;
}

.awards-image-wrapper {
    position: relative;
    /* aspect-ratio: 4/5; */
    overflow: hidden;
}

.awards-image {
    width: 60%;
    height: 50%;
    object-fit: cover;
    filter: grayscale(50%);
    transition: filter 0.5s ease;
}

.awards-image:hover {
    filter: grayscale(0%);
}

.awards-image-border {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 100%;
    height: 100%;
    border: 2px solid #8b4513;
    z-index: -1;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #ffffff;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-section-title {
    font-size: 1.25rem;
    color: #000000;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #8b4513;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-label {
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #6b7280;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    border: 2px solid #8b4513;
    color: #8b4513;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #8b4513;
    color: #ffffff;
}

.rep-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rep-section {
    padding-left: 1.5rem;
    border-left: 2px solid #8b4513;
}

.rep-title {
    color: #000000;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.rep-details {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-cta {
    text-align: center;
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    border-top: 1px solid #d1d5db;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 2px;
}

.footer-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #8b4513;
    font-weight: 500;
}

.copyright-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.credit-text {
    color: #9ca3af;
    font-size: 0.75rem;
}

.credit-highlight {
    color: #3b82f6;
}

.footer-quote {
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.quote-text {
    color: #9ca3af;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title-line {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        padding-left: 0;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .films-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .awards-image {
        width: 100%;
        height: 50%;
        object-fit: cover;
        filter: grayscale(50%);
        transition: filter 0.5s ease;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-arrow-prev {
        left: 1rem;
    }

    .hero-arrow-next {
        right: 1rem;
    }

    .hero-navigation {
        bottom: 5rem;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title-line {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .award-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
    }

    .award-year {
        width: auto;
    }

    .awards-image {
        width: 100%;
        height: 50%;
        object-fit: cover;
        filter: grayscale(50%);
        transition: filter 0.5s ease;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

