* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;

}

/* Styl menu */
.menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 20px;
}

.menu li {
	position: relative;
}

.menu a {
	text-decoration: none;
	padding: 10px 15px;
	display: block;
	background-color: #3498db;
	color: white;
	border-radius: 5px;
}

/* Pojemnik dla przycisku z dropdownem */
.dropdown-tab {
	position: relative;
	display: inline-block;
}

/* Dropdown menu – ukryte domyślnie */
.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: white;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	min-width: 9rem;
	padding: 0;
}

/* Styl przycisków wewnątrz dropdownu */
.dropdown-item {
	display: block;
	width: 100%;
	padding: 10px 14px;
	background: white;
	color: #333;
	border: none;
	text-align: left;
	cursor: pointer;
}

.dropdown-item:hover {
	background-color: #f0f0f0;
}

/* Pokazuj menu po najechaniu */
.dropdown-tab:hover .dropdown-menu {
	display: block;
}



body {
	font-family: 'Segoe UI', sans-serif;
	background-color: #eae7dc;
	color: #333;
}

header {
	height: 100vh;
	background: url('background.jpg') no-repeat center center/cover;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
	position: relative;
}

header::after {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 1;
}

header h1, header p {
	z-index: 2;
	position: relative;
}

header h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

header p {
	font-size: 1.5rem;
}

nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background-color: #111;
}

nav .button {
	padding: 1rem 0;
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s;
	box-sizing: border-box;
	display: block;
	text-decoration: none;
	background-color: #111;
	width: 9rem;
	text-align: center;
}

.button:hover,
.button:focus {
  text-decoration: none;
}


nav .button:hover,
nav .button.active {
	background-color: #444;
}

main {
	overflow: hidden;
}

section {
	padding: 3rem 2rem;
	max-width: 1200px;
	margin: auto;
}

.gallery-grid {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
}


.gallery-grid img,
.gallery-grid video {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 600px;
	margin: auto;
}

input, textarea {
	padding: 1rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	resize: none;
}

button.submit {
	background-color: #111;
	color: white;
	border: none;
	padding: 1rem;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s;
}

button.submit:hover {
	background-color: #444;
}

footer {
	background-color: #222;
	color: #aaa;
	text-align: center;
	padding: 2rem;
	margin-top: 3rem;
}

@media (max-width: 768px) {
	header h1 {
		font-size: 2.2rem;
	}

	header p {
		font-size: 1.1rem;
	}
}
/* Kontener tekst + zdjęcie */
.o-mnie-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* żeby na telefonie elementy układały się jeden pod drugim */
}

/* Tekst po lewej */
.o-mnie-text {
  flex: 1 1 50%;
}

/* Zdjęcie po prawej */
.o-mnie-image {
  flex: 1 1 40%;
  text-align: right;
}

.o-mnie-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px; /* opcjonalnie zaokrąglenie */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.kontakt-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap; /* żeby na telefonie ustawiało się jeden pod drugim */
}

#kontakt form {
  flex: 1;
  min-width: 300px;
}

.kontakt-info {
  flex: 1;
  min-width: 250px;
  background: #f5f5f5; /* jasne tło dla odróżnienia */
  padding: 20px;
  border-radius: 8px;
}

