@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,300,400,400i,500,700,900');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
body {    
font-family: Montserrat, sans-serif;
background: #f5f5f5;
}   

.blue {
color: #0eb4de;
}
/* ===== HEADER ===== */

.header {
position: relative;
font-weight: 600px;
}

/* ===== BANNER ===== */

.banner-container {
position: relative;
width: 100%;
height: 350px;
overflow: hidden;
}

@media (max-width: 768px) {
.banner-container {
  height: 350px;
}
}

@media (max-width: 480px) {
.banner-container {
  height: 350px;
}
}

.banner {
position: relative;
width: 100%;
height: 100%;
}

.banner-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
filter: brightness(70%);
}

.banner-text {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: white;
padding: 1rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
z-index: 5;
pointer-events: none;
}

.banner-text h1 {
font-size: clamp(1.5rem, 5vw, 3rem);
}


.banner-text p {
font-size: clamp(1rem, 2.5vw, 1.4rem);
margin-top: 1rem;
}

/* ===== NAVIGATION ===== */

.nav-wrapper {
position: absolute;
top: 0;
width: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 10;
}

.menu {
list-style: none;
display: flex;
justify-content: center;
gap: 30px;
padding: 1rem;
flex-wrap: wrap;
}

.menu li {
position: relative;
}

.menu a {
text-decoration: none;
color: white;
font-size: 1rem;
position: relative;
}

.menu a:hover {
color: #0eb4de;
}

.menu li.active a {
color: #0eb4de;
font-weight: bold;
position: relative;
text-decoration: none;
}

/* Triangle indicators */
.dropdown > a::after,
.mobile-dropdown > a::after {
content: " ▼";
font-size: 0.7em;
}

/* ===== SUBMENU ===== */

.submenu {
display: none;
position: absolute;
top: 100%;
left: 0;
background: rgba(0, 0, 0, 0.9);
padding: 10px 0;
min-width: 180px;
z-index: 20;
}

.submenu li {
padding: 5px 20px;
}

.dropdown:hover .submenu {
display: block;
}

/* ===== BURGER MENU ===== */

.burger {
display: none;
font-size: 2rem;
color: white;
cursor: pointer;
padding: 1rem;
}

/* ===== MOBILE MODAL MENU ===== */

.modal-menu {
display: none;
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba(0, 0, 0, 0.8);
z-index: 1000;
justify-content: flex-start;
align-items: flex-start;
}

.menu.mobile a {
text-decoration: none !important;
color: #fff;
}

.menu.mobile a:hover {
color: #0eb4de;
}

.menu.mobile a:active {
text-decoration: none !important;
color: #fff;
}

.menu.mobile li.active a {
text-decoration: none !important;
color: #0eb4de; 
}

.menu.mobile a:focus {
outline: none;
text-decoration: none !important;
}

a.active {
text-decoration: none !important;
}

.modal-menu.active {
display: flex;
}

.modal-content {
width: 80%;
max-width: 320px;
height: 100vh;
margin: 0;
padding: 2rem;
background: #111; 
color: white;
position: relative;
transform: translateX(-100%);
transition: transform 0.3s ease-in-out;
}

.modal-content a {
color: #fff;
text-decoration: none;
font-size: 1.2rem;
border-bottom: 1px solid rgba(255,255,255,0.1);
padding-bottom: 0.5rem;
transition: color 0.2s ease;
}

.modal-content a:hover,
.modal-content a.active {
color: #0eb4de; 
}

.modal-menu.active .modal-content {
transform: translateX(0);
}

.close-btn {
font-size: 2rem;
position: absolute;
top: 1rem;
right: 1.2rem;
cursor: pointer;
color: #fff;
}

.menu.mobile {
display: flex;
flex-direction: column;
gap: 1.5rem;
}

.mobile-submenu {
display: none;
padding-left: 1.5rem;
margin-top: 0.5rem;
opacity: 0;
transition: opacity 0.3s ease;
}

.mobile-dropdown.open .mobile-submenu {
display: block;
}

