/**
 * Airsylvania Weather Widget Styles
 * Integrated into booking widget - dark/gold theme
 * @version 2.0.0
 */

/* Weather Widget - Integrated into booking widget header */
.weather-widget {
    background: linear-gradient(135deg, rgba(193, 127, 36, 0.15) 0%, rgba(193, 127, 36, 0.05) 100%);
    border-radius: 12px;
    padding: 15px 18px;
    margin-bottom: 18px;
    color: white;
    border: 1px solid rgba(193, 127, 36, 0.25);
    transition: all 0.3s ease;
    opacity: 0.85;
}

.weather-widget.loaded {
    opacity: 1;
}

.weather-widget.error {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Main Weather Content */
.weather-content {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.weather-icon-temp {
    display: flex;
    align-items: center;
    gap: 6px;
}

.weather-emoji {
    font-size: 1.8rem;
    line-height: 1;
}

.weather-temp {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color, #C17F24);
}

.weather-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.weather-location {
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 500;
    color: #aaa;
}

.weather-condition {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ddd;
}

/* Weather Details */
.weather-details {
    display: flex;
    gap: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(193, 127, 36, 0.2);
    font-size: 0.75rem;
    color: #999;
}

.weather-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .weather-widget {
        padding: 12px 15px;
    }

    .weather-emoji {
        font-size: 1.5rem;
    }

    .weather-temp {
        font-size: 1.3rem;
    }

    .weather-details {
        flex-direction: column;
        gap: 5px;
    }
}
