/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-8, .col-md-12,
.col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-8, .col-sm-12 {
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-3 { width: 25%; }
.col-md-4 { width: 33.333%; }
.col-md-5 { width: 41.666%; }
.col-md-6 { width: 50%; }
.col-md-8 { width: 66.666%; }
.col-md-12 { width: 100%; }

.col-sm-3 { width: 25%; }
.col-sm-4 { width: 33.333%; }
.col-sm-5 { width: 41.666%; }
.col-sm-6 { width: 50%; }
.col-sm-8 { width: 66.666%; }
.col-sm-12 { width: 100%; }

@media (max-width: 768px) {
    .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-8, .col-md-12,
    .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-8, .col-sm-12 {
        width: 100%;
    }
}

/* Header & Navigation */
.navbar {
    background-color: #000;
    border-bottom: 1px solid #333;
}

.navbar-fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.top-line {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

.top-line-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-line-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.top-line-item .icon {
    display: inline-block;
}

.top-line-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.top-line-item a:hover {
    color: #dfb871;
}

.top-line-item span:not(.icon) {
    color: #fff;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

.navbar-header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: 1px solid #fff;
    padding: 8px 12px;
    cursor: pointer;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.3s;
}

.navbar-collapse {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
    margin-left: auto;
}

.menu-all-pages-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-left: auto;
}

.navbar-nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.navbar-nav.navbar-right {
    margin-left: auto;
    margin-right: 0;
}

.navbar-nav > li > a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    padding: 5px 5px;
    display: block;
}

.navbar-nav > li > a:hover,
.navbar-nav > li.active > a {
    color: #dfb871;
}

