/**
 * HDSV Turniertermine Frontend Styles
 */

/* Container */
.hdsv-turniertermine-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
}

/* Title */
.hdsv-title {
    color: #1a5276;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #1a5276;
    padding-bottom: 10px;
}

/* Weekday Sections */
.hdsv-weekday-section {
    margin-bottom: 30px;
}

.hdsv-weekday-title {
    color: #1a5276;
    margin-bottom: 15px;
    font-size: 1.5em;
    border-left: 5px solid #1a5276;
    padding-left: 10px;
}

/* Venues Grid */
.hdsv-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Venue Card */
.hdsv-venue-card {
    background-color: #f9f9f9;
    border-left: 5px solid #1a5276;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

.hdsv-venue-card:hover {
    transform: translateY(-5px);
}

/* Weekday Colors */
.hdsv-monday {
    border-left-color: #3498db;
}

.hdsv-tuesday {
    border-left-color: #2ecc71;
}

.hdsv-wednesday {
    border-left-color: #e74c3c;
}

.hdsv-thursday {
    border-left-color: #f39c12;
}

.hdsv-friday {
    border-left-color: #9b59b6;
}

.hdsv-saturday {
    border-left-color: #1abc9c;
}

.hdsv-sunday {
    border-left-color: #f6ff00;
}

/* Venue Name */
.hdsv-venue-name {
    color: #1a5276;
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Venue Details */
.hdsv-venue-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.hdsv-venue-address, .hdsv-venue-tournament {
    margin-bottom: 15px;
}

/* Tournament Info */
.hdsv-tournament-day {
    font-weight: bold;
    color: #c0392b;
}

.hdsv-tournament-time {
    color: #2c3e50;
    font-weight: bold;
}

/* Contact Info */
.hdsv-venue-contact {
    margin-top: 10px;
}

.hdsv-contact-label {
    font-weight: bold;
    display: inline-block;
    min-width: 120px;
}

/* Footer Note */
.hdsv-footer-note {
    margin-top: 30px;
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

/* Links */
.hdsv-turniertermine-container a {
    color: #2980b9;
    text-decoration: none;
}

.hdsv-turniertermine-container a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hdsv-venue-details {
        grid-template-columns: 1fr;
    }
    
    .hdsv-venues-grid {
        grid-template-columns: 1fr;
    }
}