/* Featured Events Carousel - Hero Style */
.ggg-featured-carousel-container {
    margin-bottom: 60px;
    position: relative;
}

.ggg-featured-carousel {
    position: relative;
    overflow: hidden;
    height: 500px;
    border: 1px solid #e0e0e0;
}

.ggg-carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease;
}

.ggg-hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.ggg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 40%, 
        rgba(255, 255, 255, 0.7) 60%, 
        rgba(255, 255, 255, 0) 100%);
}

.ggg-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.ggg-hero-text {
    max-width: 550px;
}

.ggg-hero-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px;
    line-height: 1.2;
}

.ggg-hero-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ggg-hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.ggg-hero-meta {
    margin-bottom: 30px;
}

.ggg-hero-types {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ggg-event-type-pill {
    display: inline-block;
    padding: 6px 16px;
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    font-weight: 500;
}

.ggg-hero-button {
    display: inline-block;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.ggg-hero-button:visited {
    color: #fff !important;
}

.ggg-hero-button:hover {
    background: transparent;
    color: #1a1a1a !important;
}

.ggg-hero-button:hover:visited {
    color: #1a1a1a !important;
}

.ggg-carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.ggg-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ggg-carousel-dot:hover,
.ggg-carousel-dot.active {
    background: #1a1a1a;
}

@media (max-width: 768px) {
    .ggg-featured-carousel {
        height: 600px;
    }
    
    .ggg-hero-content {
        padding: 0 30px;
    }
    
    .ggg-hero-title {
        font-size: 32px;
    }
    
    .ggg-hero-description {
        font-size: 15px;
    }
    
    .ggg-hero-overlay {
        background: linear-gradient(to bottom, 
            rgba(255, 255, 255, 0) 0%, 
            rgba(255, 255, 255, 0.95) 50%, 
            rgba(255, 255, 255, 0.98) 70%);
    }
    
    .ggg-hero-content {
        align-items: flex-end;
        display: flex;
    }
    
    .ggg-hero-text {
        max-width: 100%;
    }
}

/* Event Filters - Gallery Aesthetic */
.ggg-event-filters-container {
    margin-bottom: 40px;
}

.ggg-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ggg-archive-header {
    margin: 0;
}

.ggg-archive-header h1 {
    margin: 0 0 5px;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
}

.ggg-archive-description {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.ggg-toggle-filters {
    display: inline-flex;
    padding: 12px 24px;
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.ggg-toggle-filters:hover {
    background: #000000;
    border-color: #000000;
}

.ggg-filter-icon {
    font-size: 16px;
    opacity: 0.6;
}

.ggg-filter-arrow {
    margin-left: auto;
    font-size: 12px;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.ggg-toggle-filters.active .ggg-filter-arrow {
    transform: rotate(180deg);
}

.ggg-event-filters {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 30px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ggg-filter-form {
    width: 100%;
}

.ggg-filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    align-items: end;
}

.ggg-filter-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ggg-filter-field label {
    font-weight: 500;
    font-size: 11px;
    margin-bottom: 8px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ggg-filter-field input[type="text"],
.ggg-filter-field input[type="date"],
.ggg-filter-field select {
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-size: 14px;
    background: #ffffff;
    transition: all 0.2s ease;
    color: #1a1a1a;
    min-width: 0;
    width: 100%;
}

.ggg-filter-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.ggg-filter-field input[type="text"]::placeholder {
    color: #999;
}

.ggg-filter-field input:focus,
.ggg-filter-field select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.ggg-filter-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ggg-filter-submit {
    padding: 10px 20px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ggg-filter-submit:hover {
    background: #000000;
}

.ggg-filter-reset {
    padding: 10px 20px;
    background: transparent;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ggg-filter-reset:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .ggg-filter-row {
        grid-template-columns: 1fr;
    }
    
    .ggg-filter-actions {
        flex-direction: column;
    }
    
    .ggg-event-filters {
        padding: 20px;
    }
}

.ggg-single-event,
.ggg-single-venue {
    max-width: 1200px;
    margin: 0 auto;
}

.ggg-event-container,
.ggg-venue-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.ggg-event-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ggg-venue-hero {
    max-height: 500px;
    overflow: hidden;
}

.ggg-venue-hero img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ggg-event-content,
.ggg-venue-content {
    padding: 40px;
}

.ggg-event-header,
.ggg-venue-header {
    margin-bottom: 30px;
}

.ggg-event-title,
.ggg-venue-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1a1a1a;
}

.ggg-venue-neighborhood {
    margin-bottom: 20px;
}

.ggg-neighborhood-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f4f8;
    color: #2271b1 !important;
    text-decoration: none !important;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.ggg-neighborhood-badge:hover {
    background: #2271b1;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Neighborhood Archive Page */
.ggg-neighborhood-archive {
    padding: 40px 0;
}

.ggg-neighborhood-header {
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    color: #fff;
    padding: 60px 0;
    margin-bottom: 40px;
}

.ggg-neighborhood-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #fff;
}

.ggg-neighborhood-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    color: rgba(255,255,255,0.95);
}

.ggg-neighborhood-venues h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px;
    color: #1a1a1a;
}

.ggg-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ggg-venue-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ggg-venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.ggg-venue-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.ggg-venue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ggg-venue-card:hover .ggg-venue-card-image img {
    transform: scale(1.05);
}

.ggg-venue-card-content {
    padding: 20px;
}

.ggg-venue-card-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
}

.ggg-venue-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ggg-venue-card-title a:hover {
    color: #2271b1;
}

.ggg-venue-card-address,
.ggg-venue-card-events {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.ggg-venue-card-address .ggg-icon,
.ggg-venue-card-events .ggg-icon {
    font-size: 16px;
}

.ggg-venue-card-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #2271b1;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s ease;
}

.ggg-venue-card-link:hover {
    background: #135e96;
}

.ggg-no-venues {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.ggg-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Neighborhoods Archive (All Neighborhoods) */
.ggg-neighborhoods-archive {
    padding: 40px 0;
}

.ggg-neighborhoods-header {
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    color: #fff;
    padding: 60px 0;
    margin-bottom: 40px;
    text-align: center;
}

.ggg-neighborhoods-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #fff;
}

.ggg-neighborhoods-intro {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin: 0;
}

.ggg-neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ggg-neighborhood-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 4px solid #2271b1;
}

.ggg-neighborhood-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.ggg-neighborhood-card-content {
    padding: 25px;
}

.ggg-neighborhood-card-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 15px;
}

.ggg-neighborhood-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ggg-neighborhood-card-title a:hover {
    color: #2271b1;
}

.ggg-neighborhood-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ggg-neighborhood-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.ggg-neighborhood-stat {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ggg-neighborhood-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    background: #2271b1;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s ease;
}

.ggg-neighborhood-card-link:hover {
    background: #135e96;
}

.ggg-neighborhood-card-link .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.ggg-no-neighborhoods {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.ggg-event-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.ggg-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.ggg-meta-item .ggg-icon {
    font-size: 24px;
}

/* Modern Venue Meta Layout */
.ggg-venue-meta-modern {
    margin: 30px 0;
    padding: 0;
}

.ggg-venue-primary-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.ggg-venue-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

.ggg-venue-address .ggg-icon {
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.ggg-address-text {
    flex: 1;
}

.ggg-venue-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ggg-action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.ggg-action-button:hover {
    border-color: #2271b1;
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ggg-website-button-modern {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff !important;
}

.ggg-website-button-modern:hover {
    background: #135e96;
    border-color: #135e96;
}

.ggg-button-icon {
    font-size: 18px;
}

.ggg-venue-capacity {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
}

.ggg-capacity-icon {
    font-size: 18px;
}

.ggg-capacity-label {
    font-weight: 600;
}

.ggg-capacity-value {
    color: #333;
    font-weight: 500;
}

/* Legacy website button for events */
.ggg-website-button {
    display: inline-block;
    padding: 8px 16px;
    background: #2271b1;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.ggg-website-button:hover {
    background: #135e96;
}

.ggg-meta-item .ggg-label {
    font-weight: 600;
    color: #666;
}

.ggg-meta-item .ggg-value {
    color: #1a1a1a;
}

.ggg-meta-item a {
    color: #2271b1;
    text-decoration: none;
}

.ggg-meta-item a:hover {
    text-decoration: underline;
}

.ggg-event-description,
.ggg-venue-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 30px 0;
}

.ggg-event-actions {
    margin: 30px 0;
}

.ggg-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ggg-button-primary {
    background: #2271b1;
    color: #fff;
}

.ggg-button-primary:hover {
    background: #135e96;
    color: #fff;
}

.ggg-event-types {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.ggg-event-type-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #f0f0f0;
    color: #333;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ggg-event-type-badge:hover {
    background: #1a1a1a;
    color: #fff;
}

.ggg-venue-events {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.ggg-venue-events h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.ggg-month-section {
    margin-bottom: 40px;
}

.ggg-month-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2271b1;
}

.ggg-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.ggg-event-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ggg-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.ggg-event-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ggg-event-card-content {
    padding: 20px;
}

.ggg-event-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
}

.ggg-event-card-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.ggg-event-card-title a:hover {
    color: #2271b1;
}

.ggg-event-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.ggg-event-card-meta span {
    display: block;
}

.ggg-event-card-link {
    display: inline-block;
    margin-top: 12px;
    color: #2271b1;
    text-decoration: none;
    font-weight: 600;
}

.ggg-event-card-link:hover {
    text-decoration: underline;
}

.ggg-archive-events,
.ggg-archive-venues {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ggg-archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.ggg-archive-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ggg-archive-description {
    font-size: 18px;
    color: #666;
}

.ggg-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.ggg-venue-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ggg-venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.ggg-venue-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.ggg-venue-card-content {
    padding: 25px;
}

.ggg-venue-card-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px;
}

.ggg-venue-card-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.ggg-venue-card-title a:hover {
    color: #2271b1;
}

.ggg-venue-card-address {
    color: #666;
    margin-bottom: 15px;
}

.ggg-venue-card-excerpt {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ggg-venue-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.ggg-venue-events-count {
    color: #666;
    font-size: 14px;
}

.ggg-venue-card-link {
    color: #2271b1;
    text-decoration: none;
    font-weight: 600;
}

.ggg-venue-card-link:hover {
    text-decoration: underline;
}

.ggg-pagination {
    margin: 50px 0;
    text-align: center;
}

.ggg-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.ggg-pagination a,
.ggg-pagination span {
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #1a1a1a;
}

.ggg-pagination a:hover {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.ggg-pagination .current {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.ggg-no-events,
.ggg-no-venues {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 18px;
}

.ggg-shortcode-events,
.ggg-shortcode-venues {
    margin: 30px 0;
}

.ggg-events-list,
.ggg-venues-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ggg-event-item,
.ggg-venue-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.ggg-event-item-image img,
.ggg-venue-item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.ggg-event-item-content,
.ggg-venue-item-content {
    flex: 1;
}

.ggg-event-item-title,
.ggg-venue-item-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
}

.ggg-event-item-title a,
.ggg-venue-item-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.ggg-event-item-title a:hover,
.ggg-venue-item-title a:hover {
    color: #2271b1;
}

.ggg-event-item-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.ggg-calendar {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.ggg-calendar-header {
    text-align: center;
    margin-bottom: 20px;
}

.ggg-calendar-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.ggg-calendar-table {
    width: 100%;
    border-collapse: collapse;
}

.ggg-calendar-table th {
    padding: 12px;
    background: #f8f9fa;
    font-weight: 600;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.ggg-calendar-table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
    vertical-align: top;
    height: 80px;
}

.ggg-calendar-empty {
    background: #f8f9fa;
}

.ggg-calendar-day {
    position: relative;
}

.ggg-day-number {
    font-weight: 600;
    margin-bottom: 5px;
}

.ggg-has-events {
    background: #e7f3ff;
}

.ggg-event-indicator {
    font-size: 12px;
    color: #2271b1;
    font-weight: 600;
}

.ggg-calendar-page {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
}

.ggg-shortcode-calendar {
    max-width: 100%;
    padding: 0;
}

.ggg-calendar-header {
    margin-bottom: 20px;
}

.ggg-calendar-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #1a1a1a;
}

.ggg-shortcode-calendar .ggg-calendar-header h1 {
    display: none;
}

.ggg-calendar-controls {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.ggg-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ggg-nav-btn {
    padding: 10px 20px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease;
}

.ggg-nav-btn:hover {
    background: #135e96;
    color: #fff;
}

.ggg-current-month {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.ggg-calendar-filters {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.ggg-calendar-filters select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    min-width: 160px;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
}

.ggg-calendar-filters select:focus {
    border-color: #2271b1;
    outline: none;
}

.ggg-reset-filters {
    padding: 8px 16px;
    background: #f0f0f1;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease;
}

.ggg-reset-filters:hover {
    background: #dcdcde;
}

.ggg-calendar-grid {
    margin: 30px 0;
}

.ggg-calendar-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.ggg-calendar-table thead th {
    background: #f8f9fa;
    color: #1a1a1a;
    padding: 10px 8px;
    font-weight: 600;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 2px solid #e0e0e0;
}

.ggg-calendar-table tbody td {
    padding: 0;
    vertical-align: top;
    height: 100px;
    border: 1px solid #e0e0e0;
    width: 14.28%;
    overflow: hidden;
}

.ggg-calendar-empty {
    background: #fafafa;
}

.ggg-calendar-day {
    background: #fff;
    height: 100%;
    padding: 6px;
    transition: background 0.2s ease;
}

.ggg-calendar-day:hover {
    background: #f8f9fa;
}

.ggg-today {
    background: #fff3cd;
}

.ggg-today:hover {
    background: #ffe69c;
}

.ggg-has-events {
    background: #e7f3ff;
    cursor: pointer;
}

.ggg-has-events:hover {
    background: #cfe7ff;
}

.ggg-day-number {
    font-weight: 700;
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
    display: block;
}

.ggg-today .ggg-day-number {
    color: #ff9800;
}

.ggg-has-events .ggg-day-number {
    color: #2271b1;
}

.ggg-day-events {
    display: flex;
    flex-direction: column;
    gap: 3px;
    overflow: hidden;
}

.ggg-calendar-event {
    margin-bottom: 4px;
    font-size: 11px;
    line-height: 1.3;
}

.ggg-calendar-event a {
    display: block;
    padding: 4px 6px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.ggg-calendar-event a:hover {
    background: #135e96;
}

.ggg-event-time {
    font-weight: 600;
    display: inline-block;
    margin-right: 4px;
}

.ggg-event-title {
    display: inline;
}

.ggg-more-events {
    font-size: 9px;
    color: #2271b1;
    padding: 3px;
    text-align: center;
    font-weight: 600;
    background: rgba(34, 113, 177, 0.1);
    border-radius: 3px;
}

.ggg-calendar-legend {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.ggg-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ggg-legend-color {
    width: 30px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.ggg-today-color {
    background: #fff3cd;
}

.ggg-has-events-color {
    background: #e7f3ff;
}

.ggg-upcoming-events {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.ggg-upcoming-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 25px;
    color: #1a1a1a;
}

.ggg-upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ggg-upcoming-event {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2271b1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ggg-upcoming-event:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ggg-upcoming-date {
    text-align: center;
    min-width: 60px;
}

.ggg-date-month {
    font-size: 14px;
    font-weight: 600;
    color: #2271b1;
    text-transform: uppercase;
}

.ggg-date-day {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.ggg-upcoming-details {
    flex: 1;
}

.ggg-upcoming-event-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
}

.ggg-upcoming-event-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.ggg-upcoming-event-title a:hover {
    color: #2271b1;
}

.ggg-upcoming-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

.ggg-upcoming-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ggg-upcoming-meta a {
    color: #2271b1;
    text-decoration: none;
}

.ggg-upcoming-meta a:hover {
    text-decoration: underline;
}

.ggg-upcoming-thumbnail {
    min-width: 100px;
}

.ggg-upcoming-thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.ggg-upcoming-footer {
    margin-top: 25px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.ggg-view-all-events {
    display: inline-block;
    padding: 12px 24px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.ggg-view-all-events:hover {
    background: #135e96;
    color: #fff;
}

.ggg-no-upcoming {
    text-align: center;
    color: #666;
    font-size: 16px;
    padding: 40px 20px;
}

.ggg-calendar-event-preview {
    font-size: 10px;
    line-height: 1.2;
    padding: 3px 5px;
    background: #2271b1;
    border-radius: 3px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
    display: block;
    max-width: 100%;
}

.ggg-calendar-event-preview .ggg-event-time {
    font-size: 9px;
    font-weight: 700;
    margin-right: 3px;
}

.ggg-calendar-event-preview .ggg-event-title {
    font-size: 10px;
}

.ggg-click-hint {
    font-size: 9px;
    color: #2271b1;
    text-align: center;
    padding: 3px;
    font-weight: 600;
    font-style: italic;
}

.ggg-calendar-grid.ggg-loading {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.ggg-calendar-grid.ggg-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2271b1;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ggg-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.ggg-modal-overlay.ggg-modal-active {
    opacity: 1;
}

.ggg-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.ggg-modal-active .ggg-modal-content {
    transform: scale(1);
}

.ggg-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f0f1;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ggg-modal-close:hover {
    background: #dc3232;
    color: #fff;
    transform: rotate(90deg);
}

.ggg-modal-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px;
    color: #1a1a1a;
    padding-right: 50px;
}

.ggg-modal-events {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ggg-modal-event {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2271b1;
    transition: all 0.2s ease;
}

.ggg-modal-event:hover {
    background: #e7f3ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ggg-modal-event-image {
    flex-shrink: 0;
}

.ggg-modal-event-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.ggg-modal-event-details {
    flex: 1;
}

.ggg-modal-event-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px;
}

.ggg-modal-event-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ggg-modal-event-title a:hover {
    color: #2271b1;
}

.ggg-modal-event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.ggg-modal-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.ggg-meta-icon {
    font-size: 18px;
}

.ggg-meta-label {
    font-weight: 600;
    color: #666;
    min-width: 70px;
}

.ggg-meta-value {
    color: #1a1a1a;
}

.ggg-meta-value a {
    color: #2271b1;
    text-decoration: none;
}

.ggg-meta-value a:hover {
    text-decoration: underline;
}

.ggg-modal-event-excerpt {
    margin: 15px 0;
    color: #666;
    line-height: 1.6;
}

.ggg-modal-event-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.ggg-modal-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    text-align: center;
}

.ggg-btn-primary {
    background: #2271b1;
    color: #fff;
}

.ggg-btn-primary:hover {
    background: #135e96;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(34, 113, 177, 0.3);
}

.ggg-btn-secondary {
    background: #fff;
    color: #2271b1;
    border: 2px solid #2271b1;
}

.ggg-btn-secondary:hover {
    background: #2271b1;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(34, 113, 177, 0.3);
}

@media (max-width: 768px) {
    .ggg-event-content,
    .ggg-venue-content {
        padding: 20px;
    }
    
    .ggg-event-title,
    .ggg-venue-title {
        font-size: 28px;
    }
    
    .ggg-events-grid,
    .ggg-venues-grid {
        grid-template-columns: 1fr;
    }
    
    .ggg-event-meta,
    .ggg-venue-meta {
        grid-template-columns: 1fr;
    }
    
    .ggg-event-item,
    .ggg-venue-item {
        flex-direction: column;
    }
    
    .ggg-calendar-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .ggg-calendar-filters {
        flex-direction: column;
        width: 100%;
    }
    
    .ggg-calendar-filters select {
        width: 100%;
    }
    
    .ggg-calendar-table thead th {
        font-size: 11px;
        padding: 10px 5px;
    }
    
    .ggg-calendar-table tbody td {
        height: 80px;
    }
    
    .ggg-calendar-event {
        font-size: 10px;
    }
    
    .ggg-upcoming-event {
        flex-direction: column;
    }
    
    .ggg-upcoming-date {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    .ggg-modal-content {
        padding: 25px;
        max-height: 95vh;
    }
    
    .ggg-modal-title {
        font-size: 22px;
        padding-right: 40px;
    }
    
    .ggg-modal-event {
        flex-direction: column;
        padding: 20px;
    }
    
    .ggg-modal-event-image img {
        width: 100%;
        height: auto;
        max-height: 250px;
    }
    
    .ggg-modal-event-title {
        font-size: 18px;
    }
    
    .ggg-modal-event-actions {
        flex-direction: column;
    }
    
    .ggg-modal-btn {
        width: 100%;
    }
}
