/*
Theme Name: Mittal Theme
Theme URI: https://mmbymittal.com
Author: MM BY MITTAL
Author URI: https://mmbymittal.com
Description: Custom WordPress theme for MM BY MITTAL - Exclusive hand-painted designs and fashion collaborations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mittal-theme
Tags: custom-logo, custom-menu, featured-images, full-width-template
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
*/

/* ========================================
   CUSTOM FONTS
   ======================================== */
@font-face {
    font-family: 'FuturaStd-Light';
    src: url('assets/fonts/FuturaStd-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geliat-ExtraLight';
    src: url('assets/fonts/Geliat-ExtraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Northwell';
    src: url('assets/fonts/Northwell.otf') format('opentype'),
         url('assets/fonts/Northwell.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   FONT UTILITY CLASSES
   ======================================== */
.font-title {
    font-family: 'FuturaStd-Light', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.font-description {
    font-family: 'Geliat-ExtraLight', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.font-script {
    font-family: 'Northwell', cursive !important;
    text-transform: none !important;
    letter-spacing: 0.1em !important;
}

@media (min-width: 768px) {
    .font-description {
        font-size: 1.25rem;
    }
}

.bg-primary .font-description,
[class*="bg-primary"] .font-description {
    color: #7b7b7b !important;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-50px, 50px) rotate(180deg); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes kenburns {
    0% { transform: scale(1) translateX(0); }
    100% { transform: scale(1.1) translateX(-20px); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(250, 247, 238, 0.7); }
    50% { box-shadow: 0 0 0 20px rgba(250, 247, 238, 0); }
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.95); }
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

/* ========================================
   PAGE LOADER
   ======================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #faf7ee;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: auto;
    animation: loaderPulse 2s ease-in-out infinite;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e0d1bf;
    border-top: 4px solid #171f3b;
    border-radius: 50%;
    animation: loaderSpin 1s linear infinite;
    margin: 20px auto 0;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 1.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    position: relative;
    z-index: 1001;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle.active {
    background-color: #171f3b;
}

.mobile-menu-toggle span {
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.mobile-menu-toggle.active span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-links {
    transition: right 0.4s ease;
}

/* ========================================
   SMOOTH UNDERLINE
   ======================================== */
.smooth-underline {
    position: relative;
    text-decoration: none;
}

.smooth-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 1.3s ease;
}

.smooth-underline:hover::after {
    width: 100%;
}

.smooth-underline-white::after {
    background: #faf7ee;
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.cta-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #faf7ee;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1), height 1.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    will-change: width, height;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.cta-button:hover::before {
    width: 500px;
    height: 500px;
}

.cta-button-reverse {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button-reverse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #171f3b;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1), height 1.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    will-change: width, height;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.cta-button-reverse:hover::before {
    width: 500px;
    height: 500px;
}

.cta-button-reverse:hover {
    color: #faf7ee !important;
}

/* ========================================
   HERO
   ======================================== */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-content {
    display: none;
    animation: heroFadeIn 0.8s ease-out forwards;
}

.hero-slide-content.active {
    display: block;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide img {
    animation: kenburns 20s ease-in-out infinite alternate;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: #faf7ee;
    width: 40px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: rgba(250, 247, 238, 0.8);
}

#home .hero-overlay {
    opacity: 0;
    transition: opacity 0.5s ease;
}

#home:hover .hero-overlay {
    opacity: 1;
}

#home .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
    pointer-events: none;
}

#home:hover .hero-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hero Overlay Transition (for services and other pages) */
.hero-overlay {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-overlay.visible {
    opacity: 1;
}

/* Hero Content Transition (for services and other pages) */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   FADE IN ANIMATION
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   COLLAB CARDS
   ======================================== */
.collab-card .shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(250, 247, 238, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.collab-card:hover .shine {
    left: 100%;
}

/* ========================================
   PRINT CARDS
   ======================================== */
.print-card {
    will-change: transform;
}

.print-card .absolute.inset-0 img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ========================================
   BIRD & TREE DECORATIVE IMAGES
   ======================================== */
.bird-image {
    position: fixed;
    left: 1rem;
    top: calc(7rem);
    transform: translateY(-50%);
    height: 100px;
    width: auto;
    z-index: 55;
    pointer-events: none;
    object-fit: contain;
}

@media (min-width: 1025px) {
    .bird-image { left: -5rem; }
}

@media (max-width: 1024px) {
    .bird-image { display: none; }
}

.tree-image {
    position: fixed;
    right: 1rem;
    top: calc(10.4rem);
    transform: translateY(-50%) rotate(-63deg);
    height: 200px;
    width: auto;
    z-index: 55;
    pointer-events: none;
    object-fit: contain;
}

@media (min-width: 1025px) {
    .tree-image { right: -3rem; }
}

@media (max-width: 1024px) {
    .tree-image { display: none; }
}

/* ========================================
   FILTER BUTTONS
   ======================================== */
.filter-btn.active {
    background: #72553d;
    color: #faf7ee;
    border-color: #72553d;
}

/* ========================================
   PROJECT SWIPER
   ======================================== */
.project-swiper {
    width: 100%;
    height: auto;
    padding-bottom: 40px;
}

.project-swiper .swiper-slide {
    height: auto;
}

.project-swiper .swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

@media (min-width: 1024px) {
    .project-swiper .swiper-slide {
        width: auto;
    }
    .project-swiper .swiper-slide img {
        width: auto;
        height: 500px;
        max-width: none;
    }
}

.project-swiper .swiper-button-next,
.project-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.project-swiper .swiper-button-next:hover,
.project-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
}

.project-swiper .swiper-button-next::after,
.project-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.project-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.project-swiper .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1);
    width: 30px;
    border-radius: 5px;
}

/* ========================================
   SWIPER GENERAL
   ======================================== */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #ffffff !important;
    background: rgba(23, 31, 59, 0.9);
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #ffffff;
    color: #171f3b !important;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-content {
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .testimonial-content { width: 90%; padding: 2rem; }
}

