/**
 * Theme Name: JustFlow
 * Theme URI: https://justflownh.com
 * Description: Professional theme matching JustFlow Events & Marketing branding with watercolor background and diagonal cutoff
 * Version: 1.0.0
 * Author: Brayall, LLC
 * Author URI: https://github.com/abrayall
 */

.twine-container {
    background: #ffffff;
    min-height: 100vh;
    padding: 0;
    position: relative;
}

.twine-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 65vh;
    background-image: url('https://justflownh.com/wp-content/uploads/2020/03/200210-JF-Background-Water-Color-First-Section-1.jpg');
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0 100%);
    z-index: 0;
}

.twine-profile {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.twine-icon {
    width: 120px;
    height: 120px;
    border: 4px solid #0080b1;
    box-shadow: 0 8px 24px rgba(0, 128, 177, 0.25);
    background: #fff;
}

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

.twine-name {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.twine-description {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

.twine-links {
    position: relative;
    z-index: 1;
    padding-left: 20px;
    padding-right: 20px;
}

.twine-link-button {
    background: #0080b1;
    color: #ffffff;
    border: 2px solid #0080b1;
    border-radius: 9999px;
    padding: 10px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 128, 177, 0.25);
}

@media (hover: hover) {
    .twine-link-button:hover {
        background: #006a95;
        border-color: #006a95;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 128, 177, 0.35);
    }
}

.twine-link-button:active {
    background: #005578;
    border-color: #005578;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 128, 177, 0.3);
}

.twine-social {
    position: relative;
    z-index: 1;
    margin-top: 48px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.twine-social-icon {
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .twine-social-icon:hover {
        background: #0080b1;
        border-color: #0080b1;
        transform: scale(1.1);
        box-shadow: 0 4px 16px rgba(0, 128, 177, 0.3);
    }

    .twine-social-icon:hover svg {
        color: #ffffff;
    }
}

.twine-social-icon:active {
    transform: scale(0.95);
}

.twine-social-icon svg {
    width: 24px;
    height: 24px;
    color: #0080b1;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .twine-container::before {
        height: 60vh;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
    }

    .twine-profile {
        padding-top: 40px;
        padding-bottom: 32px;
    }

    .twine-icon {
        width: 100px;
        height: 100px;
        border-width: 3px;
    }

    .twine-name {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .twine-description {
        font-size: 16px;
    }

    .twine-link-button {
        padding: 8px 28px;
        font-size: 15px;
    }

    .twine-social {
        margin-top: 40px;
        padding-bottom: 40px;
    }

    .twine-social-icon {
        width: 44px;
        height: 44px;
    }

    .twine-social-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 375px) {
    .twine-name {
        font-size: 32px;
    }

    .twine-description {
        font-size: 15px;
    }

    .twine-link-button {
        padding: 10px 24px;
        font-size: 14px;
    }
}
