/* ======================================== RESET / BASIC SETTINGS ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;

    color: #17202a;

    background: white;

    line-height: 1.6;
}


img {
    max-width: 100%;
    display: block;
}

/* ======================================== NAVIGATION ======================================== */

header {
    background: white;

    border-bottom: 1px solid #eeeeee;

    position: sticky;

    top: 0;

    z-index: 100;
}


.navbar {
    max-width: 1100px;

    margin: auto;

    padding: 16px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.logo {
    color: #174f82;

    font-size: 21px;

    font-weight: bold;

    line-height: 1.1;

    text-decoration: none;
}


.logo span {
    display: block;

    margin-top: 3px;

    font-size: 12px;

    font-weight: normal;

    color: #555;
}


.nav-right {
    display: flex;

    align-items: center;

    gap: 25px;
}


.nav-links {
    display: flex;

    gap: 25px;
}


.nav-links a {
    color: #333;

    text-decoration: none;

    font-size: 14px;

    font-weight: bold;
}


.nav-links a:hover {
    color: #1976c9;
}

/* ======================================== LANGUAGE SWITCH ======================================== */

.language-switch {
    display: flex;

    border: 1px solid #d7d7d7;

    border-radius: 6px;

    overflow: hidden;
}


.language-button {
    border: none;

    background: white;

    color: #555;

    padding: 7px 10px;

    cursor: pointer;

    font-weight: bold;
}


.language-button:hover {
    background: #f0f0f0;
}


.language-button.active {
    background: #1976c9;

    color: white;
}

/* ======================================== HERO ======================================== */

.hero {
    min-height: 520px;

    display: flex;

    align-items: center;

    color: white;

    background:
        linear-gradient(
            rgba(10, 45, 75, 0.78),
            rgba(10, 45, 75, 0.78)
        ),
        url("images/laundry-1.jpg");

    background-size: cover;

    background-position: center;
}


.hero-content {
    width: 100%;

    max-width: 1100px;

    margin: auto;

    padding: 80px 25px;
}


.eyebrow {
    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.hero h1 {
    max-width: 750px;

    font-size: clamp(45px, 7vw, 72px);

    line-height: 1.05;

    margin-bottom: 25px;
}


.hero-description {
    max-width: 620px;

    font-size: 20px;

    margin-bottom: 30px;
}

/* ======================================== BUTTON ======================================== */

.buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.button {
    display: inline-block;

    padding: 13px 24px;

    border-radius: 6px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.2s;
}


.button:hover {
    transform: translateY(-2px);
}


.primary {
    background: #1976c9;

    color: white;
}


.secondary {
    background: white;

    color: #174f82;
}

/* ======================================== PICKUP & DELIVERY ======================================== */

.delivery {
    background: #edf6ff;

    padding: 60px 25px;
}


.delivery-content {
    max-width: 900px;

    margin: auto;

    display: flex;

    align-items: center;

    gap: 35px;
}


.delivery-icon {
    font-size: 75px;
}


.delivery h2 {
    font-size: 38px;

    line-height: 1.2;

    margin-bottom: 10px;
}


.delivery p:not(.eyebrow) {
    max-width: 650px;

    margin-bottom: 20px;

    font-size: 18px;
}

/* ======================================== GENERAL SECTIONS ======================================== */

.section {
    max-width: 1100px;

    margin: auto;

    padding: 80px 25px;
}


.section-heading {
    text-align: center;

    margin-bottom: 45px;
}


.section-heading h2 {
    font-size: 40px;

    line-height: 1.2;
}

/* ======================================== SERVICES ======================================== */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.service {
    padding: 30px;

    border: 1px solid #e2e2e2;

    border-radius: 8px;

    background: white;
}


.service-icon {
    font-size: 35px;

    margin-bottom: 15px;
}


.service h3 {
    font-size: 20px;

    margin-bottom: 8px;
}


.service p {
    color: #5d6670;
}

/* ======================================== PHOTO SLIDESHOW ======================================== */

.slideshow-section {
    background: #f7f8fa;
    padding: 80px 25px;
}


.slideshow {
    max-width: 900px;
    height: 520px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #111;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active-slide {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide img.contain-photo {
    object-fit: contain;
    background: #111;
}


/* Previous / Next arrows */

.slide-button {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);
    color: white;

    font-size: 25px;

    cursor: pointer;

    z-index: 10;
}


.slide-button:hover {
    background: rgba(0, 0, 0, 0.75);
}


.previous {
    left: 15px;
}


.next {
    right: 15px;
}


/* Dots underneath */

.slide-dots {
    display: flex;

    justify-content: center;

    gap: 9px;

    margin-top: 18px;
}


.dot {
    width: 11px;
    height: 11px;

    border: none;

    border-radius: 50%;

    background: #b6b6b6;

    cursor: pointer;
}


.dot.active-dot {
    background: #1976c9;
}


/* ======================================== MOBILE ======================================== */


@media (max-width: 750px) {
    .slideshow {
        aspect-ratio: 16 / 10;
        height: auto;
    }
    
    .slideshow-section {
        padding: 60px 20px;
    }

    .slide img {
        object-fit: cover;
    }

    .slide-button {
        width: 42px;
        height: 42px;

        font-size: 21px;
    }
}

/* ======================================== LOCATION ======================================== */

.location {
    display: grid;

    grid-template-columns: 1fr 1.3fr;

    gap: 60px;

    align-items: center;
}


.location-info h2 {
    font-size: 38px;

    line-height: 1.15;

    margin-bottom: 30px;
}


.info {
    margin-bottom: 22px;
}


.info h3 {
    font-size: 16px;

    margin-bottom: 3px;
}


.info p {
    color: #4c5661;
}


.time {
    font-weight: bold;
}


.weekend {
    margin-top: 12px;
}


.phone-number {
    color: #1976c9;

    font-size: 21px;

    font-weight: bold;

    text-decoration: none;
}

.email-address {
    color: #1976c9;
    font-weight: bold;
    text-decoration: none;
}

.email-address:hover {
    text-decoration: underline;
}


.map {
    width: 100%;

    height: 450px;

    overflow: hidden;

    border-radius: 10px;
}


.map iframe {
    width: 100%;

    height: 100%;

    border: 0;
}

/* ======================================== FOOTER ======================================== */

footer {
    padding: 40px 20px;

    background: #122435;

    color: white;

    text-align: center;
}


footer strong {
    font-size: 18px;
}


footer a {
    color: white;

    font-weight: bold;
}


.copyright {
    margin-top: 20px;

    color: #b8c0c8;

    font-size: 13px;
}

/* ======================================== TABLETS ======================================== */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ======================================== MOBILE PHONES ======================================== */

@media (max-width: 750px) {


    /* NAVIGATION */

    .navbar {
        padding: 13px 16px;
    }


    .logo {
        font-size: 18px;
    }


    .nav-right {
        gap: 10px;
    }


    .nav-links {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 480px;
    }


    .hero-content {
        padding: 60px 20px;
    }


    .hero h1 {
        font-size: 45px;
    }


    .hero-description {
        font-size: 18px;
    }


    /* BUTTONS */

    .buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    /* DELIVERY */

    .delivery {
        padding: 50px 20px;
    }


    .delivery-content {
        flex-direction: column;

        text-align: center;

        gap: 15px;
    }


    .delivery-icon {
        font-size: 55px;
    }


    .delivery h2 {
        font-size: 32px;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* LOCATION */

    .location {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .map {
        height: 320px;
    }


    /* SECTIONS */

    .section {
        padding: 60px 20px;
    }


    .gallery-section {
        padding: 60px 20px;
    }


    .section-heading h2 {
        font-size: 34px;
    }

}


/* ======================================== VERY SMALL PHONES ======================================== */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 39px;
    }


    .language-button {
        padding: 6px 8px;
    }


    .logo span {
        font-size: 10px;
    }

}