/* Resetowanie domyślnych styli */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    color: #333;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
	background-color: #ecf0f1;
}

header, nav, footer {
    flex-shrink: 0;
}

section {
    flex-grow: 1; /* całą dostępną przestrzeń pionowa */
    padding: 40px 10%;
}
#home {
    flex-grow: 1; /* całą dostępną przestrzeń pionowa */
    padding: 0px;
}
a {
	
}
.logo {
    display: block;
    margin: 10px auto;
    height: 80px;
    width: auto;
	padding-right:40%;
}
.logo-droplet {
    height: 30px;
}

.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

header {
/*   background-color: #2196f3; */
	background-color: #333;
    padding: 10px 20px;
    text-align: center;
}

nav {
    background-color: #2196f3;
    text-align: center;
	border-top: 4px solid #ed9509;

}

#ofirmie {
	text-align: justify; 
	line-height:1.4em;
	}
.radanadzorcza {
	list-style-type: decimal;
	padding-left: 20px;
	padding-top: 8px;
	text-align: justify; 
	line-height:1.4em;
	}	
.zarzad {
	list-style-type: none; 
	padding-left: 0px; 
	padding-top: 8px;
	text-align: justify; 
	line-height:1.4em;
	}

.menu {
    list-style-type: none;
    display: flex;
    justify-content: center;
    padding: 25px 0;
    gap: 20px;
}

.menu > li {
    position: relative;
}

.menu > li > a {
    color: white;
    text-decoration: none;
    padding: 26px 35px;
    transition: background 0.6s;
}

.menu > li > a:hover {
    background-color: #ed9509;
    border-radius: 10px;
}

.submenu {
    display: none;
    position: absolute;
    top: 200%;
    left: 0;
    background-color: #2196f3;
    list-style-type: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
    z-index: 10;
	border-radius: 10px;
}

.submenu li a {
    color: white;
    text-decoration: none;
    padding: 20px 15px;
    display: block;
    transition: background 0.6s;
	border-radius: 10px;
	
}

.submenu li a:hover {
    background-color: #ed9509;
	border-radius: 10px;
}

.menu > li:hover .submenu {
    display: block;
}
.prezes ol > ol {padding-top: 10px; padding-bottom: 30px; background-color: red;}
.prezes p {padding-bottom: 10px;}

#home {
    background-image: url('/img/ewv-image-big.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
    color: white;
	z-index: 1;
}

#home .description {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    flex-shrink: 0;
    width: 100%;
	border-top: 4px solid #2196f3;
}

footer p {
    margin: 15px 0;
    font-size: 14px;
}

#kontakt {

	}

#kontakt .map-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
	}

	
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        gap: 0;
        background-color: #2196f3;
        position: absolute;
        top: 60px; /* Tuż pod nagłówkiem */
        left: 0;
        width: 100%;
        padding: 0;
		z-index: 88888;
    }

    .menu-mobile-active {
        display: flex;
    }

    .menu > li {
        text-align: center;
    }

    .menu > li > a {
        padding: 15px;
        color: white;
        border-bottom: 1px solid #ed9509;
		display: block;
		z-index: 99999;
		position: relative;
    }
}
/** SEKCJA COOKIES **/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2147483645;
  box-sizing: border-box;
  width: 100%;

  background-color: #F1F6F4;
}

.cookie-consent-banner__inner {     
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 0;
}

.cookie-consent-banner__copy { 
  margin-bottom: 16px;
}

.cookie-consent-banner__actions {    
}

.cookie-consent-banner__header {
  margin-bottom: 8px;
  
  font-family: sans-serif, arial;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
}

.cookie-consent-banner__description {
  font-family: sans-serif, arial;
  font-weight: normal;
  color: #838F93;
  font-size: 16px;
  line-height: 24px;
}

.cookie-consent-banner__cta {
  box-sizing: border-box;
  display: inline-block;
  min-width: 164px;
  padding: 11px 13px;
    
  border-radius: 2px;
  
  background-color: #2CE080;
   
  color: #FFF;
  text-decoration: none;
  text-align: center;
  font-family: sans-serif, arial;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}

.cookie-consent-banner__cta--secondary { 
  padding: 9px 13px;
  
  border: 2px solid #3A4649;
  
  background-color: transparent;
  
  color: #2CE080;
}

.cookie-consent-banner__cta:hover {
  background-color: #20BA68;
}

.cookie-consent-banner__cta--secondary:hover {
  border-color: #838F93;
    
  background-color: transparent;
  
  color: #22C870;
}

.cookie-consent-banner__cta:last-child {
  margin-left: 16px;
}

