body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     
      background: #ffffff; /* białe tło */
      color: #2c3e50;
    }

.logo-container {
	display: flex; 
	width: 100%; 
	height: 100%;
	align-items:center; 
	justify-content: start;
}

.logo-link {
	text-decoration: none;
	color: #2c3e50;
}

.logo-container p {
	font-size: 30px;
	padding-left: 50px;
}

.details-page {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
}

.property-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Slider główny */
.gallery {
    flex: 1 1 50%;
}

.main-slider {
    position: relative;
    width: 100%;
    height: 400px; /* zmniejszona wysokość desktop */
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* wypełnia kontener i przycina nadmiar */
    display: block;
}

.main-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 10;
}

.main-slider .prev { left: 10px; }
.main-slider .next { right: 10px; }

.main-slider button:hover {
    background-color: rgba(0,0,0,0.7);
}

/* Panel info z ceną pod typem oferty */
.info-panel {
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
}

.info-panel h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.short-details p {
    margin: 6px 0;
}

.short-details strong {
    display: inline-block;
    min-width: 140px;
    font-weight: 600;
    color: #1b4d3e;
}

.price-panel {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e74c3c;
    text-align: right;
    margin-top: 15px; /* odstęp od typu oferty */
}

.contact {
    background-color: #f9f9f9;
    padding: 12px 15px;
    border-left: 4px solid #1b4d3e;
    margin-top: 20px;
}

.contact p {
    margin: 6px 0;
}

.contact strong {
    display: inline-block;
    min-width: 140px;
    font-weight: 600;
    color: #1b4d3e;
}


.phone-number-link {
	text-decoration: none;
	font-size: 17px;
	color: #000;
}

.phone-number-text {
	white-space: pre;
}


.full-desc {
    margin-top: 70px;
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
}


.back-bottom {
    margin-top: 70px;
    text-align: center;
}

.back-bottom .back-link {
    font-weight: 600;
    color: #1c2833;
    text-decoration: none;
}

.back-bottom .back-link:hover {
    text-decoration: underline;
}

/* Responsywność dla mobilki */
@media (max-width: 768px) {
    .property-container {
        flex-direction: column;
    }

    .main-slider {
        height: 300px; /* mobilki */
    }

    .price-panel {
        text-align: right;
		padding-top: 40px;
    }
	
	
	 .logo-container {
		  justify-content: center;
	  }
	  
	  .logo-container p {
		  padding-left: 0px;
	  }
	  
	  .details-page {
		max-width: 1000px;
		margin: 20px auto;
		padding: 0 0px;
		font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
		color: #2c3e50;
	  
	  }
	  
	  .info-panel {
		padding: 13px;
	  }
	  
	  .full-desc {
		margin-top: 40px;
		padding: 13px;
	  }
	  
}

.footer {
	display: flex;
	justify-content: center;
	margin-top: 70px;
	margin-bottom: 40px;
	font-size: 16px;
}
