/* Gradient Header */


.contact-hero {
    background: linear-gradient(210deg, var(--clr-neutral-blue) 20%, var(--clr-primary-orange) 60%);
    text-align: center;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* contact.css */


.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.contact-title {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 0.3s;
    font-weight: 800;
    font-family: var(--font-display);
    font-size: var(--font-size-h1);
}

.contact-subtitle {
    max-width: 80%;
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: var(--font-size-h2);
}

.contact-content.in-view {
    opacity: 1;
    transform: translateY(0);
}

.contact-columns {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.contact-socials {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* contact info */
.contact-item {
    display: flex;
    align-items: center;
    font-size: var(--font-size-h3);
    font-family: var(--font-display);
    color: #111;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--clr-neutral-blue);
}

/* icons */
.icon {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-right: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

/* Show icons in full color */
.email-icon {
    background-image: url('https://cdn-icons-png.flaticon.com/512/561/561127.png');
}

.insta-icon {
    background-image: url('https://cdn-icons-png.flaticon.com/512/2111/2111463.png');
}

.behance-icon {
    background-image: url('https://cdn-icons-png.flaticon.com/512/145/145799.png');
}

/* Animated float effect */
@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.icon {
    animation: floatIcon 2.5s ease-in-out infinite;
}

/* Hover glow */
.contact-item:hover .icon {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 0 6px rgba(255, 122, 0, 0.6));
}

/* cta button */

.contact-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--clr-neutral-blue);
    color: var(--clr-neutral-black);
    font-family: var(--font-display);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--clr-neutral-blue);
    color: var(--clr-neutral-black);
    border: 2px solid var(--clr-primary-blue);
    box-shadow: 0 0 12px rgba(255, 122, 0, 0.4);
}



@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Copyright */

.year {
    font-family: var(--font-primary);
    color: var(--clr-neutral-blue);
}

.copyright-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    background-color: black;
    padding: 1rem;

}

#trigger {
    padding-right: 2rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--clr-primary-orange);
}

#element-to-show {
    display: block;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    padding-right: 2rem;
    color: var(--clr-secondary-orange);
}

.agency-name {
    color: var(--clr-neutral-blue);
    font-family: var(--ff-primary);

}

#element-to-show p {
    font-family: var(--font-mono);
    font-weight: 400 !important;
}


.designer,
.copyright {
    text-decoration: none;

}


.designer {
    color: var(--clr-neutral-blue);
}

.copyright {}

@media (max-width: 767px) {
    #element-to-show {
        display: block;


    }

    #trigger {
        display: none;
    }

    .contact-socials {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}