.menu-item-has-children {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #232323;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    list-style: none;
    min-width: 200px;
    display: none;
    padding: 10px 0;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

.sub-menu li a {
    padding: 10px 20px;
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.sub-menu li a:hover,
.sub-menu li.active > a {
    color: #dfb871;
    background-color: rgba(223, 184, 113, 0.1);
}

/* Desktop/Mobile visibility classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    .navbar .container {
        flex-wrap: wrap;
        margin-left: 20px;
    }
    
    .navbar-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-toggle {
        display: block;
        order: 2;
        background: none;
        border: 1px solid #fff;
        padding: 8px 12px;
        cursor: pointer;
        margin-right: 20px;
    }
    
    .wpb_single_image.wpb_content_element.vc_align_center {
        margin-top: 40%;
    }
    
    .top-line-content {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .top-line {
        background-color: #333;
        color: #fff;
        padding: 0px 0;
    }
    
    .page-banner-section h1, .page-banner-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
        margin-top: 25%;
        color: #fff;
    }
    
    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        background-color: #fff;
        margin: 4px 0;
        transition: all 0.3s;
    }
    
    .navbar-brand {
        order: 1;
    }
    
    .navbar-collapse {
        display: none !important;
        width: 100%;
        order: 3;
        flex-direction: column;
        margin-top: 15px;
    }
    
    .navbar-collapse.in,
    .navbar-collapse.show,
    .navbar-collapse.collapse.in,
    .navbar-collapse.collapse.show {
        display: flex !important;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .navbar-nav > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav > li > a {
        padding: 15px 20px;
        display: block;
        width: 100%;
    }
    
    .sub-menu {
        display: none !important;
    }
    
    .menu-item-has-children:hover .sub-menu {
        display: block !important;
    }
}

/* Page Banner */
.page-banner-section {
    background-image: url('../images/headersubpage.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #333;
    padding: 60px 0 30px;
    margin-top: 8%;
    position: relative;
}

.page-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.page-banner-section .container {
    position: relative;
    z-index: 1;
}

.page-banner-section h1,
.page-banner-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.page-banner-section h2 {
    font-size: 30px;
}

.page-depth {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-depth li {
    color: #999;
    display: flex;
    align-items: center;
}

.page-depth li:not(:last-child)::after {
    content: "→";
    margin-left: 10px;
    color: #999;
    font-size: 14px;
}

.page-depth li.active a {
    color: #c49033;
}

.page-depth a {
    color: #999;
    text-decoration: none;
}

/* Blog Section */
.blog-section {
    padding: 40px 0;
}

.blog-box {
    background: #000;
    padding: 30px;
    margin-bottom: 30px;
}

.post-content-text h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #c49033;
}

.post-content-text {
    color: #fff;
}

.post-content-text p,
.post-content-text label,
.post-content-text small {
    color: #fff;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #555;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    background-color: #1a1a1a;
    color: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #c49033;
    background-color: #222;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
}

.checkbox {
    margin-top: 10px;
}

.checkbox label {
    font-weight: normal;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #fff;
}

.checkbox label a {
    color: #dfb871;
    text-decoration: underline;
}

.checkbox label a:hover {
    color: #c49033;
}

.form-text.text-muted {
    color: #999;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

/* Price Table */
.price-table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #93a1a1;
    border-radius: 0;
    background-color: #fff;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
}

.price-table th,
.price-table td {
    border: 1px solid #93a1a1;
    padding: 10px;
    text-align: center;
    vertical-align: top;
}

.price-table thead th {
    background-color: #dfb871;
    color: #fff;
    font-weight: 600;
    text-transform: none;
}

.price-table tbody td {
    background-color: #fff;
    color: #000;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
}

.price-table tbody tr:nth-child(even) td {
    background-color: #fff;
}

/* Regulamin and Privacy Policy Styles */
.post-content-text .wp-block-list {
    list-style: decimal;
    padding-left: 30px;
    margin: 20px 0;
}

.post-content-text .wp-block-list li {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #fff;
}

.post-content-text .wp-block-list li a {
    color: #dfb871;
    text-decoration: underline;
}

.post-content-text .wp-block-list li a:hover {
    color: #c49033;
}

.post-content-text .muted {
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
}

.post-content-text .muted a {
    color: #dfb871;
    text-decoration: underline;
}

.post-content-text .muted a:hover {
    color: #c49033;
}

.post-content-text .section {
    margin: 30px 0;
}

.post-content-text .section h3 {
    color: #c49033;
    font-size: 20px;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.post-content-text .section ul {
    list-style: disc;
    padding-left: 30px;
    margin: 15px 0;
}

.post-content-text .section ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #fff;
}

.post-content-text .section p {
    margin: 15px 0;
    line-height: 1.8;
    color: #fff;
}

.post-content-text .section p strong {
    color: #dfb871;
    font-weight: 600;
}

.post-content-text .section a {
    color: #dfb871;
    text-decoration: underline;
}

.post-content-text .section a:hover {
    color: #c49033;
}

.post-content-text hr {
    border: none;
    border-top: 1px solid #555;
    margin: 40px 0;
}

.post-content-text .footer-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.post-content-text .footer-note p {
    margin: 10px 0;
    font-size: 14px;
    color: #ccc;
}

.post-content-text .footer-note a {
    color: #dfb871;
    text-decoration: underline;
}

.post-content-text .footer-note a:hover {
    color: #c49033;
}

.checkbox input[type="checkbox"] {
    margin-top: 3px;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #c49033;
    color: #fff;
}

.btn-primary:hover {
    background-color: #a67a2a;
}

.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.post-content-text h3.kontakt {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin: 20px 0 30px 0;
    line-height: 1.8;
}

.contact-info-table {
    margin: 30px 0;
    width: 100%;
}

.contact-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #000;
    color: #fff;
    text-align: center;
    border: none;
}

.contact-table tbody td {
    background-color: #000;
    color: #fff;
    padding: 25px 15px;
    vertical-align: top;
    border: none;
}

.contact-table tbody td h4 {
    color: #c49033;
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    text-align: left;
}

.contact-table tbody td p {
    margin: 10px 0;
    line-height: 1.6;
    color: #fff;
    text-align: left;
}

.contact-table tbody td p:first-of-type {
    color: #fff;
    font-weight: 400;
}

.contact-table tbody td p strong {
    color: #c49033;
    font-weight: 600;
}

.contact-table tbody td a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.contact-table tbody td a:hover {
    color: #c49033;
    text-decoration: underline;
}

.contact-map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.contact-map-section iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
}

@media (max-width: 768px) {
    .contact-table tbody tr {
        display: block;
    }
    
    .contact-table tbody td {
        display: block;
        width: 100%;
        margin-bottom: 30px;
        padding: 20px 15px;
    }
    
    .contact-table tbody td:last-child {
        margin-bottom: 0;
    }
}

/* Footer */
footer {
    background-image: url('../images/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

footer > * {
    position: relative;
    z-index: 1;
}

.up-footer {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.up-footer .container .row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.up-footer .col-md-3 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-widget {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.footer-widget > * {
    text-align: left;
}

.footer-widget img {
    cursor: pointer;
    transition: opacity 0.3s;
}

.footer-widget img:hover {
    opacity: 0.8;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #dfb871;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-contact-content {
    text-align: left;
    width: 100%;
    max-width: 250px;
}

.footer-contact-content iframe {
    margin-top: 15px;
    width: 100%;
    max-width: 250px;
    height: 250px;
    border: 0;
}

.footer-widget h4 {
    margin-bottom: 15px;
    color: #c49033;
    text-align: center;
}

.footer-widget p {
    margin-bottom: 10px;
    line-height: 1.8;
    text-align: left;
}

.footer-widget a {
    color: #fff;
    text-decoration: none;
}

.footer-widget a:hover {
    color: #c49033;
}

.footer-widget img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .footer-widget {
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-widget > * {
        text-align: center;
    }
    
    .footer-contact-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-widget h4,
    .footer-widget p {
        text-align: center;
    }
    
    .footer-contact-content iframe {
        margin: 15px auto 0;
    }
}

.down-footer {
    padding-top: 20px;
    text-align: center;
}

.down-footer p {
    margin: 0;
    color: #999;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.pull-right {
    float: right;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Icons */
.icon {
    display: inline-block;
}

.icon-Phone2::before,
.icon-Phone::before {
    content: "📞";
    margin-right: 5px;
}

.icon-Timer::before {
    content: "🕐";
    margin-right: 5px;
}

.icon-Location::before {
    content: "📍";
    margin-right: 5px;
}

/* Services Section */
.team-section {
    padding: 60px 0;
    background-color: #000;
    color: #fff;
}

.team-section .project-title {
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.team-section .sm-title {
    display: block;
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.team-section .box-header {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.team-section p {
    color: #fff;
}

.tg-service {
    margin-bottom: 40px;
    text-align: center;
}

.tg-sercice-img {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tg-sercice-img img {
    max-width: 100%;
    height: auto;
}

.tg-sercice-img i {
    font-size: 80px;
    color: #fff;
}

.tg-border-topleft {
    padding: 20px;
}

.tg-displaytable {
    display: table;
    width: 100%;
}

.tg-displaytablecell {
    display: table-cell;
    vertical-align: middle;
}

.tg-service h3 {
    font-size: 24px;
    font-weight: 600;
    color: #c49033;
    margin: 15px 0;
}

.tg-description p {
    color: #fff;
    line-height: 1.8;
}

.icons img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.icons i {
    font-size: 60px;
    color: #fff;
    display: inline-block;
}

@media (max-width: 768px) {
    .icons i {
        font-size: 80px;
    }
}

/* Call to Action */
.callto-action {
    background-color: #232323;
    color: #dfb871;
    padding: 60px 0;
    text-align: center;
}

.callto-action .row {
    margin: 0;
}

.callto-action .col-sm-12 {
    padding: 0;
    width: 100%;
}

.callto-action h3 {
    margin: 0;
    font-size: 28px;
}

.call-title-text {
    display: block;
    margin-bottom: 20px;
    font-style: italic;
    color: #dfb871;
}

.button-one {
    display: inline-block;
    padding: 15px 40px;
    background-color: #dfb871;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
    font-style: normal;
}

.button-one:hover {
    background-color: #c49033;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .box-header {
        font-size: 28px;
    }
    
    .callto-action h3 {
        font-size: 22px;
    }
    
    .tg-service {
        margin-bottom: 30px;
    }
}

