/* BASIC SETTINGS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #0f0f0f;
    scroll-behavior: smooth;
    width: 100%;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #ddb500;
    --accent-color: #ffc400;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --icons: #000000;
    --service-icons: #000000;
    --contact-icons: #000000;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

p {
    font-family: 'Helvetica', Tahoma, Geneva, Verdana, sans-serif;
}

/* HEADER */
header {
    display: flex;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

/* HEADER LEFT */
.header-content {
    display: flex;
    align-items: center;
    gap: 1%;
    width: 100%;
    height: 100%;
}

.logo {
    width: 450px;
    height: 60px;
}

.logo img {
    width: 100%;
    height: 100%;
}

/* HEADER RIGHT */
.socials {
    align-items: center;
    min-height: 100%;
    display: flex;
    gap: 0.2vw;
}

.socials a {
    height: 100%;
    width: 100%;
    font-size: 2.5rem;
    color: var(--icons);
    transition: color 0.3s;
    cursor: pointer;
}

.socials i {
    padding: 10%;
}

.socials a:hover {
    color: var(--secondary-color);
    i {
        border-radius: 10px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.356);
        transition: all 0.3s;
    }
}

/* NAVIGATION */
.header-content nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.header-content nav ul li {
    border-left: solid 1px #eeeeee;
    border-right: solid 1px #eeeeee;
    padding: 0 20px;
}

.header-content nav ul li:first-child {
    border-left: solid 1px #eeeeee;
    border-right: none;
}

.header-content nav ul li:last-child {
    border-right: solid 1px #eeeeee;
    border-left: none;
}

.header-content nav ul li a {
    text-decoration: none;
}

.header-content nav ul li a p {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.4rem;
    transition: color 0.3s;
    padding: 3px 6px 3px 6px;
    white-space: nowrap;
}

.header-content ul li a p:hover {
    color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.356);
    transition: all 0.3s;
}

/* PHONE NUMBER LIST */
.socials ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 77%;
    width: 23%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    max-height: 0;
    transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    z-index: 998;
    margin-top: 0;
}
    
.socials ul.show {
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}

.socials ul.show li a {
    pointer-events: all;
    cursor: pointer;
}
    
.socials ul li {
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid #ebebeb;
    text-align: center;
}

.socials ul li a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.socials ul li a i {
    padding: 0;
    margin-right: 10px;
}

.socials ul li a:hover {
    color: var(--secondary-color);
    i {
        border-radius: none;
        box-shadow: none;
    }
}

/* MOBILE NAVIGATION MENU BUTTON */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
    padding: 10px;
    margin: 10px;
    background: none;
    border: none;
    position: relative;
    width: 60%;
    z-index: 1000;
}

.menu-line {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000000;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
}

.top-line {
    top: 0;
}

.middle-line {
    top: 50%;
    transform: translateY(-50%);
}

.bottom-line {
    bottom: 0;
}

/* MOBILE-MENU-BTN "X" ANIMATION */
.mobile-menu-btn.active .top-line {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-btn.active .middle-line {
    opacity: 0;
}

.mobile-menu-btn.active .bottom-line {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* CONTAINERS */
.header-container {
    width: 100%;
    display: inline-block;
    align-items: center;
    padding-left: 15px;
}

.socials-container {
    width: 20%;
    margin-right: 15px;
    display: inline-block;
    align-items: center;
    text-align: center;
}

.container {
    width: 90%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.services-container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.phone-contact-btns-container {
    width: 100%;
    max-width: 95%;
    display: inline-block;
    text-align: center;
}

/* HOME PAGE */
.home {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('kamerki.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.home h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.356);
}

.home p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.356);
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000000;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #bd9100;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* SERVICE CHOOSING SECTION */
.services {
    height: 100vh;
    padding-top: 7%;
    background-color: #2c2c2c;
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: #ffffff;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.342);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.service-card {
    max-height: 193px;
    background-color: #ffc400;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #c08300;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #000000;
}

.card-btn {
    display: inline-block;
    align-items: center;
    color: black;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.card-btn:hover {
    .service-card i {
        color: #000000;
        transition: all 0.5s;
        text-decoration: none;
    }
}

/* SERVICE DESCRIPTION SECTIONS */

/* SERVICE 1 */
.service1 {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('service1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.service1 h2 h4 {
    text-align: center;
    margin: 30px 0;
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.356);
}

.service1 ul {
    list-style: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.356);
}

.service1 li {
    margin-bottom: 15px;
}

/* SERVICE 2 */
.service2 {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('service2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.service2 h2 h4 {
    text-align: center;
    margin: 30px 0;
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.356);
}

.service2 ul {
    list-style: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.562);
}

.service2 li {
    margin-bottom: 15px;
}

/* SERVICE 3 */
.service3 {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('service3.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.service3 h2 h4 {
    text-align: center;
    margin: 30px 0;
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.356);
}

.service3 ul {
    list-style: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.562);
}

.service3 li {
    margin-bottom: 15px;
}

/* SERVICE 4 */
.service4 {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('service4.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.service4 h2 h4 {
    text-align: center;
    margin: 30px 0;
    font-size: 2.2rem;
    color: white;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.356);
}

.service4 ul {
    list-style: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.562);
}

