:root {
    --burgundy: #8f4058;
    --dark: #202938;
    --cream: #faf6f1;
    --soft: #f1e6dc;
    --text: #444;
}

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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: white;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1150px, 90%);
    margin: auto;
}


/* HEADER */

header {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .06);
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.logo-name {
    color: #8f4058;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    padding: 10px 16px;
    border-radius: 25px;
    transition: .3s ease;
}

.nav-links a:hover {
    background: var(--soft);
    color: var(--burgundy);
}


.facebook-icon {
    font-size: 1.5rem;
    color: #1877f2 !important;
}


.nav-button {
    background: var(--burgundy);
    color: white !important;
    padding: 12px 22px !important;
    box-shadow: 0 8px 20px rgba(143, 64, 88, .25);
}


.nav-button:hover {
    background: #743247;
}


/* HERO */

.hero {
    background-image: url("../images/hero-cat.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 55vh;

    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    width: 100%;
    background: rgba(0, 0, 0, .45);
    padding: 70px 0;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: var(--dark);
    line-height: 1.1;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.1;
    color: white;
}

.hero span {
    color: #ffe6b3;
}

.hero p {
    margin: 30px 0;
    font-size: 1.25rem;
    max-width: 550px;
}

.button {
    display: inline-block;
    background: var(--burgundy);
    color: white;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

/* SECTIONS */

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--dark);
    font-size: 2.3rem;
}

/* BADGES */
.trust-badges {
    background: var(--soft);
    padding: 30px 0;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.badge {
    text-align: center;
    padding: 10px 15px;
}

.badge-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;
    background: var(--burgundy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.badge h3 {
    color: var(--dark);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.badge p {
    font-size: .9rem;
    margin: 0;
    color: var(--text);
}


@media (max-width: 900px) {
    .badge-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* SERVICES */

.cards {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 20px;
}

.card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.card h3 {
    margin: 15px 0;
    color: var(--dark);
}

.icon {
    font-size: 2rem;
}


/* ABOUT */

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about img {
    border-radius: 30px;
}

.about h2 {
    color: var(--dark);
    font-size: 2.4rem;
}


/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px;
}

.gallery img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* HOW IT WORKS */
.how-it-works {
    background: var(--cream);
}


.steps {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 30px;
}


.step {
    text-align: center;
    padding: 30px 20px;
}


.step-number {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    background: var(--burgundy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
}


.step h3 {
    color: var(--dark);
    margin-bottom: 15px;
}


@media (max-width: 900px) {

    .steps {
        grid-template-columns:repeat(2, 1fr);
    }

}


@media (max-width: 550px) {

    .steps {
        grid-template-columns:1fr;
    }

}

/* FOOTER */

footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}


.footer-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 40px;
}


footer h3 {
    margin-bottom: 20px;
}


footer a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
}


footer a:hover {
    color: var(--soft);
}


.footer-button {
    display: inline-block !important;
    margin-top: 15px;
    background: var(--burgundy);
    padding: 12px 25px;
    border-radius: 30px;
}


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


@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns:1fr;
        text-align: center;
    }

}


/* MOBILE */

@media (max-width: 900px) {

    .hero-grid,
    .about-grid {
        grid-template-columns:1fr;
    }

    .cards {
        grid-template-columns:repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns:repeat(2, 1fr);
    }

    nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

}


@media (max-width: 550px) {

    .cards,
    .gallery-grid {
        grid-template-columns:1fr;
    }

    section {
        padding: 55px 0;
    }

}
