html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main {
    flex: 1 0 auto;
}
header{
    width: 100%;
    background-color: rgb(17, 17, 17);
    font-size: 12;
    padding-bottom: 10px;
    padding-top: 10px;
}

nav{
    display: flex;
    justify-content: center;
    background-color: rgba(17, 17, 17,1);
    padding-bottom: 7px; 
}
nav a {
    float: center;
    text-decoration: none;
    color: #ddd;
    margin: 0 2%;
}
nav a.active-link {
    color: #6bb6ff;
    font-weight: 600;
}
header a{
    text-align: left;
    text-decoration: none;  
    color: #2596be;                
}
main{
    background-color: aliceblue;
    color: black;
}
.hero {
    min-height: 80vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.batonlink{
    background-color: #6bb6ff;
    text-decoration: none;
    color: whitesmoke;
    padding: 12px 28px;         
    font-size: 16px;            
    font-weight: 600;           
    border: none;               
    border-radius: 30px;        
    cursor: pointer;            
    transition: all 0.3s ease;  
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); 
}
.batonlink:hover{
    background-color: #5e9ddb;
}
.kontaktbtn{
    background-color: #5691ccc5;
    text-decoration: none;
    color: whitesmoke;
    padding: 12px 28px;         
    font-size: 16px;            
    font-weight: 600;           
    border: none;               
    border-radius: 30px;        
    cursor: pointer;            
    transition: all 0.3s ease;  
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); 
}
.kontaktbtn:hover{
    background-color: #4c7eb1c5;
}
.butn{
    background-color: #6bb6ff;
    text-decoration: none;
    color: whitesmoke;
    padding: 12px 24px;
    font-size: 16px;                 
    border: none;               
    border-radius: 2px;        
    cursor: pointer;            
    transition: all 0.3s ease;  
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); 
}
.butn:hover{
        background-color: #518eca;
}
.accordion {
  border-radius: 0px;
  margin-bottom: 10px;
  overflow: hidden;
  width: 100%;
}

.accordion-header {
  background: #BFDFFF;
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  text-align: left;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #E6F0FA;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 15px;
}
.accordion-content p {
  text-align: left;
}

.card-tall{
    min-height: 150px;
}
.table-cennik thead {
    background-color: #2c3e50;
    color: #fff;
}
.cennik-footnotes {
    font-size: 13px;
    color: #555;
}
.cennik-group h3 {
    font-size: 18px;
    margin-top: 35px;
    margin-bottom: 12px;
    color: #2c3e50;
}
.cta {
    background: #2c3e50;
}
.col-md-4{
    border-radius: 0px;
}
.card {
    border-radius:0px; 
    border: none;         
}
footer {
    background-color: rgb(17, 17, 17); 
    color: #ddd;
    padding: 40px 20px 20px;
    font-size: 12px;
    clear: both;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    align-self: flex-end;
    padding-bottom: 8px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 12px;
}

.footer-col a {
    color: #6bb6ff;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgb(51, 51, 51);
    margin-top: 10px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
    color: #aaa;
}

.footer-bottom a {
    color: #6bb6ff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: none;
}

/* Page entrance */
body {
    animation: pageIn 0.32s ease both;
}
@keyframes pageIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal-anim {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}
.reveal-anim.revealed {
    opacity: 1;
    transform: translateY(0);
}
