@import "responsive.css";
@import "/html/header/loader/loaderStyle.css";
@import "/html/header/nav.css";
@import "/html/main/mainStyle.css";
@import "/html/main/kontakt/kontaktStyle.css";
@import "/html/main/marka/markaStyle.css";
@import "/html/main/oferta/ofertaStyle.css";
@import "/html/main/opinie/opinieStyle.css";

:root {
    --primary-color: #2A5C82;
    --secondary-color: #3D8B9E;
    --accent-1: #FF6F61;
    --accent-2: #FFD166;
    --light-gray: #F5F5F5;
    --medium-gray: #707070;
    --dark-gray: #333333;
    --backup-color: #c2ebff;
}

@font-face {
    font-family: Agrandir-Regular;
    font-weight: normal;
    src: url("./../../assets/fonts/Agrandir-Regular.otf") format("opentype");
}
@font-face {
    font-family: Agrandir-TextBold;
    font-weight: bold;
    src: url("./../../assets/fonts/Agrandir-TextBold.otf") format("opentype");
}
@font-face {
    font-family: Agrandir-ThinItalic;
    font-style: italic;
    src: url("./../../assets/fonts/Agrandir-ThinItalic.otf") format("opentype");
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Agrandir-Regular, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
}

/* FOOTER */
footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 20px 20px;
    margin-top: auto;
}



.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-2);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-2);
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-2);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--accent-2);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
