/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #2a2a2a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Lexend Zetta', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #333333;
    text-align: center;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background-color: #F5C842;
    color: #333;
}

.btn-primary:hover {
    background-color: #e6b535;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #333;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
   
    z-index: 1000;
    padding: 1rem 0;
}

.header__inner {
    border-radius: 25px;
background: #F1BA5A;
backdrop-filter: blur(14.5px);
  display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
   
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #F5C842;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F5C842;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Burger Menu */
.nav-burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.nav-burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.nav-burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    padding-top: 100px;
    padding-bottom: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
    height: 70vh;
    min-height: 500px;
}

.hero-left {
    display: flex;
    align-items: center;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-main-image:hover img {
    transform: scale(1.02);
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background-color: #F5C842;
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    width: fit-content;
}

.hero-title {
    margin-bottom: 0;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    flex: 1;
}

.hero-image-1,
.hero-image-2 {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

.hero-image-1 img,
.hero-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-1:hover img,
.hero-image-2:hover img {
    transform: scale(1.05);
}

/* Porady Section */
.porady-section {
    padding: 80px 0;
    background-color: #F5C842;
}

.porady-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.porady-section h2 {
    color: #333;
    margin-bottom: 2rem;
}

.porady-section p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Content Sections */
.minimalizm-section,
.funkcja-section,
.oswietlenie-section,
.lustro-section {
    padding: 80px 0;
  
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    border-radius: 45px;
background: #525252;
padding: 40px 20px;
}

.content-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-text {
    padding: 2rem 0;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.content-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: 15px;
}



.content-images img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
    aspect-ratio: 1;

}

.content-images img:hover {
    transform: scale(1.02);
}

/* Eksperci Section */
.eksperci-section {
    padding: 80px 0;
  
}

.eksperci-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.eksperci-section h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.eksperci-section .section-header p {
    color: #fff;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.eksperci-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ekspert-card {
    border-radius: 45px;
background: #FFDDA1;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ekspert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ekspert-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
}

.ekspert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ekspert-info h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.ekspert-title {
    color: #F5C842;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.ekspert-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* O nas Section */
.o-nas-section {
    padding: 80px 0;
  
background: #F1BA5A;
}

.o-nas-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.o-nas-section h2 {
    color: #fff;
    margin-bottom: 2rem;
}

.o-nas-section p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 60px 0 20px;
    color: #ffffff;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
 padding: 20px;
    border-radius: 48px;
background: #F1BA5A;
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #fff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat( 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-column p {
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-bottom {
  
    text-align: center;
}

.footer-bottom p {
    color: #fff;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #F5C842;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(42, 42, 42, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .nav-burger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: auto;
        min-height: auto;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
        text-align: center;
    }

    .hero-main-image {
        height: 300px;
    }

    .hero-images {
        height: 200px;
        margin-top: 2rem;
    }

    .content-block,
    .content-block.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-block.reverse .content-images {
        order: -1;
    }

    .eksperci-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .hero-images {
        display: flex;
        flex-direction: column;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-text {
        flex: 0 1 auto;
    }
    .container {
        padding: 0 15px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .content-text {
        padding: 1rem 0;
    }

    .ekspert-card {
        padding: 1.5rem;
    }

    .section-header {
        padding: 0 1rem;
    }

    .eksperci-grid {
        gap: 1.5rem;
    }

    .minimalizm-section .content-images {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.content-block,
.ekspert-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                