/**
 * Styles for the single venue template
 */

/* Main venue content area */
.venue-single-content {
    padding: 40px 0;
}

/* Venue article */
.venue-article {
    margin-bottom: 30px;
}

/* Venue title */
.venue-article .entry-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

/* Venue content */
.venue-article .entry-content {
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Venue meta information */
.venue-article .entry-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.venue-types {
    margin-bottom: 10px;
}

.venue-meta-label {
    font-weight: bold;
    color: #555;
}

.venue-details-sidebar {
    border: 1px solid var(--hotel-inn-beyond--palette--light-grey);
    border-radius: 8px;
    margin-top: 3.5rem;
    padding: 1em;

}


.venue-details-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-size: 22px;
}

.venue-logo {
    margin-bottom: 20px;
    text-align: center;
}

.venue-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.venue-social-links {
    margin-bottom: 25px;
}

.venue-social-links h4,
.venue-map h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.tiktok {
    background-color: #000;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.venue-detail {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

.venue-detail i {
    width: 20px;
    margin-right: 10px;
    color: #666;
    flex-shrink: 0;
}

.venue-detail-content {
    flex: 1;
}

.venue-detail-label {
    font-weight: bold;
    margin-right: 5px;
    color: #555;
}

.venue-detail-value {
    color: #555;
}

.venue-detail-value a {
    color: var(--hotel-inn-beyond--palette--primary);
    text-decoration: none;
}

.venue-detail-value a:hover {
    color: var(--hotel-inn-beyond--palette--primary);
    text-decoration: underline!important;
}

/* Venue location */
.venue-location {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.venue-country a, .venue-region a {
    color: var(--hotel-inn-beyond--palette--primary);
    text-decoration: none;
}

.venue-country a:hover, .venue-region a:hover {
    text-decoration: underline;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 8px;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 24px;
}

/* This rule is now handled below with the platform-specific styles */

/* Social platform specific colors - Black and White Icons */
.social-facebook,
.social-instagram,
.social-twitter,
.social-linkedin {
    color: #333;
}

/* Enhanced hover effects for social links */
.social-link:hover {
    color: #000 !important;
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* Ensure no underlines on social links */
.social-link {
    text-decoration: none !important;
}

.social-link:focus {
    text-decoration: none !important;
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .venue-article .entry-title {
        font-size: 24px;
    }

    .venue-single-content {
        padding: 20px 0;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        font-size: 28px;
        padding: 10px;
    }
}
