@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* Playfair Display from Google Fonts */

body {
    background-color: #fdf4dc;
    text-align: center;
    font-family: "Playfair Display", serif;
    margin: 0;
    padding: 0;
}

.logo-text-bold {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 50px;
    font-style: normal;
    color: #333;
    margin: 20px 0;
}

.logo-text-small {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 25px;
    font-style: normal;
    color: #666;
    margin: 10px 0;
}

.footer-icon {
    text-decoration: none;
    color: inherit; 
    margin-right: 3px;
    transition: color 0.3s;
}

.footer-icon:hover {
    color: #000;
}

.custom-navbar {
    background-color: transparent !important;
    border: none;
    box-shadow: none;
}

.nav-link {
    text-decoration: underline;
    font-size: 17px;
    color: #444;
    transition: color 0.3s;
    margin-right:15px;
}

.nav-link:hover {
    color: #000;
}

.services::before {
    content: '';
    color: inherit;
    animation: profile 7s infinite steps(1);
}

@keyframes profile {
    0% { content: 'drywall'; }
    14% { content: 'texture'; }
    28% { content: 'wallpaper removal'; }
    42% { content: 'popcorn removal'; }
    56% { content: 'minor wood repairs'; }
    70% { content: 'indoor/exterior painting'; }
    84% { content: 'wood stain on fences and cabinets'; }
    100% { content: 'drywall'; }
}
