/* Reset i zmienne */
:root {
    --primary-color: #E39758;      /* PomaraĹ„czowy z logo */
    --secondary-color: #4A8B8B;    /* Teal z logo */
    --accent-color: #FCCFB3;       /* Brzoskwiniowy - kolor dominujÄ…cy */
    --dark-color: #2C3E3F;         /* Ciemny szary */
    --light-color: #FFF5EE;        /* Bardzo jasny brzoskwiniowy */
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 100px; /* Offset dla fixed navbar */
}

body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Nawigacja */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(227, 151, 88, 0.15);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text-line1,
.logo-text-line2 {
    display: inline;
}

.logo-text-line1::after {
    content: ' - ';
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

/* Facebook w navbarze - gradient z kolorĂłw logo */
.navbar .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: var(--white) !important;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.navbar .social-icon i {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(227, 151, 88, 0.5);
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #E39758 0%, #4A8B8B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Rezerwujemy miejsce na CTA/scroll, żeby przy innych metrykach fontu (np. macOS)
       tekst nie nachodził na przyciski pozycjonowane absolutnie. */
    padding-top: clamp(110px, 12vh, 170px);
    padding-bottom: clamp(170px, 18vh, 250px);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
    animation: wave 15s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

/* LatajÄ…ce ksztaĹ‚ty */
.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-duration: 20s;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation-duration: 22s;
    animation-delay: 4s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    animation-duration: 23s;
    animation-delay: 3s;
}

.shape-6 {
    width: 220px;
    height: 220px;
    bottom: 30%;
    right: 30%;
    animation-duration: 21s;
    animation-delay: 5s;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 0;
}

.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    margin-top: 0;
    animation: logoEntrance 1.5s ease-out;
    z-index: 2;
}

.hero-logo {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
    animation: gentleFloat 4s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 35px 70px rgba(227, 151, 88, 0.7)) 
            drop-shadow(0 0 40px rgba(74, 139, 139, 0.5));
}

.hero-hands {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%) scaleX(-1);
    width: 100%;
    max-width: 1000px;
    z-index: 0;
    pointer-events: none;
}

.hero-hands img {
    width: 100%;
    height: auto;
    opacity: 0.15;
    display: block;
    filter: brightness(0.6) contrast(0.8);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(227, 151, 88, 0.5) 0%, rgba(74, 139, 139, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: slideInFromTop 1s ease-out 0.8s backwards;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    line-height: 1.1;
}

.hero-main-title {
    font-size: 1em;
    font-weight: 700;
}

.hero-sub-title {
    font-size: 0.65em;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.35;
    margin: 0 auto clamp(1.5rem, 3vh, 2.5rem);
    max-width: 55ch;
    opacity: 0.95;
    animation: slideInFromTop 1s ease-out 1.1s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInFromBottom 1s ease-out 1.4s backwards;
    position: absolute;
    bottom: clamp(70px, 10vh, 110px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    pointer-events: all;
}

.cta-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-secondary:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--white);
    animation: bounce 2s infinite;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.9;
    font-weight: 400;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
    z-index: 2;
}

.team-details {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
    z-index: 2;
}

/* WspĂłĹ‚wĹ‚aĹ›cicielki - wiÄ™ksze karty */
.team-founders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.founder-card {
    background: linear-gradient(135deg, rgba(227, 151, 88, 0.05), rgba(74, 139, 139, 0.05));
    border: 2px solid var(--primary-color);
}

.founder-card .team-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.founder-card .team-name {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* PozostaĹ‚y zespĂłĹ‚ - 3 karty */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: linear-gradient(135deg, rgba(227, 151, 88, 0.05), rgba(74, 139, 139, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(227, 151, 88, 0.15);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(227, 151, 88, 0.7),
                0 0 60px rgba(74, 139, 139, 0.5),
                0 20px 40px rgba(227, 151, 88, 0.25);
}

.team-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--accent-color);
    transition: var(--transition);
}

.team-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(227, 151, 88, 0) 0%, 
        rgba(227, 151, 88, 0.3) 50%, 
        rgba(74, 139, 139, 0.3) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.team-card:hover .team-image::after {
    opacity: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(1);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 151, 88, 0.9), rgba(74, 139, 139, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-position {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ZdjÄ™cie zespoĹ‚owe z efektem paralaksy */
.team-photo-parallax {
    position: relative;
    height: clamp(620px, 75vh, 950px);
    background-image: none;
    background-attachment: fixed;
    background-position: center 22%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-photo-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(227, 151, 88, 0.6), 
        rgba(74, 139, 139, 0.6));
    z-index: 1;
}

.team-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(227, 151, 88, 0.7), 
        rgba(74, 139, 139, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1;
    position: relative;
}

/* Offer Section */
.offer {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.offer-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(227, 151, 88, 0.1);
    border: 1px solid rgba(227, 151, 88, 0.1);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(227, 151, 88, 0.2);
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.offer-card:hover .offer-icon {
    transform: rotateY(360deg);
}

.offer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.offer-description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--light-color);
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(227, 151, 88, 0.2);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--secondary-color)) border-box;
}

.gallery-room {
    display: block;
}

