* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4A574;
    --secondary-color: #8B6F47;
    --accent-color: #E8C4A0;
    --dark-color: #2C2C2C;
    --light-color: #F8F8F8;
    --white: #FFFFFF;
    --error-color: #E63946;
    --success-color: #06D6A0;
    --gradient-1: linear-gradient(135deg, #D4A574 0%, #E8C4A0 100%);
    --gradient-2: linear-gradient(135deg, #8B6F47 0%, #D4A574 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

main {
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* Animacje */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Watermark */
.watermark-left {
    position: fixed;
    top: 15%;
    left: 5%;
    transform: rotate(-25deg);
    font-size: 90px;
    font-weight: 900;
    color: rgba(212, 165, 116, 0.12);
    z-index: 9998;
    pointer-events: none;
    letter-spacing: 18px;
    user-select: none;
    mix-blend-mode: multiply;
}

.watermark-center {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
    font-size: 120px;
    font-weight: 900;
    color: rgba(212, 165, 116, 0.13);
    z-index: 9998;
    pointer-events: none;
    letter-spacing: 22px;
    user-select: none;
    mix-blend-mode: multiply;
}

.watermark-right {
    position: fixed;
    top: 25%;
    right: 5%;
    transform: rotate(20deg);
    font-size: 85px;
    font-weight: 900;
    color: rgba(212, 165, 116, 0.11);
    z-index: 9998;
    pointer-events: none;
    letter-spacing: 16px;
    user-select: none;
    mix-blend-mode: multiply;
}

/* Nawigacja */
nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1001;
    cursor: pointer;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 80px;
    width: auto;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-grow: 1;
    justify-content: center;
}

.nav-center a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
}

.nav-center a:hover {
    color: var(--primary-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
}

.nav-contact a {
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.nav-contact a:hover {
    color: var(--primary-color);
}

.nav-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-social a {
    color: var(--secondary-color);
    font-size: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(232, 196, 160, 0.1));
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-social a:hover {
    transform: scale(1.15);
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.cta-button {
    background: var(--gradient-1);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero */
.hero {
    position: relative;
    color: var(--white);
    text-align: center;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 85, 56, 0.85), rgba(139, 111, 71, 0.75)), 
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 40px 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    color: var(--white);
    word-wrap: break-word;
}

.hero .tagline {
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 300;
    margin-bottom: 25px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    color: var(--white);
    word-wrap: break-word;
}

.hero p {
    font-size: clamp(14px, 2vw, 18px);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    color: var(--white);
    word-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 10px;
}

.btn-primary {
    background: var(--white);
    color: var(--secondary-color);
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-size: clamp(14px, 2vw, 16px);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--light-color);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 30px;
    border: 2px solid var(--white);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: clamp(14px, 2vw, 16px);
    backdrop-filter: blur(10px);
    cursor: pointer;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Sekcje */
section {
    padding: 80px 20px;
    position: relative;
    background: var(--white);
}

section:nth-child(even) {
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 50%, #FAFAFA 100%);
}

/* Sekcja O nas */
#o-nas {
    background: #ffffff;
    padding: 80px 20px;
    margin: 0;
    position: relative;
    box-shadow: 0 -20px 40px rgba(255, 255, 255, 1);
}

#o-nas::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 20px;
    background: #ffffff;
    z-index: 10;
}

#o-nas .container {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding: 20px;
    border-radius: 0;
}

/* Sekcja Usługi */
#uslugi {
    background: linear-gradient(to bottom right, #ffffff, #fafafa, #ffffff);
    position: relative;
    overflow: hidden;
}

#uslugi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(212, 165, 116, 0.05) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
}

/* Sekcja Cennik */
#cennik {
    background: 
        linear-gradient(45deg, rgba(212, 165, 116, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(212, 165, 116, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(212, 165, 116, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(212, 165, 116, 0.03) 75%),
        var(--white);
    background-size: 100px 100px;
    background-position: 0 0, 0 50px, 50px -50px, -50px 0px;
}

/* Sekcja Galeria */
#galeria {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 25%, #fafafa 50%, #ffffff 75%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

#galeria::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: conic-gradient(from 0deg, rgba(212, 165, 116, 0.06) 0deg, transparent 90deg, rgba(212, 165, 116, 0.06) 180deg, transparent 270deg);
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

/* Sekcja Kontakt */
#kontakt {
    background: linear-gradient(to bottom, #ffffff, #fafafa);
}

/* Sekcja Zamów */
#zamow {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.03), #ffffff, rgba(232, 196, 160, 0.03));
}

/* Tytuły sekcji */
.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-1);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Zawartość sekcji O nas */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.benefit-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
}

