:root {
    --orange: #f09f42;
    --green: #c1ce4a;
    --brown: #6b3d25;
    --turquoise: #a6d8df;
    --white: #ffffff;
}

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


body {
  font-family: 'Nunito', sans-serif;
  line-height: 1.3;
}

.hero {
    min-height: 100vh;

    background-image:
        linear-gradient(
            rgba(255,255,255,0),
            rgba(255,255,255,0)
        ),
        url("../images/background.png");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 30px;
}

.content {
    text-align: center;

    max-width: 850px;

    background: rgba(255,255,255,0.85);

    backdrop-filter: blur(20px);

    border-radius: 24px;

    padding: 60px 50px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.10);
}

.logo {
    width: 220px;
    max-width: 50%;

    margin-bottom: 35px;
}

h1 {
    font-family: 'Bebas Neue', sans-serif;

    font-size: clamp(3rem, 8vw, 6rem);

    line-height: 0.95;
    letter-spacing: 3px;

    margin-bottom: 25px;

    color: var(--orange);
}

p {
    color: var(--brown);

    font-size: 1.2rem;
    line-height: 1.8;

    max-width: 650px;

    margin: 0 auto 40px auto;
   
}

.contact {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}

.contact a {
     text-align: left;  
    color: var(--brown);

    text-decoration: none;

    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 1.05rem;
    font-weight: 700;

    transition: all 0.3s ease;
}

.contact a:hover {
         text-align: left;  
    color: var(--orange);
}

.contact i {
         text-align: left;  
    color: var(--green);
    font-size: 1.3rem;
}

.pawprints {
    margin-top: 35px;

    font-size: 2rem;

    color: var(--orange);

    letter-spacing: 12px;
}

@media (max-width: 768px) {

    .content {
        padding: 40px 25px;
    }

    p {
        font-size: 1.05rem;
    }

    .contact {
        flex-direction: column;
        gap: 15px;
    }

    .pawprints {
        font-size: 1.5rem;
    }
}

.footer-contact {
    margin-top: 60px;
    padding: 30px 20px;
    background: #f5f5f5;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    font-family: 'Nunito', sans-serif;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;

    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-title i {
    color: #333;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #444;
}