.mobile-dropdown > a::after {
content: ' ▼';
font-size: 0.8rem;
}

.mobile-dropdown.open > a::after {
content: ' ▲';
}

.mobile-dropdown.open .mobile-submenu {
display: block;
opacity: 1;
}

@media (max-width: 768px) {
	
.menu.desktop {
  display: none;
}

.burger {
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
}
}

/* ===== ANFANG CONTENT ===== */

.content_box {
margin: 50px auto;
width: 100%;
}

.grid-container {
margin: 50px auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1vw;
width: 100%;
max-width: 900px;
}

.text-block {
display: flex;
justify-content: center;
align-items: center;
background-color: #f9f9f9;
text-align: center;
padding: 5%;
border-radius: 10px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.text-block h2 {
font-size: clamp(1rem, 2.5vw, 2rem);
color: #222;
font-weight: 600;
line-height: 1.4;
}

.text-block h2 span {
color: #888;
font-weight: normal;
}

.image-block img {
width: 100%;
height: auto;
display: block;
object-fit: cover; 
border-radius: 10px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 600px) {
	
.grid-container {
  gap: 2vw;
}

.text-block {
  padding: 8%;
}

.text-block h2 {
  font-size: clamp(0.9rem, 4vw, 1.4rem);
}

}

.Download-Link img {
width: 100%;
max-width: 250px;
height: auto;
margin-top: 20px;
}

.about-section {
margin: 50px auto;
padding: 3rem 1rem;
background: #f9f9f9;
max-width: 900px;
border-radius: 10px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.section-title {
text-align: left;
font-size: 2.4rem;
font-weight: 600;
margin-bottom: 2.5rem;
color: #222;
}

.about-grid {
display: flex;
gap: 2.5rem;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}

.about-text {
flex: 1 1 45%;
min-width: 300px;
font-size: 1.2rem;
line-height: 1.8;
color: #333;
}

.about-text li {
display: flex;
align-items: flex-start;
position: relative;
padding-left: 1.2rem;
margin-bottom: 1rem;
}

.about-text li::before {
content: "●";
position: absolute;
left: 0;
top: 0.3rem;
color: #0eb4de;
font-size: 1.2rem;
line-height: 1.2;
}

.about-image {
flex: 1 1 45%;
min-width: 300px;
text-align: center;
}

.about-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
	
.about-grid {
  flex-direction: column;
  text-align: center;
}

.about-text, .about-image {
  flex: 1 1 100%;
}

.section-title {
  font-size: 2rem;
}

.about-text li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #0eb4de;
  font-size: 1.2rem;
  line-height: 1;
}

}

.services-section {
padding: 3rem 1rem;
background: transparent; 
max-width: 900px;
margin: 3rem auto;

}

.section-title {
text-align: center;
font-size: 2.4rem;
font-weight: bold;
color: #0eb4de;
margin-bottom: 2rem;
}

.service-item {
border: none;
border-radius: 12px;
background: #f9f9f9;
overflow: hidden;
transition: all 0.3s ease;
margin-bottom: 1.5rem;
border: 0px solid #0eb4de;
border-radius: 12px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-item summary {
cursor: pointer;
padding: 1.2rem 1.5rem;
font-size: 1.25rem;
font-weight: 600;
background: rgba(255, 255, 255, 0.08);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
color: #086b85;
list-style: none;
position: relative;

}

.service-item summary::after {
content: "▼";
position: absolute;
right: 1.5rem;
font-size: 1rem;
color: #0eb4de;
transition: transform 0.3s ease;

}

.service-item[open] summary::after {
transform: rotate(180deg);
}

.service-content {
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 1rem;
background: #fdfdfd;

}

.service-content img {
max-width: 100%;
border-radius: 6px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-content p {
font-size: 1.1rem;
color: #333;
line-height: 1.6;
}

/* --- ЗАЛИШАЄМО МЕНЮ STICKY --- */
header {
position: sticky;
top: 0;
z-index: 1000;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(6px);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
.service-content {
padding: 1rem;
}

.service-item summary {
font-size: 1.1rem;
padding: 1rem;
}

.section-title {
font-size: 2rem;
}
}

/* ===== KONTAKT ===== */

.kontakt-list ul {
list-style: none;
padding: 0;
margin: 2rem auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
}

.kontakt-list li {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background: #f9f9f9;
padding: 2rem 1.5rem;
border-radius: 12px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
width: 260px;
min-height: 220px;
box-sizing: border-box;
}

.kontakt-list img {
width: 50px;
height: 50px;
margin-bottom: 1rem;
}

.kontakt-list span {
font-size: 1rem;
color: #222;
line-height: 1.4;
}

/* Mobile адаптація */
@media (max-width: 768px) {
  .contact-section {
   padding: 1.5rem;
  }

  .radio-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  #submit-button {
    width: 100%;
    padding: 0.9rem;
    text-align: center;
  }
}

/*Kontaktformular*/

/* Основний контейнер форми */
.contact-section {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

/* Заголовок */
#title3 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #0eb4de;
  margin-bottom: 2rem;
}

/* Структура форми */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #086b85;
}

