/* 
   Thermwood Trade Show Schedule - Modern Grid 
   Enhanced Version for maximum "Pop"
*/

/* Main Page Heading Styling */
.main-schedule-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* New Decorative Separator */
.title-separator {
    width: 80px;
    height: 5px;
    background: #701c1c; /* Thermwood Dark Red */
    margin: 0 auto 40px;
    border-radius: 10px;
}

.event-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Enhanced Card Styling */
.event-card-link {
    text-decoration: none !important;
    display: block;
    margin-bottom: 30px;
    height: calc(100% - 30px);
}

.event-card {
    background: #fff;
    /* Adding a top accent border makes the card stand out instantly */
    border: 1px solid #e1e1e1;
    border-top: 4px solid #701c1c; 
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 4px;
    /* Soft initial shadow */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.event-card:hover {
    border-color: #701c1c;
    /* Lift effect and deeper shadow on hover */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transform: translateY(-12px);
}

/* Logo Alignment */
.event-logo-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.event-logo-wrapper img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;
    /* Slight grayscale that goes color on hover is a nice touch */
    filter: grayscale(10%);
    transition: filter 0.3s;
}

.event-card:hover .event-logo-wrapper img {
    filter: grayscale(0%);
}

/* Typography */
.event-date-loc {
    font-family: 'Open Sans', sans-serif;
    color: #701c1c;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.event-title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.2;
}

.event-booth {
    background: #701c1c; /* Changed to red for more "pop" */
    color: #fff;
    padding: 4px 14px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.event-description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.event-footer-link {
    margin-top: 25px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #701c1c;
    letter-spacing: 1px;
    border: 1px solid #701c1c;
    padding: 8px 20px;
    border-radius: 2px;
    transition: all 0.3s;
}

.event-card:hover .event-footer-link {
    background: #701c1c;
    color: #fff;
}

@media (max-width: 767px) {
    .main-schedule-title { font-size: 28px; }
    .event-card { padding: 20px; }
}