.contact {
    position: relative;
    padding-top: 15vh;
    height: 150vh;
    width: 100%;
    z-index: 1;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.contact-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.contact-img {
    position: relative;
    margin-top: 20px;
}

.contact-img .imgg {
    border-radius: 20px;
    height: 500px;
    width: 1000px;
    cursor: none;
    aspect-ratio: 2 / 1; /* Keeps proportional */
    clip-path: path("M 20,0 L 980,0 A 20,20 0,0,1 1000,20 L 1000,400 A 20,20 0,0,1 980,420 L 650,420 A 20,20 0,0,0 630,440 L 630,480 A 20,20 0,0,1 610,500 L 20,500 A 20,20 0,0,1 0,480 L 0,20 A 20,20 0,0,1 20,0 Z")
}

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

.poly-text {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36%;
    height: 70px;
    z-index: 10;
     border-radius: 15px;
     cursor: none;
     display: flex;
     justify-content: center;
     align-items: center;
}

.poly-text h3 {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 5px;
       font-family: 'Gloria Hallelujah';

}

.custom-cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 1000;
    display: none;
    /* hide by default */
    transition: transform 0.1s linear;
}

.contact-img img {
    
    border-radius: 20px;
    object-fit: cover;
}

.contact-page .contact-header h1 {
    font-size: 60px;
    margin-top: 30px;
    background: linear-gradient(to right, #ffffff, #78A2D2, #4033a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-page .contact-copy p {
    text-align: center;
    width: 70%;
}

.contact-cards {
    width: 100%;
    margin-bottom: 60px;
}

.contact-cards .container {
    display: flex;
    gap: 20px;
}

.contact-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.075);
    flex: 1;
    border: 1px solid var(--color-border);
    border-radius: 15px;
}

.contact-card p {
    text-align: left;
    margin-bottom: 10px;
}

.contact-card p {
    font-weight: 500;
    letter-spacing: -0.02em;
}

.contact-card span {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.contact-card .hero-callout {
    margin: 40px 0 0 0;
}

.contact-items {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.c-item {
    padding: 40px;
    flex: 1;
}

.c-item p {
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.c-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.c-item a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media(max-width: 800px) {
    .contact-page .hero-copy p {
        width: 100%;
    }

    .contact-cards .container {
        flex-direction: column;
    }

    .contact-items {
        flex-direction: column;
    }
}