@media (min-width: 1024px) {
    .testimonial-content { width: 75%; padding: 2.5rem; }
}

.testimonial-content:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    font-family: 'Geliat-ExtraLight', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #171f3b;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    flex-grow: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .testimonial-quote { font-size: 1.05rem; line-height: 1.7; }
}

@media (min-width: 1024px) {
    .testimonial-quote { font-size: 1.125rem; line-height: 1.75; }
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-info {
    text-align: center;
}

.testimonial-info h4 {
    font-family: 'FuturaStd-Light', sans-serif;
    text-transform: uppercase;
    font-size: 0.95rem;
    font-weight: 600;
    color: #171f3b;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .testimonial-info h4 { font-size: 1.05rem; }
}

@media (min-width: 1024px) {
    .testimonial-info h4 { font-size: 1.125rem; }
}

.testimonial-info p {
    font-family: 'Geliat-ExtraLight', sans-serif;
    font-size: 0.875rem;
    color: #171f3b;
    letter-spacing: 0.05em;
}

.testimonials-swiper {
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem 0 3rem 0;
}

@media (min-width: 768px) {
    .testimonials-swiper { width: 85%; padding: 2rem 0 3.5rem 0; }
}

@media (min-width: 1024px) {
    .testimonials-swiper { width: 70%; padding: 2rem 0 4rem 0; }
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    width: 2.5rem;
    height: 2.5rem;
    background: #171f3b;
    color: #faf7ee;
    border-radius: 50%;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        width: 3rem;
        height: 3rem;
    }
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: #171f3b;
    transform: scale(1.1);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
    font-size: 1rem;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    background: #e0d1bf;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: #171f3b;
    width: 2rem;
    border-radius: 1rem;
}

/* ========================================
   VIDEO SECTION
   ======================================== */
#processVideo {
    pointer-events: none;
}

#processVideo iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    #processVideo iframe {
        width: 177.77vh;
        height: 100vh;
    }
}

/* ========================================
   PLAY BUTTON
   ======================================== */
#playVideoBtn {
    animation: pulse 2s infinite;
}

#playVideoBtn:hover {
    animation: none;
}

/* ========================================
   INSTAGRAM FEED
   ======================================== */
.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.instagram-post:hover .instagram-post-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.instagram-post-overlay i {
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-post-overlay i {
    opacity: 1;
}

@media (min-width: 768px) {
    .instagram-feed-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .instagram-feed-grid { grid-template-columns: repeat(4, 1fr); }
}

.instagram-feed-container {
    width: 100%;
    margin: 0 auto;
    border-radius: 0.5rem;
    overflow: hidden;
}

/* ========================================
   CLIENTS SLIDER
   ======================================== */
.clients-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.clients-slider-track {
    display: flex;
    gap: 1rem;
    animation: scrollClients 30s linear infinite;
    will-change: transform;
}

.clients-slider-track:hover {
    animation-play-state: paused;
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo-item {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 1rem;
    transition: all 0.3s ease;
    padding: 1rem;
}

.client-logo-item:hover {
    transform: translateY(-8px);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   MOBILE RESPONSIVE MENU
   ======================================== */
@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #faf7ee;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        padding: 40px 30px;
        overflow-y: auto;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 16px;
        color: #171f3b;
    }
    .nav-links .group {
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .dropdown-menu.mobile-open {
        max-height: 300px;
    }
    .dropdown-menu li a {
        padding: 10px 20px;
        border-left: 2px solid #e0d1bf;
    }
    .header-social {
        order: -1;
        margin-right: 20px;
    }
}

/* ========================================
   WORDPRESS SPECIFIC
   ======================================== */
.alignwide {
    max-width: 1750px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

img {
    max-width: 100%;
    height: auto;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #faf7ee;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #171f3b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Add to Cart / Inquiry Button */
.add-to-cart-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1), height 1.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}
.add-to-cart-btn:hover::before {
    width: 500px;
    height: 500px;
}
.add-to-cart-btn:hover {
    color: #1a1a1a !important;
}

/* FAQ Accordion */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

/* ========================================
   DROPDOWN MENU ITEMS
   ======================================== */
.dropdown-menu .dropdown-item {
    color: #faf7ee !important;
}
.dropdown-menu .dropdown-item:hover {
    background-color: rgba(250, 247, 238, 0.15) !important;
    color: #faf7ee !important;
}

/* ========================================
   FOOTER NAV MENU LINKS
   ======================================== */
footer .space-y-3 a {
    color: rgba(250, 247, 238, 0.7) !important;
    transition: color 0.3s ease;
}
footer .space-y-3 a:hover {
    color: #faf7ee !important;
}

/* ========================================
   FOOTER SOCIAL ICONS HOVER
   ======================================== */
footer .fab {
    transition: color 0.3s ease;
}
footer a:hover .fab,
footer a:hover .fa-instagram,
footer a:hover .fa-facebook-f,
footer a:hover .fa-pinterest-p {
    color: #171f3b !important;
}
