/* ==========================================================================
   Arka Krakow - Modern Refresh 2026
   Color palette preserved: #b12e71 (accent), #562210 (dark brown),
   #605C5D (text), #3C312B (headings), #F3F3F3 (bg)
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #605C5D;
    background: #F5F3F0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #b12e71;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #562210;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    color: #3C312B;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1em;
    font-size: 1rem;
    line-height: 1.7;
}

/* --- Layout Container --- */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

#menu_main {
    background: linear-gradient(135deg, #7d1f50 0%, #b12e71 100%);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

#menu_main > ul {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 0;
}

#menu_main > ul > li {
    position: relative;
}

#menu_main a {
    display: block;
    padding: 16px 22px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

#menu_main a:hover,
#menu_main a.current {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-bottom-color: #b12e71;
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 14px 20px;
    cursor: pointer;
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
    background: #fff;
    border-bottom: 1px solid #e8e4e0;
    padding: 10px 0 0 0;
}

header > .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top row: address left, logo center, contact right */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 2px solid #ede8e4;
}

.header-left {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #605C5D;
}

.header-left .street-address,
.header-left .postal-code,
.header-left .locality {
    display: inline;
}

.logo {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 30px;
}

.logo a {
    display: block;
}

.logo img {
    height: 80px;
    width: auto;
    margin: 0 auto;
}

.header-right {
    flex: 1;
    text-align: right;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #605C5D;
}

.header-right .tel {
    font-size: 1.05rem;
    font-weight: 700;
    color: #3C312B;
}

.header-right .email {
    color: #b12e71;
}

/* Bottom row: facebook + booking button */
.header-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    padding: 8px 0;
}

.vcard {
    display: none;
}

.vcard .fn {
    display: none;
}

.facebook_link {
    font-size: 0.85rem;
    color: #605C5D;
    margin: 0;
}

.facebook_link a {
    font-weight: 600;
    color: #3C312B;
}

.facebook_link a:hover {
    color: #b12e71;
}

/* CTA Button */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #b12e71, #962560);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(212,110,60,0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #962560, #7d1f50);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(212,110,60,0.4);
    color: #fff !important;
}

/* ==========================================================================
   Slider / Hero
   ========================================================================== */

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    background: #2a2220;
}

.slider-1 {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.slider-1 .items {
    display: block !important;
}

.slider-1 .items li {
    position: relative;
    display: none;
}

.slider-1 .items li:first-child {
    display: block;
}

.slider-1 .items li img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    height: auto;
    width: 100%;
    background: linear-gradient(transparent, rgba(60,49,43,0.85));
    padding: 60px 40px 30px;
    z-index: 2;
}

.banner-padd {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.banner strong {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.3;
    display: block;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.banner span {
    color: #e8a5c8;
    font-size: 1rem;
    display: block;
    margin-top: 4px;
}

.banner-button {
    display: inline-block;
    padding: 12px 28px;
    background: #b12e71;
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: static;
    left: auto;
    top: auto;
}

.banner-button:hover {
    background: #962560;
    transform: translateY(-1px);
    text-decoration: none;
}

/* ==========================================================================
   Content / Section
   ========================================================================== */

section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
    flex: 1;
}

article {
    margin-bottom: 30px;
}

article h1 {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

article h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #b12e71;
    border-radius: 2px;
}

/* Distinct text */
.distinct {
    color: #b12e71;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Content lists */
section article ul {
    margin: 0 0 1.5em 0;
    padding: 0;
}

section article ul li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid #ede8e4;
}

section article ul li:last-child {
    border-bottom: none;
}

section article ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: #b12e71;
    border-radius: 50%;
}

/* ==========================================================================
   Cards (for article blocks on main page)
   ========================================================================== */

#main section > article {
    display: inline-block;
    max-width: 100%;
    margin: 0;
    padding: 30px;
    vertical-align: top;
}

/* ==========================================================================
   Features grid (index)
   ========================================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    background: none;
    text-align: center;
}

.feature-card p {
    font-size: 0.9rem;
    color: #7a7576;
    margin-bottom: 15px;
}

.feature-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #b12e71;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.feature-link:hover {
    border-bottom-color: #b12e71;
    color: #b12e71;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Oferta page
   ========================================================================== */

.oferta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.oferta-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.oferta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.oferta-icon {
    margin-bottom: 12px;
}

