/* PODSTAWOWE */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

header, .menu, .info, .slider, .footer, #strategic, .composition {
    background-color: #fff;
}

/* LOGO */
.header {
    text-align: center;
    padding: 20px 0;
}

.logo {
    max-width: 200px;
}

/* MENU */
.menu {
    text-align: center;
    padding: 10px 0;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
}

.menu a.active {
    text-decoration: underline;
}

.menu-separator {
    border: 0;
    height: 1px;
    background: #ccc;
    margin: 0;
}

/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides img {
    width: 100%;
    display: block;
}

.slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 30px;
    font-weight: bold;
    font-size: 2.5em;
    text-align: center;
}

/* INFORMACJE OGÓLNE */
.info-content, .strategic-content, .composition-content, .footer {
    padding: 30px 10%;
}

h1, h2 {
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* TABELA STRATEGICZNEJ MAPY HAŁASU */
table {
    width: 100%;
	border: 2px solid;
	border-color: #DEDEDE;
	
	border-collapse: collapse;
}

td, th, thead {
	text-align: center;
	border:  1px solid;
	border-color: #DEDEDE;
	
	border-collapse: collapse;
	padding: 3px;
}

/* PRZYCISKI WYBORU KOMPOZYCJI MAPY */
.buttons-container {
  display: flex;
  flex-wrap: wrap;              	/* pozwala na zawijanie do kolejnych rzędów */
  justify-content: space-between; 	/* równomierne rozłożenie */
  gap: 20px;                      	/* odstępy między przyciskami */
  width: 100%;
}

.buttons-container button {
  flex: 1 1 200px;              /* minimalna szerokość przycisku */
  max-width: 322px;             /* opcjonalnie – żeby nie były za szerokie */
}