.gallery-slider {
    position: absolute;
    inset: 0;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity, transform;
    pointer-events: none;
    z-index: 0;
}

.gallery-slide.is-active {
    opacity: 1;
    animation: galleryKenBurns 7s ease-in-out both;
    z-index: 2;
}

.gallery-slide.is-fading-out {
    opacity: 0;
    z-index: 1;
}

.gallery-label {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(44, 62, 63, 0.82), rgba(74, 139, 139, 0.55));
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.2px;
    text-align: center;
    backdrop-filter: blur(6px);
    z-index: 5;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(227, 151, 88, 0.3);
    border-width: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ważne: ten selector ma wyższą specyficzność niż .gallery-slide,
       więc musi zawierać transition dla opacity, żeby przenikanie działało. */
    transition: opacity 1.2s ease-in-out, transform 0.6s ease;
}

.gallery-item:hover img {
    transform: none;
}

.gallery-item:hover .gallery-slide.is-active {
    transform: none;
}

@keyframes galleryKenBurns {
    from {
        transform: scale(1) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.06) translate3d(0, -1%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-slide {
        transition: none;
        transform: none;
    }

    .gallery-slide.is-active {
        animation: none;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.social-media {
    margin-top: 20px;
}

.social-media h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Facebook w kontakcie - niebieski */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white) !important;
    background: #1877f2;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icons .social-icon i {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons .social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
    color: var(--white) !important;
    background: #0c63d4;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(227, 151, 88, 0.2);
    height: 500px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0 8px;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    text-align: center;
    padding: 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer-credits {
    font-size: 0.9rem;
    margin-top: 10px !important;
}

.footer-credits a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-credits a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translate(-50%, 50px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(40px, -30px);
    }
    50% {
        transform: translate(-20px, -60px);
    }
    75% {
        transform: translate(-40px, -30px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-25%) translateY(-10px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes fall {
    0% {
        top: -10%;
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateX(-10px) rotate(180deg);
    }
    75% {
        transform: translateX(5px) rotate(270deg);
    }
    100% {
        top: 110%;
        transform: translateX(0) rotate(360deg);
    }
}

@keyframes rotateLogo {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
        opacity: 0.3;
    }
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes zoomPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes flyHeartRight {
    0% {
        top: 20%;
        right: 10%;
    }
    15% {
        top: 45%;
        right: 15%;
    }
    30% {
        top: 65%;
        right: 8%;
    }
    45% {
        top: 75%;
        right: 18%;
    }
    60% {
        top: 50%;
        right: 22%;
    }
    75% {
        top: 35%;
        right: 12%;
    }
    90% {
        top: 25%;
        right: 5%;
    }
    100% {
        top: 20%;
        right: 10%;
    }
}

@keyframes flyHeartLeft {
    0% {
        top: 30%;
        left: 10%;
    }
    12% {
        top: 18%;
        left: 18%;
    }
    28% {
        top: 55%;
        left: 8%;
    }
    42% {
        top: 70%;
        left: 15%;
    }
    58% {
        top: 45%;
        left: 5%;
    }
    72% {
        top: 25%;
        left: 12%;
    }
    88% {
        top: 60%;
        left: 20%;
    }
    100% {
        top: 30%;
        left: 10%;
    }
}

@keyframes flipHeartVertical {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .logo {
        gap: 10px;
    }

    .logo-img {
        height: 56px;
    }

    /* Telefon: 2 linie (bez ucinania/ellipsis) */
    .logo-text {
        font-size: 1.35rem;
        line-height: 1.05;
    }

    .logo-text-line1,
    .logo-text-line2 {
        display: block;
        white-space: nowrap;
    }

    .logo-text-line1::after {
        content: '';
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(227, 151, 88, 0.15);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        min-height: 500px;
    }

    .hero-logo {
        width: 220px;
    }

    .logo-glow {
        width: 270px;
        height: 270px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        bottom: 60px;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .falling-leaf {
        font-size: 1.5rem;
        opacity: 0.06;
    }

    .hero-hands {
        max-width: 600px;
        bottom: -50px;
        transform: translateX(-50%) scaleX(-1);
    }
    
    .hero-hands img {
        opacity: 0.12;
        filter: brightness(0.5) contrast(0.75);
    }

    .section-title {
        font-size: 2rem;
    }

    .team-founders {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 300px;
    }

    .team-photo-parallax {
        height: clamp(420px, 60vh, 650px);
        background-attachment: scroll;
        background-position: center 75%;
    }

    .team-photo-title {
        font-size: 2rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    /* Navbar (bardzo małe ekrany) */
    .logo-img {
        height: 50px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-logo {
        width: 180px;
    }

    .logo-glow {
        width: 220px;
        height: 220px;
    }

    .hero-title {
        font-size: 2rem;
        opacity: 0.25;
    }

    .falling-leaf {
        font-size: 1.2rem;
        opacity: 0.05;
    }

    .hero-hands {
        max-width: 450px;
        bottom: -40px;
        transform: translateX(-50%) scaleX(-1);
    }

    .hero-hands img {
        opacity: 0.1;
        filter: brightness(0.45) contrast(0.7);
    }

    .hero-buttons {
        bottom: 50px;
        gap: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