.benefit-item::before {
    content: "✓";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
    font-weight: 700;
}

.benefit-item strong {
    color: var(--dark-color);
}

.quote-box {
    background: var(--gradient-1);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    font-size: 22px;
    font-style: italic;
    margin-top: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    opacity: 0.2;
    font-family: Georgia, serif;
    color: var(--white);
}

/* Usługi - siatka masonry */
.services-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 100px;
    gap: 20px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.masonry-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.masonry-item.short {
    grid-row: span 2;
}

.masonry-item.medium {
    grid-row: span 3;
}

.masonry-item.tall {
    grid-row: span 4;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.2);
}

.masonry-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.masonry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 44, 44, 0.75), rgba(44, 44, 44, 0.85));
    z-index: 2;
    transition: all 0.3s ease;
}

.masonry-item:hover::before {
    background: linear-gradient(to bottom, rgba(139, 111, 71, 0.8), rgba(107, 85, 56, 0.9));
}

.masonry-content {
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 3;
}

.masonry-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.masonry-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05), rgba(232, 196, 160, 0.05));
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.services-cta p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.services-cta a.nav-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.services-cta a.nav-link:hover {
    color: var(--secondary-color);
}

/* Tabela cennika */
.pricing-table {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.pricing-row:nth-child(even) {
    background-color: #FAFAFA;
}

.pricing-row:hover {
    background-color: #f0f0f0;
    padding-left: 35px;
}

.pricing-row:hover::before {
    transform: scaleY(1);
}

.pricing-row:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 600;
    color: var(--dark-color);
}

.service-price-table {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #888;
}

/* Siatka galerii */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.gallery-item {
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

/* Sekcja kontakt */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-item {
    padding: 20px;
    background: #FAFAFA;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.contact-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.hours-table {
    margin-top: 15px;
    width: 100%;
}

.hours-table td {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--dark-color);
}

.hours-table td:last-child {
    text-align: right;
    color: #666;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 1 / 1;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Formularze */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-color);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: var(--success-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: var(--error-color);
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.success-message {
    background: var(--success-color);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.success-message.show {
    display: block;
    animation: slideIn 0.5s ease;
}

.submit-button {
    background: var(--gradient-1);
    color: var(--white);
    padding: 16px 50px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    font-family: 'Poppins', sans-serif;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-info {
    background: #FAFAFA;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
    border-left: 4px solid var(--primary-color);
}

.datetime-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Strona polityki prywatności */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.privacy-content h1 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.privacy-content h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin: 30px 0 15px;
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.privacy-content ul {
    margin: 15px 0 15px 30px;
    color: #555;
}

.privacy-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.back-button {
    display: inline-block;
    margin-bottom: 30px;
    padding: 12px 30px;
    background: var(--gradient-1);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer - linki wycentrowane, sociale po prawej */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 50px 20px 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-column: 2;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0;
    justify-content: flex-end;
    grid-column: 3;
}

.footer-social h3 {
    display: none;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-links a:hover {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

footer p {
    opacity: 0.8;
    position: relative;
    z-index: 1;
    color: var(--white);
    margin-top: 20px;
    text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
    .watermark-left,
    .watermark-right {
        display: none;
    }

    .watermark-center {
        font-size: 60px;
        letter-spacing: 12px;
    }

    .menu-toggle {
        display: flex;
    }

    nav .container {
        flex-wrap: wrap;
    }

    .logo-img {
        height: 60px;
    }

    .nav-center,
    .nav-right {
        display: none;
    }

    .nav-center.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 15px;
    }

    .nav-right.active {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-bottom: 20px;
        gap: 15px;
    }

    .nav-contact {
        align-items: center;
    }

    .hero {
        min-height: 100vh;
        padding: 60px 20px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .masonry-item.short,
    .masonry-item.medium,
    .masonry-item.tall {
        grid-row: span 1;
        min-height: 200px;
    }
    
    .masonry-content {
        padding: 20px;
    }

    .datetime-group {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .footer-social {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .privacy-content {
        padding: 40px 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        min-height: 400px;
    }
}

/* Fix białego tła w footer navigation */
footer nav,
footer .footer-links,
footer [role="contentinfo"] nav,
footer nav[aria-label="Dodatkowa nawigacja"] {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

footer nav a,
footer .footer-links a {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
}
