/*
Theme Name: Listar WP Child - PrimeVenue
Theme URI: https://primevenue.app
Description: Child theme for PrimeVenue customizations including gold logo and combined auth button
Author: PrimeVenue Team
Author URI: https://primevenue.app
Template: listar-wp
Version: 1.0.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: listar-child
*/

/* Custom styles for PrimeVenue */

/* Gold logo styling */
.navbar-brand img {
    max-height: 50px !important;
}

/* Combined auth button styling */
.btn-auth-combined {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-auth-combined:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    color: #000;
}

/* Language flag dropdown */
.lang-flag-dropdown {
    min-width: 120px;
}

.lang-flag-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-flag-item .flag {
    font-size: 1.2rem;
}
.pv-venue-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pv-venue-link * {
  pointer-events: auto;
}