/* Announcements Page Styles */
.announcements-section {
    margin-top: 80px;
    padding: 40px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 80px);
}

.announcements-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff6b35;
    border-radius: 2px;
}

.announcement-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.announcement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.announcement-title {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    padding: 25px 30px;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
}

.announcement-content {
    padding: 40px 30px;
}

.location-info, .parking-guide, .supporter-info {
    margin-bottom: 30px;
}

.location-info h3, .parking-guide h3, .supporter-info h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info p, .parking-guide p, .supporter-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1rem;
}

.highlight {
    background: linear-gradient(120deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.parking-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

.step:hover {
    background: #fff;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.step-number {
    background: #ff6b35;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.route-note {
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.route-note p {
    margin: 5px 0;
    color: #e65100;
    font-weight: 500;
}

.pink-route {
    color: #e91e63;
    font-weight: 600;
}

.note {
    font-size: 0.9rem;
    color: #666 !important;
    font-style: italic;
}

.parking-images, .supporter-image {
    margin: 30px 0;
    text-align: center;
}

.image-container {
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: scale(1.02);
}

.announcement-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.image-caption {
    margin-top: 10px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.parking-rates {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.parking-rates h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.rate-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.rate-item:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.duration {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price {
    display: block;
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: 700;
}

.discount-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

.supporter-guidelines {
    background: #f0f8ff;
    border-radius: 10px;
    padding: 25px;
    margin-top: 25px;
}

.supporter-guidelines h4 {
    color: #1976d2;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidelines-list li {
    color: #333;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.guidelines-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .announcements-section {
        margin-top: 60px;
        padding: 20px 0;
    }
    
    .announcements-content {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .announcement-title {
        font-size: 1.5rem;
        padding: 20px 20px;
    }
    
    .announcement-content {
        padding: 25px 20px;
    }
    
    .location-info h3, .parking-guide h3, .supporter-info h3 {
        font-size: 1.2rem;
    }
    
    .step {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .rate-item {
        padding: 15px;
    }
    
    .price {
        font-size: 1.1rem;
    }
    
    .parking-rates {
        padding: 20px;
    }
    
    .supporter-guidelines {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .rates-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        text-align: left;
        flex-direction: row;
    }
    
    .step-number {
        align-self: flex-start;
    }
}