/* Поля вводу */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #0eb4de;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  box-sizing: border-box;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Кнопка */
#submit-button {
  background: #0eb4de;
  color: #fff;
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  width: auto;
}

#submit-button:hover {
  background: #0a91b5;
}

/* Група radio */
.radio-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.radio-group label {
  font-weight: normal;
  color: #333;
}

/* Повідомлення про результат */
#form-response {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#form-response p {
  margin: 0;
  font-size: 1rem;
}

.success {
  background-color: #d4f4e3;
  color: #206a3c;
  border: 1px solid #a1e2be;
}

.error {
  background-color: #ffe2e2;
  color: #8a1f1f;
  border: 1px solid #f5aaaa;
}

/* -------------------------------- 

Ende Content

-------------------------------- */
footer {
  background: rgba(0, 0, 0, 0.5); /* темний фон */
  padding: 0;
}

.site-footer {
max-width: 1200px;
margin: 0 auto;
background: transparent; /* сірий як у меню */
color: #fff;
font-size: 0.8rem;
text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

.footer-top {
display: flex;
justify-content: space-between;
gap: 2rem;
padding: 2rem;
flex-wrap: wrap;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-left {
flex: 1 1 30%;
min-width: 250px;
}

.footer-right {
flex: 1 1 60%;
min-width: 250px;
}

.footer-column h3 {
font-size: 1.1rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 0.2rem;
color: #fff;
}

.footer-column p {
line-height: 1.5;
}

.site-footer a {
text-decoration: underline;
color: #fff;
font-size: 0.8rem;

}

.footer-bottom {
text-align: center;
padding: 1rem;
background: transparent; 
font-size: 0.85rem;
}

.image-credits-grid {
display: flex;
gap: 2rem;
flex-wrap: wrap;

}

.image-credits-grid ul {
list-style: none;
margin: 0;
flex: 1 1 45%;
}

.image-credits-grid li {
margin-bottom: 0.4rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	
.footer-top {
flex-direction: column;
align-items: center;
text-align: center;
}

.footer-left, .footer-rignt {
flex: 1 1 100%;
max-width: 100%;
}

.image-credits-grid {
text-align: left;
align-items: center;      
width: 100%;              
max-width: 600px;         
margin: 0 auto;
padding: 0;               
}

.image-credits-grid ul, li, a{
font-size: 0.7rem;
}

}

/*Impressum*/
.impressum-section {
margin: 50px auto;
padding: 3rem 1rem;
background: #f9f9f9;
max-width: 1200px;
border-radius: 10px;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.impressum-title {
text-align: left;
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 2rem;
padding: 10px;
color: #222;
}

.impressum-text {
font-size: 1rem;
line-height: 1.2;
color: #333;
}

.impressum-text h3 {
font-weight: bold;
padding: 10px;
}

.impressum-text p {
padding: 10px;
}

.impressum-text ul {
padding-left: 30px; 
}