
.profile img{
    width: 100%;
    max-width: 300px;
    text-align: center;
    display: block;
    margin: auto;
}

/* Links page specific styles */

.profile {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 600px;
    padding: 0 20px;
}


.profile p {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    color: #fff;
    font-size: 1.1rem;
}

.links-container {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    margin-bottom: 20px;
    background-color: rgba(255, 179, 77, 0.05);
    border: 2px solid #FFB34D;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.2s ease;
    font-family: "Goldman", sans-serif;
    font-size: 1.3rem;
    backdrop-filter: blur(2px);
}

.link-item:hover {
    transform: scale(1.02);
    background-color: rgba(255, 179, 77, 0.15);
    border-color: #ffaa33;
    box-shadow: 0 5px 15px rgba(255, 179, 77, 0.2);
}

.link-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    border-radius: 50%;
    background-size: 60% auto;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #FFB34D;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Goldman", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #000;
}

.icon-placeholder {
    background-color: #FFB34D;
    color: #000;
    font-size: 1.8rem;
    line-height: 1;
}

.link-icon[style*="background-image"] {
    background-size: 60% auto;
    background-color: transparent;
    filter: brightness(0) saturate(100%) invert(76%) sepia(55%) saturate(448%) hue-rotate(345deg) brightness(102%) contrast(106%);
}

.link-name {
    flex: 1;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.link-arrow {
    font-size: 2rem;
    color: #FFB34D;
    margin-left: 15px;
    font-weight: 300;
    transition: transform 0.2s;
}

.link-item:hover .link-arrow {
    transform: translateX(5px);
}

/* Featured ticket link – full‑height flyer, left‑aligned details */
.link-item.ticket-special {
    display: flex;
    align-items: stretch;           /* makes children stretch to same height */
    padding: 0;                      /* remove default padding – flyer goes edge‑to‑edge */
    border-radius: 12px;             /* rectangular, slightly rounded */
    background-color: rgba(255, 179, 77, 0.1);
    border: 3px solid #FFB34D;
    box-shadow: 0 4px 12px rgba(255, 179, 77, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;                /* ensures flyer stays inside rounded corners */
    min-height: 140px;                /* taller than normal links */
}

.link-item.ticket-special:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 179, 77, 0.5);
}

/* Left flyer area – fills full height */
.ticket-special .ticket-flyer {
    width: 140px;                     /* fixed width for the flyer */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    background-color: #222;           /* fallback if image missing */
}

/* Right information area */
.ticket-special .ticket-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;          /* vertically center the content */
    align-items: flex-start;          /* left‑align text */
    padding: 20px 20px 20px 20px;
    font-family: "Roboto", sans-serif;
}

/* Event detail lines */
.ticket-special .event-detail {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1rem;
}

.ticket-special .event-detail .icon {
    font-size: 1rem;
    line-height: 1;
    width: 24px;                      /* fixed width to align text */
    display: inline-block;
    text-align: center;
}

/* Big “Buy Tickets” text */
.ticket-special .buy-text {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: "Goldman", sans-serif;
    color: #FFB34D;
    margin-top: 8px;
}

/* Arrow – vertically centered */
.ticket-special .link-arrow {
    font-size: 2.4rem;
    padding-right: 25px;
    display: flex;
    align-items: center;
    color: #FFB34D;
}

.ticket-special .event-name {
    font-family: "Goldman", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFF;
    text-align: left;
    margin-bottom: 6px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .link-item.ticket-special {
        min-height: 120px;
    }
    .ticket-special .ticket-flyer {
        width: 110px;
    }
    .ticket-special .ticket-info {
        padding: 15px 15px 15px 20px;
    }
    .ticket-special .event-detail {
        font-size: 0.9rem;
    }
    .ticket-special .buy-text {
        font-size: 1.5rem;
    }
    .ticket-special .link-arrow {
        font-size: 2rem;
        padding-right: 20px;
    }
}

@media (max-width: 480px) {
    .link-item.ticket-special {
        min-height: 103px;
    }
    .ticket-special .ticket-flyer {
        width: 90px;
    }
    .ticket-special .ticket-info {
        padding: 12px 12px 12px 16px;
    }
    .ticket-special .event-detail {
        font-size: 0.73rem;
        gap: 5px;
    }
    .ticket-special .event-detail .icon {
        width: 20px;
        font-size: 1rem;
    }
    .ticket-special .buy-text {
        font-size: 1.2rem;
        margin-top: 4px;
    }
    .ticket-special .link-arrow {
        font-size: 1.6rem;
        padding-right: 16px;
    }
}
/* Mobile adjustments */
@media (max-width: 800px) {
    .profile-image {
        width: 120px;
        height: 120px;
    }

    .profile h2 {
        font-size: 1.8rem;
    }

    .profile p {
        font-size: 1rem;
    }

    .link-item {
        padding: 15px 20px;
        font-size: 1.2rem;
        border-radius: 12px;
    }

    .link-icon {
        width: 45px;
        height: 45px;
        margin-right: 15px;
        font-size: 1.5rem;
    }

    .link-arrow {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .link-item {
        padding: 12px 18px;
    }

    .link-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
        font-size: 1.3rem;
    }

    .link-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 700px) {
    .ticket-special .event-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .ticket-special .event-name {
        font-size: 1rem;
    }
}