* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

body {
	background-color: #ffffff;
	color: white;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Baner */
.hero {
	position: relative;
	width: 100%;
	height: 80vh;
	background: url('../images/strona_glowna/tlo.png') no-repeat center
		center/cover;
	display: flex;
	align-items: center;
	padding-left: 40px;
}

.hero-content {
	max-width: 400px;
	background: rgba(0, 0, 0, 0.5);
	padding: 20px;
	border-radius: 10px;
}

.hero-content h1 {
	font-size: 32px;
	font-weight: bold;
}

.hero-content p {
	margin: 10px 0;
	font-size: 18px;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	background: #0d3729;
	color: white;
	text-decoration: none;
	font-size: 18px;
	border-radius: 5px;
	margin-top: 10px;
	transition: 0.3s;
}

.btn:hover {
	background: #094e3c;
}

/* rodzaje choinek */
.tree-section {
	padding: 50px 0;
	background-color: #fff;
	text-align: center;
}
.tree-section h1 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    border-bottom: 2px solid #0d3729;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

/* Dostosowanie dla urządzeń mobilnych */
@media (max-width: 768px) {
	.hero {
		height: 100vh;
		align-items: center;
	}

	.hero-content {
		max-width: 80%;
		text-align: center;
	}

	.hero-content h1 {
		font-size: 24px;
	}

	.hero-content p {
		font-size: 16px;
	}
}

.tree-container {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: auto;
}

.tree-card {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	text-align: center;
	width: 250px;
}
.tree-card {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	text-align: center;
	width: 250px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 480px; /* <- RÓWNA wysokość dla każdej karty */
}
.tree-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 15px;
}

.tree-card h2 {
	font-size: 20px;
	margin: 15px 0 10px;
	color: #000;
}

.tree-card p {
	font-size: 14px;
	color: #666;
	margin-bottom: 20px;
	flex-grow: 1;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	background: #0d3729;
	color: white;
	text-decoration: none;
	font-size: 16px;
	border-radius: 5px;
	transition: 0.3s;
}

.btn:hover {
	background: #094e3c;
}
/* o nas ----------------------------------------------------*/

.about-section {
	padding: 50px 0;
	background-color: #fff;
	display: flex;
	justify-content: center;
}

.about-container {
	display: flex;
	max-width: 1100px;
	align-items: center;
	gap: 30px;
}

.about-image img {
	width: 100%;
	max-width: 500px;
	border-radius: 10px;
}

.about-text {
	flex: 1;
	text-align: left;
	color: #000 !important;
}

.about-text h2 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 15px;
}

.about-text p {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
}
.about-text h2 {
	color: #000 !important;
}

/* Dostosowanie dla urządzeń mobilnych */
@media (max-width: 768px) {
	.about-container {
		flex-direction: column;
		text-align: center;
	}

	.about-text {
		order: 1;
		text-align: center;
	}

	.about-image {
		order: 2;
	}

	.about-image img {
		max-width: 100%;
	}
	.about-text p {
		margin-left: 10px;
		margin-right: 10px;
	}
}

/*sekcja kontakowa-----------------------------------------*/

.contact-section {
	padding: 50px 0;
	background-color: #fff;
	display: flex;
	justify-content: center;
}

.contact-container {
	display: flex;
	max-width: 1100px;
	align-items: center;
	gap: 50px;
}

/* Formularz kontaktowy */
.contact-form {
	flex: 1;
	text-align: left;
	background: #f9f9f9;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
	font-size: 24px;
	margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
}

.contact-form textarea {
	height: 120px;
	resize: none;
}

.contact-form .btn {
	display: inline-block;
	padding: 10px 20px;
	background: #0d3729;
	color: white;
	text-decoration: none;
	font-size: 16px;
	border-radius: 5px;
	border: none;
	cursor: pointer;
	transition: 0.3s;
}

.contact-form .btn:hover {
	background: #094e3c;
}

/* Dane kontaktowe */
.contact-info {
	flex: 1;
	text-align: left;
}

.contact-info h2 {
	font-size: 24px;
	margin-bottom: 15px;
	color: #000 !important;
}

