/* Atrakcje Single CSS */

.attr-single {
    background: #f8f9fa;
    padding-bottom: 60px;
    font-family: 'Inter', sans-serif;
}

/* Breadcrumbs */
.attr-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6c757d;
    padding: 20px 0;
    margin-bottom: 10px;
}

.attr-breadcrumbs a {
    color: #4B3F72;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.attr-breadcrumbs a:hover {
    color: var(--primary);
}

.attr-breadcrumbs .sep {
    color: #adb5bd;
}

/* Header (Cover + Info) */
.attr-header {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .attr-header {
        flex-direction: row;
        align-items: stretch;
    }
}

.attr-header-img {
    height: 300px;
    background-size: cover;
    background-position: top center;
    flex: 0 0 45%;
}

@media (min-width: 992px) {
    .attr-header-img {
        height: auto;
        min-height: 350px;
    }
}

.attr-header-img.missing {
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ced4da;
}

.attr-header-content {
    padding: 35px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.attr-header-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: #212529;
    margin: 0 0 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.attr-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    background: #f8f9fa;
    display: inline-flex;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #f1f3f5;
}

.attr-rating .score {
    font-size: 16px;
    font-weight: 800;
    color: #212529;
}

.attr-rating .votes {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.attr-meta-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #495057;
    line-height: 1.5;
}

.meta-item i {
    color: var(--primary);
    margin-top: 4px;
    width: 20px;
    text-align: center;
    font-size: 18px;
}

.meta-item a {
    color: #4B3F72;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.meta-item a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Main Layout Grid */
.attr-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
}

@media (min-width: 992px) {
    .attr-layout {
        grid-template-columns: 1fr 350px;
    }
}

/* Box Common */
.attr-box {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.box-title {
    font-size: 20px;
    font-weight: 800;
    color: #212529;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f3f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.box-title i {
    color: var(--primary);
}

/* Editor HTML Content */
.editor-content {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
}

.editor-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #212529;
    margin: 35px 0 15px;
    line-height: 1.3;
}

.editor-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #343a40;
    margin: 25px 0 15px;
}

.editor-content p {
    margin: 0 0 20px;
}

.editor-content ul {
    margin: 0 0 25px;
    padding-left: 20px;
}

.editor-content li {
    margin-bottom: 10px;
    position: relative;
    list-style: none;
}

.editor-content li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #212529;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #eef0ff;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    background: white;
}

.faq-answer p {
    margin: 20px 0;
    color: #495057;
    line-height: 1.7;
    font-size: 15px;
}

.faq-item.active .faq-question {
    background: #4B3F72;
    color: white;
}

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 1500px;
}

/* Mapa Box */
.map-container {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    margin-bottom: 15px;
    z-index: 1;
}

.map-addr {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 15px;
    text-align: center;
}

.btn-directions {
    display: block;
    width: 100%;
    text-align: center;
    background: #eeeeee;
    color: #212529;
    text-decoration: none;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}

.btn-directions i {
    color: var(--success);
    margin-right: 5px;
}

.btn-directions:hover {
    background: var(--success);
    color: white;
}

.btn-directions:hover i {
    color: white;
}

/* Godziny Box */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e9ecef;
    font-size: 14px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    color: #495057;
    font-weight: 600;
}

.hours-list .hours {
    color: #212529;
    font-weight: 700;
}

.hours-list .closed {
    color: var(--danger);
    background: #ffe3e6;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .attr-header-content {
        padding: 25px 20px;
    }

    .attr-header-content h1 {
        font-size: 26px;
    }
}