.service4 li {
    margin-bottom: 15px;
}

/* ALL SERVICES STUFF */
.service1 h4, .service2 h4, .service3 h4, .service4 h4 {
    padding: 20px 0;
}

.service-btn {
    width: 330px;
    display: inline-block;
    background-color: var(--accent-color);
    color: #000000;
    padding: 12px 30px;
    margin: 0 10px;
    margin-top: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.service-btn:hover {
    background-color: #bd9100;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* CONTACT SECTION */
.contact {
    background-color: var(--light-color);
    padding: 80px 0;
}

.contact h2 {
    display: inline-block;
    font-size: 2.2rem;
    color: #ffc400;
    background-color: #000000;
    clip-path: polygon(7% 0, 93% 0%, 100% 50%, 93% 100%, 7% 100%, 0 50%);
    margin-bottom: 50px;
    padding: 0 35px;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    display: inline-block;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: var(--contact-icons);
    width: 20px;
    text-align: center;
}

.opening-schedule {
    text-align: center;
    width: 100%;
    max-width: 345px;
    display: inline-block !important;
    color: black;
    padding: 15px 5px;
    margin: 5px 0;
    text-decoration: none;
    font-weight: 600;
}

.contact-btn {
    width: 100%;
    max-width: 95%;
    display: inline-block;
    background-color: white;
    color: black;
    padding: 15px 5px;
    margin: 5px 0;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.027);
    cursor: pointer;
}

.phone-contact-btns {
    display: flex;
    gap: 10px;
}

.phone-contact-btn {
    width: 50%;
    background-color: white;
    color: black;
    padding: 15px 5px;
    margin: 5px 0;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.027);
    cursor: pointer;
}

.contact-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.phone-contact-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map {
    flex: 1;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* FOOTER */
footer {
    background-color: #0f0f0f;
    color: #ffffff;
    padding: 50px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    margin-top: 5px;
    margin-bottom: 20px;
    filter: invert(1);
}

.footer-links h4, .footer-social h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: inline-block;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
    margin: 0 10px;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ANIMATIONS */

/* FADE ANIMATION SETTINGS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOutDown {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(30px); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-25px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOutLeft {
    to { opacity: 0; transform: translateX(-25px); }
}

/* LIST ANIMATION DELAYS */
.service1 li:nth-child(1) { animation-delay: 0.2s; }
.service1 li:nth-child(2) { animation-delay: 0.4s; }
.service1 li:nth-child(3) { animation-delay: 0.6s; }
.service1 li:nth-child(4) { animation-delay: 0.8s; }
.service1 li:nth-child(5) { animation-delay: 1.0s; }

.service2 li:nth-child(1) { animation-delay: 0.2s; }
.service2 li:nth-child(2) { animation-delay: 0.4s; }
.service2 li:nth-child(3) { animation-delay: 0.6s; }

.service3 li:nth-child(1) { animation-delay: 0.2s; }
.service3 li:nth-child(2) { animation-delay: 0.4s; }
.service3 li:nth-child(3) { animation-delay: 0.6s; }
.service3 li:nth-child(4) { animation-delay: 0.8s; }
.service3 li:nth-child(5) { animation-delay: 1.0s; }

.service4 li:nth-child(1) { animation-delay: 0.2s; }
.service4 li:nth-child(2) { animation-delay: 0.8s; }

/* SERVICE SELECT ANIMATION */
.services-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    pointer-events: none;
}

