/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

/* Gradient i kolory */
.gradient-bg {
    background: linear-gradient(90deg, #3498db, #9b59b6);
    color: white;
}

/* Header i nawigacja */
header {
    background: linear-gradient(90deg, #3498db, #9b59b6);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
    z-index: 1002;
}

.logo {
    height: 100px;
}

/* Nowa zintegrowana nawigacja */
.nav-menu {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-item:hover {
    opacity: 0.8;
}

.nav-button {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin: 0 5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.social-icon {
    color: white;
    font-size: 24px;
    margin-left: 15px;
    text-decoration: none;
    display: flex;
}

/* Burger menu dla urządzeń mobilnych */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero sekcja */
.hero-section {
    background: linear-gradient(90deg, #3498db, #9b59b6);
    padding: 70px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.hero-text {
    width: 80%;
    padding: 0 20px;
    max-width: 900px;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 100%;
}

.hero-image {
    width: 50%;
    position: relative;
    height: 600px;
}

.blob-shape {
    width: 100%;
    height: auto;
}

/* Przyciski */
.btn {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #4068a8;
    background-color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: #4068a8;
}

/* Sekcje strony */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* O sali */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.blob-frame {
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
}

.blob-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.about-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Slider */
.slider {
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 300px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.slider-dot.active {
    background-color: white;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 24px;
    z-index: 10;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Features */
.features-section {
    padding: 80px 0;
    background-color: white;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, #3498db, #9b59b6);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Galeria */
.gallery-section {
    padding: 80px 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Sekcja urodzinki */
.urodzinki-section {
    background: linear-gradient(90deg, #3498db, #9b59b6);
    color: white;
    padding: 80px 0;
}

.urodzinki-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.urodzinki-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.urodzinki-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.urodzinki-item {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.urodzinki-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.urodzinki-image {
    height: 250px;
    overflow: hidden;
}

.urodzinki-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.urodzinki-item:hover .urodzinki-image img {
    transform: scale(1.05);
}

/* Kontakt */
.contact-section {
    background: linear-gradient(90deg, #3498db, #9b59b6);
    color: white;
    padding: 80px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-control {
    padding: 15px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 1rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
    border-radius: 20px;
}

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    margin-bottom: 15px;
}

.social-links-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: #3498db;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.more-link {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #fff;
    border-radius: 50px;
    color: #4068a8;
    background-color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.more-link-container {
    text-align: right;
    margin-top: 30px;
}

.more-link:hover {
    background-color: transparent;
    color: white;
}

/* Responsywność */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        height: 450px;
    }
    
    .slide-content, .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .urodzinki-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-container {
        flex-direction: column-reverse;
        padding: 0 20px;
    }
    
    .hero-text, .hero-image {
        width: 100%;
        text-align: center;
        padding: 0;
    }
    
    .hero-image {
        height: 350px;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .urodzinki-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobilna nawigacja */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #3498db, #9b59b6);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease;
        z-index: 1001;
        padding-top: 70px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .nav-item {
        padding: 15px;
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }
    
    .social-icons {
        margin: 30px 0 0 0;
        justify-content: center;
    }

    .header-container {
        justify-content: space-between;
    }

    .logo-container {
        position: relative;
        z-index: 1002;
    }

    .logo {
        height: 60px;
    }

    /* Animacja burger menu */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .more-link-container {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .social-icon {
        margin-left: 8px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 10px;
    }
    
    .more-link {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

/* Dostępność i SEO */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Animacje */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Lazy loading */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

