@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

:root {
    --primary: #FF5D00;
    --secondary: #0E1B4D;
    --title: #000;
    --font: #2f2f2f;
    --bg: #ffc0c07c;
}

body {
    background: var(--bg);
    font-family: "Montserrat", sans-serif;

    @media (max-width: 800px) {
        font-size: 14px;
    }

}

.hidden {
    display: none;
}

.visible {
    display: block;
}

.section-title {
    margin-bottom: .5em;
    font-size: 1.8em;
    color: var(--primary);
}

.limit-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.header {
    background: var(--primary);

    .limit-wrapper {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 1em;
        color: #fff;
        padding: 1.3em 1em;
        gap: 2em;

        @media (max-width: 400px) {
            flex-direction: column;
            justify-content: center;
            text-align: center;
            gap: .5em;
        }

        img {
            width: 10em;
            height: 10em;
            object-fit: cover;
            border-radius: 100%;
            border: .4em solid #fff;

            @media (max-width: 400px) {
                width: 8em;
                height: 8em;
            }
        }

        div {
            h1 {
                font-family: "Josefin Sans", sans-serif;
                font-size: 4em;
            }

            h2 {
                font-size: 1.6em;
                font-weight: 300;
            }
        }
    }
}


.card-wrapper {
    padding: 1em;
}


.card {
    background: #fff;
    margin: 1em;
    padding: 1.7em 1em;
    border-radius: 1.7em;
    margin: auto;

    .information-pet {
        margin-bottom: 3em;

        .about-us {
            text-align: center;
            margin-bottom: 3em;

            p {
                font-size: .9em;
                color: var(--font);
            }
        }

        .information {
            ul {
                list-style: none;
                margin: 0;
                display: flex;
                justify-content: space-around;
                text-align: center;
                font-size: .9em;
                flex-wrap: wrap;
                gap: 1.5em;

                div:first-child {
                    font-weight: 600;
                    margin-bottom: .5em;
                }

                div:last-child {
                    color: var(--font);
                }

            }
        }
    }

    .information-owner {
        .owner {
            text-align: center;

            h4 {
                font-size: 1.3em;
                margin-bottom: .5em;
                color: var(--secondary);
                margin-bottom: 1.3em;
            }
        }

        .contact-btns {
            display: flex;
            flex-direction: column;
            margin-bottom: 1.5em;


            a {
                display: block;
                background-color: var(--primary);
                margin-bottom: .8em;
                padding: 1em;
                text-decoration: none;
                color: #fff;
                text-align: center;
                display: flex;
                justify-content: center;
                gap: .4em;
                border-radius: 1em;
                font-size: 1.1em;

                i {
                    font-size: 1.3em;
                }
            }

        }

        .social-btns {
            display: flex;
            justify-content: center;
            gap: 1.2em;
            margin-bottom: 4em;

            a {
                display: block;
                width: 2.2em;
                height: 2.2em;
                background: var(--secondary);
                color: #fff;
                display: grid;
                place-items: center;
                border-radius: 100%;
                text-decoration: none;
                font-size: 2em;
            }
        }

    }

    .gallery {
        h3 {
            margin-bottom: 1em;
            text-align: center;
        }

        .images {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: .7em;

            @media screen and (max-width: 600px) {
                gap: 1em;
            }
        }

        img,
        .video {
            width: 100%;
            border-radius: 1.5em;
            height: 50svh;
            max-height: 90svh;
            object-fit: cover;
            width: 19em;
            position: relative;

            @media screen and (max-width: 600px) {
                width: 100%;
                height: auto;
                object-fit: contain;
            }
        }

        .video-wrapper {
            position: relative;
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4em;
            color: #fff;
            opacity: 0.8;
            z-index: 500;
            font-size: 6em;
            cursor: pointer;
        }
    }
}

footer {
    background: var(--secondary);
    color: #fff;
    text-align: center;
    font-size: .7em;
    padding: 1em;

    a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;


    }

    i {
        color: red;
    }
}