#venue {
    width: 100%;
    min-height: 100vh;
    height: max-content;
    padding-top: 10vh;
}

#venue .venue-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100%;
    height: max-content;
    max-width: var(--section-max-width);
    gap: 60px;
    margin: auto;
}

#venue h1 {
    font-size: 64px;
    font-family: var(--font-poppins);
    font-weight: 300;
    margin-top: 30px;
}

#venue .card h1 {
    font-family: var(--font-poppins);
    font-size: 3rem;
    font-weight: 100;
    margin-top: 50px;
    margin-bottom: 10px;
}

#venue .card p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-top: 0px;
    margin-bottom: 50px;
}

#venue p.venue-description {
    font-weight: 100;
    line-height: 1.5;
    letter-spacing: 0.7px;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* #venue p.address {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 100px;
} */


/********************* iframe */
#venue iframe {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#venue .iframe-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

#venue .iframe-container.loaded iframe {
    opacity: 1;
}

#venue .loading-placeholder {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: url('/assets/v1/img/el/venue-placeholder.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

#venue .iframe-container.loaded .loading-placeholder {
    opacity: 0;
}


/********************* table */
#venue .table {
    width: 600px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #fff8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
#venue .table:hover {
    transform: translateY(-5px);
}

#venue table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

#venue table:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/v1/img/card/venue-westin.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    filter: blur(1px);
    transition: opacity 0.3s ease;
}

#venue table:hover:before {
    opacity: 0.25;
}

#venue table th {
    text-align: left;
    font-weight: 500;
    border: none;
    padding: 16px 20px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
}

#venue table th:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
}

#venue table th:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#venue table td {
    font-weight: 300;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#venue table tr:last-child td {
    border-bottom: none;
}

#venue table tr:hover td {
    background-color: rgba(255, 255, 255, 0.08);
}

#venue table td a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

#venue table td a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

#venue table td a:hover {
    color: #fff;
}

#venue table td a:hover:after {
    width: 100%;
}

#venue small li {
    font-size: 14px;
}

@media (max-width: 768px) {
    #venue .table {
        width: 100%;
    }
}