.oferta-card h3 {
    background: none;
    text-align: left;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.oferta-card p {
    font-size: 0.9rem;
    color: #7a7576;
    margin-bottom: 0;
}

.oferta-extras {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.oferta-extras-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.oferta-extras-card h3 {
    background: none;
    text-align: left;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.oferta-extras-card ul li {
    border-bottom: none;
    padding: 4px 0 4px 24px;
}

.oferta-cta {
    background: linear-gradient(135deg, #3C312B, #562210);
    color: rgba(255,255,255,0.9);
}

.oferta-cta h3 {
    color: #fff;
}

.oferta-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
}

.oferta-cta a:not(.btn) {
    color: #e8a5c8;
}

.oferta-cta ul li::before {
    background: #b12e71;
}

@media (max-width: 768px) {
    .oferta-grid,
    .oferta-extras {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Tables (cennik)
   ========================================================================== */

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

th {
    background: linear-gradient(135deg, #3C312B, #562210);
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 12px 20px;
    border-bottom: 1px solid #ede8e4;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: #faf6f3;
}

.cena {
    width: 150px;
    font-weight: 600;
    color: #b12e71;
}

/* ==========================================================================
   Cennik page
   ========================================================================== */

.cennik-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.cennik-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.cennik-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.cennik-card-header {
    background: linear-gradient(135deg, #b12e71, #962560);
    padding: 25px 20px 20px;
    color: #fff;
}

.cennik-card-header h3 {
    color: #fff;
    background: none;
    margin: 10px 0 2px;
    font-size: 1.15rem;
    text-align: center;
}

.cennik-sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin: 0;
}

.cennik-card-price {
    padding: 25px 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3C312B;
}

.cennik-card-price span {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #7a7576;
}

.cennik-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 10px;
}

.cennik-info-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cennik-info-card h3 {
    background: none;
    text-align: left;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.cennik-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ede8e4;
    font-size: 0.9rem;
}

.cennik-info-item:last-of-type {
    border-bottom: none;
}

.cennik-info-item strong {
    color: #b12e71;
    white-space: nowrap;
}

.cennik-cta {
    background: linear-gradient(135deg, #b12e71, #962560);
    color: rgba(255,255,255,0.9);
}

.cennik-cta h3 {
    color: #fff;
}

.cennik-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.cennik-cta a {
    color: #e8a5c8;
}

@media (max-width: 768px) {
    .cennik-cards {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .cennik-info-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Gallery
   ========================================================================== */

#galeria .galeria-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px;
    padding: 10px 0 30px;
    width: 100%;
}

#galeria .galeria-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

#galeria .galeria-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

#galeria .galeria-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

#galeria .galeria-item:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   Distances (krakow)
   ========================================================================== */

.distances-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.distance-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.distance-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0,0,0,0.1);
}

.distance-info {
    margin-bottom: 12px;
}

.distance-info strong {
    display: block;
    color: #3C312B;
    font-size: 1rem;
}

.distance-info span {
    font-size: 0.8rem;
    color: #9a9596;
}

.distance-times {
    display: flex;
    gap: 12px;
}

.dt {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #3C312B;
    background: #f9eef4;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.dt:first-child {
    color: #b12e71;
    background: #fcedf5;
}

.dt-na {
    color: #ccc;
    background: #f5f5f5;
}

@media (max-width: 768px) {
    .distances-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Contact (kontakt)
   ========================================================================== */

/* kontakt - layout handled by .contact-columns */

.address {
    font-size: 1rem;
    line-height: 1.8;
}

.address p {
    margin-top: 15px;
}

/* Form */
form {
    margin-top: 15px;
}

#inputs, #message {
    margin-bottom: 10px;
}

input[type="text"],
textarea {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    margin: 6px 0 14px;
    border: 2px solid #e0dbd6;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: #3C312B;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

input[type="text"]:focus,
textarea:focus {
    border-color: #b12e71;
    box-shadow: 0 0 0 3px rgba(212,110,60,0.12);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input[type="submit"],
.button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #b12e71, #962560);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: auto;
}

input[type="submit"]:hover,
.button:hover {
    background: linear-gradient(135deg, #962560, #7d1f50);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212,110,60,0.3);
}

/* Contact columns */
.contact-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info,
.contact-location {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.contact-info h2,
.contact-location h2 {
    text-align: left;
    background: none;
}

/* Map */
#mapa {
    width: 100%;
    margin: 30px 0;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    padding: 0;
}

#mapa iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
    background: linear-gradient(135deg, #962560 0%, #7d1f50 100%);
    color: rgba(255,255,255,0.7);
    padding: 30px 0;
    margin-top: auto;
}

footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

footer small {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

footer small a {
    color: rgba(255,255,255,0.5);
}

.nocowanie img {
    height: 35px;
    width: auto;
    vertical-align: middle;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.nocowanie:hover img {
    opacity: 1;
}

#menu_footer {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

#menu_footer a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

#menu_footer a:hover,
#menu_footer a.current {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* ==========================================================================
   Cookies Banner
   ========================================================================== */

.cookies {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: none;
    background: rgba(60,49,43,0.97);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.9rem;
    text-align: center;
    padding: 18px 60px 18px 20px;
    z-index: 200;
    border: none;
}

.cookies a {
    color: #e8a5c8;
}

.cookies-close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: #b12e71;
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cookies-close:hover {
    background: #962560;
    color: #fff;
}

/* ==========================================================================
   Figures
   ========================================================================== */

figure {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin: 15px 0;
    padding: 0;
    border: none;
    background: none;
}

figure img {
    width: 100%;
    display: block;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    /* Nav */
    .menu-toggle {
        display: block;
    }

    #menu_main > ul {
        display: none;
        flex-direction: column;
        padding: 0;
    }

    #menu_main > ul.open {
        display: flex;
    }

    #menu_main a {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* Header */
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .header-left, .header-right {
        text-align: center;
    }

    .logo {
        order: -1;
        padding: 0 0 10px 0;
    }

    .header-bottom {
        justify-content: center;
    }

    /* Slider */
    .slider-1 .items li img {
        height: 280px;
    }

    .banner {
        padding: 30px 20px 20px;
    }

    .banner-padd {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner strong {
        font-size: 1.3rem;
    }

    /* Content */
    section {
        padding: 30px 15px;
    }

    /* Contact */
    #kontakt article {
        min-width: 100%;
    }

    #mapa iframe {
        height: 300px;
    }

    /* Footer */
    footer .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    #menu_footer {
        justify-content: center;
    }

    /* Gallery */
    #galeria .pro_wrapper {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .slider-1 .items li img {
        height: 200px;
    }

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 10px 12px;
    }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