.contact-info p {
	display: flex;
	align-items: center;
	font-size: 18px;
	margin-bottom: 10px;
	color: #000;
}

.contact-info img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}
.contact-form h2 {
	color: #000 !important;
}
.contact-info a {
	color: #000;
	text-decoration: none;
}

/*dostosowanie dla urządzeń mobilnych */
@media (max-width: 768px) {
	.contact-container {
		flex-direction: column;
		text-align: center;
	}

	.contact-form {
		order: 1;
		text-align: center;
		width: 90%;
		margin: 0 auto;
	}

	.contact-info {
		order: 2;
		text-align: center;
		width: 90%;
		margin: 20px auto 0;
	}

	.contact-info p {
		justify-content: center;
	}
}

/*style dla modalu*/

/* Modal */
.modal-content {
	background: #f9f9f9;
	color: #333;
	border-radius: 10px;
	padding: 20px;
}

.modal-header {
	background: #0d3729;
	color: white;
	border-radius: 10px 10px 0 0;
	padding: 15px;
}

.modal-title {
	font-size: 22px;
	font-weight: bold;
}

.modal-body {
	padding: 20px;
	font-size: 16px;
	line-height: 1.6;
}

.advantages,
.requirements,
.planting {
	list-style: none;
	padding-left: 0;
}

.advantages li,
.requirements li,
.planting li {
	margin-bottom: 10px;
	font-size: 18px;
}

/* Dostosowanie dla urządzeń mobilnych */
@media (max-width: 768px) {
	.modal-dialog {
		max-width: 90%;
		margin: 20px auto;
	}
}

/*poradniki-------------------------------------------------*/

.poradniki-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.poradnik {
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #f9f9f9;
	color: #000 !important;
}

.poradnik h2 a {
	color: #0073aa;
	text-decoration: none;
}

.poradnik h2 a:hover {
	text-decoration: underline;
}
/* Styl dropdown */
.menu-item-has-children {
    position: relative;
}

/* Display arrow icon for menu items with submenus */
.menu-item-has-children > a::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f107"; /* fa-chevron-down */
    margin-left: 6px;
}
.menu-item-has-children .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 10px;
    min-width: 200px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.menu-item-has-children:hover > .sub-menu {
    display: block;
}

.sub-menu li {
    padding: 8px 10px;
}

.sub-menu li a {
    display: block;
    color: #333;
    text-decoration: none;
}

.sub-menu li a:hover {
    background: #f3f3f3;
}






.tree-card .btn:hover {
    background-color: #094e3c;
}
.tree-container {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: auto;

	align-items: stretch;
}
.tree-card .btn {
	align-self: center;
	background-color: #0d3729;
	color: white;
	font-weight: 600;
	font-size: 16px;
	padding: 10px 20px;
	border-radius: 6px;
	transition: background-color 0.3s ease;
	margin-top: auto;
}
.poradnik-thumbnail img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}


.site-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.custom-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
}

.custom-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-footer .footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.custom-footer .footer-links a:hover {
    color: #ccc;
}

.footer-copy {
    font-size: 14px;
    color: #aaa;
}

.polityka-tresc {
    color: #000; /* czarny tekst */
    font-size: 16px;
    line-height: 1.7;
}
.poradnik-single{
	color: #000;
	 margin-bottom: 20px;
}
.poradnik-single h1 {
    text-align: center;
    font-size: 32px;
   margin-top: 20px;
   margin-bottom: 20px;
    color: #000;
}
.contact-form input,
.contact-form textarea {
    color: #000 !important;
}

@media (max-width: 768px) {
    .akcesoria-tytul {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }

    .akcesoria-tytul h1 {
        font-size: 2rem;
        line-height: 1.2;
        word-break: break-word;
    }
	div#main-menu{
		padding-top: 20px;
	}
}

.service-areas {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

@media (max-width: 768px) {
    .service-areas {
        text-align: center;
        width: 90%;
        margin: 20px auto 0;
    }
}
.container h1{
text-align: center;
color: #000;
font-size: 30px;
margin-top: 10px;
margin-bottom: 10px;
}