body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #2C2C2C;
    background: #FFFFFF;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

.kontener {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.nawigacja {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nawigacja.przewiniete {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.kontener-nawigacji {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    text-decoration: none;
}

.logo i {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

.menu-nawigacji {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.link-nawigacji {
    position: relative;
    color: #2C2C2C;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.link-nawigacji::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8B4513;
    transition: all 0.3s ease;
}

.link-nawigacji:hover {
    color: #8B4513;
}

.link-nawigacji:hover::after {
    width: 100%;
}

.menu-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.menu-burger span {
    width: 25px;
    height: 3px;
    background-color: #2C2C2C;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-burger.aktywne span:nth-child(1) {
    transform: rotate(44deg) translate(6px, 6px);
}

.menu-burger.aktywne span:nth-child(2) {
    opacity: 0;
}

.menu-burger.aktywne span:nth-child(3) {
    transform: rotate(-44deg) translate(6px, -6px);
}

.sekcja-glowna {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(210, 105, 30, 0.1)),
                url('../img/hero-bg.jpg') center/cover no-repeat;
    color: white;
    text-align: center;
    overflow: hidden;
}

.tresc-glowna {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.tytul-glowny {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.podtytul-glowny {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #ffffff;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.wskaznik-przewijania {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.wskaznik-przewijania i {
    font-size: 2rem;
    color: #ffffff;
}

.przycisk {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.przycisk-glowny {
    background-color: #8B4513;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.przycisk-glowny:hover {
    background-color: #D2691E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.przycisk-glowny:active {
    transform: translateY(-1px);
}

.przycisk-wyslij {
    background-color: #8B4513;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
}

.przycisk-wyslij:hover {
    background-color: #D2691E;
    transform: translateY(-2px);
}

.przycisk-wyczysc {
    background-color: #666;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
}

.przycisk-wyczysc:hover {
    background-color: #2C2C2C;
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
    position: relative;
}

.naglowek-sekcji {
    text-align: center;
    margin-bottom: 60px;
}

.tytul-sekcji {
    font-size: 2.5rem;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.podkreslenie-tytulu {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #D2691E);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.podtytul-sekcji {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.o-nas {
    background-color: #F5F5F5;
}

.tresc-o-nas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    text-justify:auto;
    margin: 0 auto;
}

.kolumna-tekstu h3 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kolumna-tekstu h3 i {
    font-size: 1.5rem;
    color: #8B4513;
}

.kolumna-tekstu p {
    margin-bottom: 1rem;
    line-height: 1.8;
    text-align: start;
}

.menu {
    background-color: #FFFFFF;
}

.siatka-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pozycja-menu {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
    margin-bottom: 0;
}

.pozycja-menu:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
    border-color: #8B4513;
}

.ikona-menu {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.pozycja-menu:hover .ikona-menu {
    transform: scale(1.2) rotate(5deg);
}

.pozycja-menu h3 {
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.pozycja-menu p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.cena {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #8B4513;
    padding: 5px 15px;
    background-color: #F5F5F5;
    border-radius: 20px;
    margin-top: 10px;
}

.galeria {
    background-color: #F5F5F5;
}

.siatka-galeria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pozycja-galeria {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
    width: 100%;
}

.pozycja-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.nakladka-galeria {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.nakladka-galeria i {
    font-size: 3rem;
    color: #ffffff;
    transform: scale(0);
    transition: all 0.3s ease;
}

.pozycja-galeria:hover img {
    transform: scale(1.1);
}

.pozycja-galeria:hover .nakladka-galeria {
    opacity: 1;
}

.pozycja-galeria:hover .nakladka-galeria i {
    transform: scale(1);
    transition-delay: 0.1s;
}

.kontakt {
    background-color: #FFFFFF;
}

.tresc-kontakt {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-kontakt {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pozycja-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pozycja-info i {
    font-size: 2rem;
    color: #8B4513;
    margin-top: 5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pozycja-info:hover i {
    transform: scale(1.2);
}

.pozycja-info h3 {
    color: #2C2C2C;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.pozycja-info p {
    margin: 0;
    line-height: 1.6;
}

.formularz-kontakt {
    background-color: #F5F5F5;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.grupa-formularz {
    margin-bottom: 25px;
}

.grupa-formularz label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #2C2C2C;
    font-weight: 600;
    font-size: 1rem;
}

.grupa-formularz label i {
    color: #8B4513;
}

.grupa-formularz input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
}

.grupa-formularz textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    resize: vertical;
    box-sizing: border-box;
}

.grupa-formularz input:focus,
.grupa-formularz textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.grupa-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.grupa-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}

.grupa-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
}

.komunikat-bledu {
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.przyciski-formularz {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.przyciski-formularz .przycisk {
    flex: 1;
}

.stopka {
    background-color: #2C2C2C;
    background: #2C2C2C;
    color: white;
    padding: 60px 0 20px;
    width: 100%;
}

.tresc-stopka {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.sekcja-stopka h3 {
    color: #F4A460;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sekcja-stopka p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.sekcja-stopka ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sekcja-stopka ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    padding-left: 10px;
    position: relative;
    display: inline-block;
}

.sekcja-stopka ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.sekcja-stopka ul li a:hover {
    color: #F4A460;
    padding-left: 20px;
}

.sekcja-stopka ul li a:hover::before {
    opacity: 1;
}

.linki-spolecznosciowe {
    display: flex;
    gap: 15px;
}

.linki-spolecznosciowe a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #ffffff;
}

.linki-spolecznosciowe a:hover {
    background-color: #8B4513;
    transform: translateY(-5px) scale(1.1);
}

.dol-stopka {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dol-stopka p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@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 pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .tytul-glowny {
        font-size: 3rem;
    }
    
    .tresc-o-nas {
        gap: 30px;
    }
    
    .siatka-menu {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .siatka-galeria {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tresc-kontakt {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tresc-stopka {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .menu-burger {
        display: flex;
    }
    
    .menu-nawigacji {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .menu-nawigacji.aktywne {
        left: 0;
    }
    
    .menu-nawigacji li {
        width: 100%;
        text-align: center;
    }
    
    .link-nawigacji {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        width: 100%;
    }
    
    .sekcja-glowna {
        height: 100vh;
        padding: 0 20px;
    }
    
    .tytul-glowny {
        font-size: 2.5rem;
    }
    
    .podtytul-glowny {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .tresc-o-nas {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .siatka-menu {
        grid-template-columns: 1fr;
    }
    
    .siatka-galeria {
        grid-template-columns: 1fr;
    }
    
    .pozycja-galeria {
        height: 250px;
    }
    
    .formularz-kontakt {
        padding: 25px;
    }
    
    .przyciski-formularz {
        flex-direction: column;
    }
    
    .tresc-stopka {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .linki-spolecznosciowe {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .kontener {
        padding: 0 15px;
    }
    
    .tytul-glowny {
        font-size: 2rem;
    }
    
    .tytul-sekcji {
        font-size: 1.8rem;
    }
    
    .formularz-kontakt {
        padding: 20px;
    }
}
