/*
 Theme Name:   Iowa Bowl
 Description:  Wordpress Child theme for Kadence 
 Author:       Geoff Lampe
 Author URI:   https://www.iowabowl.com
 Template:     kadence
 Tags:         customizable, modern, responsive-layout, gutenberg, header builder, footer builder
 Text Domain:  kadencechild
*/


/* Theme customization starts here
-------------------------------------------------------------- */
.hero-container{
    padding: 40px 0;
}


/* Tournament
-------------------------------------------------------------- */
.tournament-dates-list {
    columns: 2;
}

/* .tournament-location {
    margin-bottom: 2rem;
} */
.tournament-item{
    margin-bottom: 1.5rem;
} 
.location-photo{
    margin-bottom: .5rem;
}


/* Registration Button Area
-------------------------------------------------------------- */

.tournament-registration {
    text-align: center;
}

.registration-button {
    
    background-color: var(--global-palette-btn-bg-hover);
    color: var(--global-palette-btn);
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 17px 35px 17px 35px;
    box-shadow: 0px 0px 0px -7px rgba(0, 0, 0, 0);
    display: inline-block;
}

.registration-button:hover,
.registration-button:focus {
    background-color: var(--global-palette-btn-bg);
    color: var(--global-palette-btn);
    ;
}

.registration-help {
    font-size: 14px;
    margin-top: 10px;
}

/* Tournament blocks
-------------------------------------------------------------- */
.tournament-locations h2, .tournament-dates h2{
    /* border-bottom: 4px solid var(--global-palette5);
    padding-bottom: 8px; */
}

/* Table blocks
-------------------------------------------------------------- */
.wp-block-table.is-style-stripes th{
    color: var(--global-palette9);
    background-color: var(--global-palette2);
}


.kadence-posts-list img{
    object-position: top center;
}

/* Blog Posts
-------------------------------------------------------------- */
.no-shadow .entry.loop-entry{
    background: transparent;
    box-shadow: none;
}

/* Events
-------------------------------------------------------------- */
.events-list {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
.event-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.event-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.event-date-badge {
    background: #012767;
    color: white;
    padding: 0.5rem;
    border-radius: 0;
    text-align: center;
    min-width: 60px;
    font-size: 0.875rem;
    font-weight: 600;
}
.event-date-badge .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.event-date-badge .day {
    display: block;
    font-size: 1.25rem;
    line-height: 1;
}
.event-content {
    flex: 1;
}
.event-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}
.event-title a {
    text-decoration: none;
    color: inherit;
}
.event-title a:hover {
    color: #007cba;
}
.event-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}
.event-type {
    background: #f0f0f0;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}
.event-dates {
    color: #666;
    font-size: 0.875rem;
}
@media (max-width: 768px) {
    .events-list {
        grid-template-columns: 1fr;
    }
    .event-header {
        flex-direction: column;
        gap: 0.75rem;
    }
}

input[type=text], input[type=email], input[type=url], input[type=password], input[type=search], input[type=number], input[type=tel], input[type=range], input[type=date], input[type=month], input[type=week], input[type=time], input[type=datetime], input[type=datetime-local], input[type=color], textarea {   
    color: var(--global-palette3);
}