body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: 'Playfair Display', serif;
}

.text-red-600 {
    color: #dc2626;
}

.hover\:text-red-600:hover {
    color: #dc2626;
}

.bg-red-600 {
    background-color: #dc2626;
}

.hover\:bg-red-500:hover {
    background-color: #ef4444;
}

.focus-visible\:outline-red-600:focus-visible {
    outline-color: #dc2626;
}

.border-red-600 {
    border-color: #dc2626;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.text-red-700 {
    color: #b91c1c;
}

.hover\:bg-red-700:hover {
    background-color: #b91c1c;
}

.text-red-400 {
    color: #f87171;
}

.hover\:text-red-300:hover {
    color: #fca5a5;
}

nav a.active {
    color: #dc2626;
    border-bottom-width: 2px;
    border-color: #dc2626;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Pasek w kratę jak bieżniki na stołach - separator w sekcji Wigilia 2026 */
.tartan-stripe {
    height: 16px;
    background:
        repeating-linear-gradient(90deg, transparent 0 10px, rgba(22, 64, 44, .85) 10px 22px, transparent 22px 26px, rgba(10, 25, 18, .7) 26px 28px, transparent 28px 40px),
        repeating-linear-gradient(0deg, transparent 0 4px, rgba(22, 64, 44, .7) 4px 10px, transparent 10px 16px),
        #9e1b2c;
}

#dla-dzieci.parallax-section,
#for-kids.parallax-section {
    background-image: url('/images/01.restauracja/restauracja_10.webp');
}


/* Style dla nowej galerii */
.gallery-tab {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #4b5563;
    /* text-gray-600 */
    background-color: #ffffff;
    border-radius: 0.5rem;
    /* rounded-lg */
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    /* shadow-sm */
    border: 1px solid #e5e7eb;
    /* border-gray-200 */
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.gallery-tab:hover {
    background-color: #f9fafb;
    /* hover:bg-gray-50 */
    color: #dc2626;
    /* hover:text-red-600 */
}

.gallery-tab.active {
    background-color: #dc2626;
    /* bg-red-600 */
    color: #ffffff;
    border-color: #dc2626;
    /* border-red-600 */
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    /* shadow-md */
}

.gallery-item {
    border-radius: 1rem;
    /* rounded-2xl */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    /* shadow-lg */
    overflow: hidden;
    height: 16rem;
    /* h-64 */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: block;
    /* Ważne dla GLightbox */
}

/* Klasa do ukrywania elementów przez limit "Pokaż więcej" */
.gallery-item.hidden-by-limit {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.05);
}