.services-grid.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* SERVICE LISTS ANIMATION */
.service1 li,
.service2 li,
.service3 li,
.service4 li {
    opacity: 0;
    transform: translateX(-25px);
    display: block;
}

/* DEVICE RESPONSIVENESS */

/* LAPTOPS AND DESKTOPS */
@media only screen and (max-width: 1200px) {
    .socials-container {
        margin-right: 10px;
        width: 25%;
    }

    .socials ul {
        width: 24%;
        left: 76%;
    }

    .socials a {
        font-size: 2rem;
    }

    .header-content nav ul li a p {
        font-size: 1.1rem;
    }
}

@media only screen and (max-width: 1125px) {
    .header-content nav ul li a p {
        font-size: 1rem;
    }
}

/* TABLETS */
@media only screen and (max-width: 992px) {
    /* NAVIGATION FOR MOBILES */
    .header-content nav ul {
        pointer-events: none;
        cursor: default;
        display: flex;
        flex-direction: column;
        position: fixed;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        transition: max-height 0.5s ease-out, opacity 0.3s ease-out;
        opacity: 0;
        z-index: 999;
        margin-top: 0;
    }
    
    .header-content nav ul.show {
        max-height: 500px;
        opacity: 1;
        transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
    }

    .header-content nav ul.show li a {
        pointer-events: all;
        cursor: pointer;
    }
    
    .header-content nav ul li {
        margin: 0;
        padding: 15px 20px;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #ebebeb;
        text-align: center;
    }

    .header-content nav ul li:first-child {
        border-left: none;
        margin-left: 0;
    }

    .header-content nav ul li:last-child {
        border-right: none;
    }

    .header-content nav ul li a {
        pointer-events: none;
        cursor: default;
    }

    .header-content nav ul li a p:hover {
        border-radius: none;
        box-shadow: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 2;
    }

    /* HEADER ADJUSTMENTS */
    .logo {
        display: flex;
        order: 1;
        width: 250px;
    }

    .header-container {
        padding: 0;
    }
    
    .header-content {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .socials-container {
        width: 30%;
    }

    .socials a {
        font-size: 2rem;
    }

    .socials ul {
        width: 25%;
        left: 75%;
    }

    /* SERVICE SELECTION SECTION */
    .service-card{
        padding: 40px;
    }

    /* CONTACT SECTION */
    .contact-info h3 {
        text-align: center;
    }
    
    /* HOME PAGE ADJUSTMENTS */
    .home h2 {
        font-size: 2rem;
    }
    
    .home p {
        font-size: 1.1rem;
    }

    /* SERVICES */
    .services {
        height: auto;
        padding: 30px 0;
    }

    .service1 li, .service2 li, .service3 li, .service4 li {
        font-size: 80%;
    }

    .service1, .service2, .service3, .service4 {
        padding-top: 20px
    }

    /* ANIMATION RESPONSIVENESS */
    .services-grid {
        animation-duration: 0.6s !important;
    }
    .service1 li,
    .service2 li,
    .service3 li,
    .service4 li {
        animation-duration: 0.5s !important;
    }
}

/* TABLETS AND LARGE PHONES AND PHONES */
@media (max-width: 768px) {
    /* CONTACT SECTION */
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info, .contact-map {
        width: 100%;
    }

    .contact-info p {
        display: inline-block;
        align-items: center;
    }

    .contact-info i {
        margin-right: 5px;
    }

    .contact-btn, .phone-contact-btns-container, .opening-schedule {
        max-width: 95%;
    }

    .opening-schedule {
        text-align: center;
    }

    /* SERVICES */
    .service-btn {
        max-width: 95%;
    }

    .service-card i {
        font-size: 3rem;
        color: #000000;
        margin-bottom: 20px;
    }

    /* HEADER ADJUSTMENTS */
    .socials ul {
        width: 100%;
        left: 0;
    }
    
    .socials a {
        font-size: 1.7rem;
    }
}

/* HEADER ADJUSTMENTS FOR DEVICES WITH MAX WIDTH OF 440PX */
@media (max-width: 440px) {
    .header-container {
        width: 75%;
    }

    .socials-container {
        width: 25%;
    }

    .socials a {
        font-size: 1.5rem;
    }
}
/* STYLE MADE BY Adam Masłowski */
